Skip to content

More verbose copyright statement #24

More verbose copyright statement

More verbose copyright statement #24

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
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/[email protected]
- name: Restore NuGet Packages
run: nuget restore Andraste.Host.csproj
- name: Build project
run: msbuild Andraste.Host.csproj /p:Configuration=Release
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: HostDLL
path: |
bin\Release\net48\Andraste.Host.dll
bin\Release\net48\Andraste.Host.pdb
- name: Upload NuPkg
uses: actions/upload-artifact@v3
with:
name: NuGet
path: bin\Release\Andraste.Host.*.nupkg