Skip to content

Updated game detection list with previously unrecognised games. Also … #88

Updated game detection list with previously unrecognised games. Also …

Updated game detection list with previously unrecognised games. Also … #88

Workflow file for this run

name: Build AGILE
on:
push:
branches: master
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup MSBuild
uses: microsoft/[email protected]
- name: Setup VS Dev Environment
uses: seanmiddleditch/gha-setup-vsdevenv@v4
- name: Setup NuGet
uses: NuGet/[email protected]
- name: Restore Packages
run: nuget restore AGILE.sln
# Required to Build VS Installer Projects
- name: Disable Out of Process Building
run: .\DisableOutOfProcBuild.exe
working-directory: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\VSI\DisableOutOfProcBuild
- name: Build the application
run: DevEnv AGILE.sln /build Release
- name: Upload artifact
uses: actions/[email protected]
with:
name: AGILE
path: "./AGILE-Installer/Release"