We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d96868d commit dd2c44eCopy full SHA for dd2c44e
.github/workflows/build.yml
@@ -27,9 +27,12 @@ jobs:
27
uses: actions/setup-dotnet@v5
28
with:
29
dotnet-version: '9.0.x'
30
-
31
- - name: Restore dependencies
32
- run: dotnet restore "Simple QR Code Maker.sln"
+
+ - name: Setup MSBuild
+ uses: microsoft/setup-msbuild@v2
33
34
+ - name: Restore
35
+ run: msbuild "Simple QR Code Maker.sln" /t:Restore /p:Configuration=${{ matrix.configuration }}
36
37
- name: Build
- run: dotnet build "Simple QR Code Maker.sln" --configuration Release --no-restore /p:PublishReadyToRun=false
38
+ run: msbuild "Simple QR Code Maker.sln" /p:Configuration=${{ matrix.configuration }} /p:Platform=${{ matrix.platform }}
0 commit comments