Skip to content

Updated NuGet packages #1

Updated NuGet packages

Updated NuGet packages #1

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore Dependencies
run: dotnet restore
- name: Build Release
run: dotnet build FeebasLocatorPlugin --no-restore --configuration Release -o build
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: FeebasLocatorPlugin
path: build/*.dll
if-no-files-found: error