ScriptEngine: Add assembly dumping setting for debugging of reloaded … #88
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: Master Builds | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup Nuget.exe | |
uses: NuGet/[email protected] | |
- name: Setup MSBuild.exe | |
uses: microsoft/setup-msbuild@v1 | |
- name: Restore | |
working-directory: . | |
run: nuget restore | |
- name: MSBuild | |
working-directory: . | |
run: msbuild /t:Build /p:Configuration=Release BepInEx.Debug.sln | |
- name: Upload artifact | |
uses: actions/[email protected] | |
with: | |
name: BepInEx.Debug | |
path: bin |