GitHub workflow for Prospect.Launcher

This commit is contained in:
AeonLucid
2021-10-30 19:27:02 +02:00
parent af0e9faef5
commit 53eb74800e
+26
View File
@@ -0,0 +1,26 @@
name: Build
on: [push]
jobs:
builds:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup Dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x'
- name: Setup MSBUILD
uses: microsoft/setup-msbuild@v1.0.3
- name: Restore NuGet
run: dotnet restore ./src/
- name: Build Prospect.Agent
run: msbuild /m /p:Configuration=Release ./src/Prospect.Agent/Prospect.Agent.vcxproj
- name: Build Prospect.Launcher
run: dotnet publish -o ./build-app -r win-x64 -c Release -v minimal ./src/Prospect.Launcher/Prospect.Launcher.csproj