Add a workaround in Fast Track for Auto-Sweepers conflicting with som… #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI on reference Oxygen Not Included assemblies | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Add MSBuild to PATH | |
uses: microsoft/setup-msbuild@v2 | |
- name: NuGet Restore | |
run: msbuild -t:restore -property:Configuration=Release | |
- name: Build project | |
run: msbuild -t:rebuild -property:Configuration=Release -property:GameFolderActive="../Lib" |