workflows/test: Add Restore
Some checks reported warnings
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
Test MS build / Build (Release, x64) (push) Has started running

This commit is contained in:
2023-11-20 20:26:44 +01:00
parent 20e8ad625e
commit ada0f9aadf

View File

@ -16,6 +16,8 @@ jobs:
uses: microsoft/setup-msbuild@v1.1 uses: microsoft/setup-msbuild@v1.1
- name: Setup NuGet - name: Setup NuGet
uses: nuget/setup-nuget@v1 uses: nuget/setup-nuget@v1
- name: Restore NuGet packages
run: nuget restore Elwig/Elwig.csproj
- name: Build Installer - name: Build Installer
shell: cmd /U /C {0} shell: cmd /U /C {0}
run: $(& msbuild -verbosity:minimal Installer/Installer.wixproj -property:Configuration=${{ matrix.configuration }} -property:Platform=${{ matrix.platform }}; $a=$lastexitcode) | findstr x*; exit $a run: $(& msbuild -verbosity:quiet Installer/Installer.wixproj -property:Configuration=${{ matrix.configuration }} -property:Platform=${{ matrix.platform }}; $a=$lastexitcode) | findstr x*; exit $a