Skip to content

Convert project to new sdk style #18

Convert project to new sdk style

Convert project to new sdk style #18

Workflow file for this run

name: Build Repository
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
path: Andraste.Shared
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.1
- name: Build project
run: msbuild Andraste.Shared/Andraste.Shared.csproj /p:Configuration=Release /p:GeneratePackageOnBuild=true
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: DLLs
path: |
Andraste.Shared\bin\Release\Andraste.Shared.dll
Andraste.Shared\bin\Release\Andraste.Shared.pdb
- name: Upload NuPkg
uses: actions/upload-artifact@v3
with:
name: NuGet
path: bin\Release\Andraste.Shared.*.nupkg