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 834dea4 commit 602d7b6Copy full SHA for 602d7b6
.github/workflows/build.yml
@@ -0,0 +1,25 @@
1
+name: Build
2
+
3
+on:
4
+ push
5
6
+jobs:
7
+ build:
8
9
+ runs-on: windows-latest
10
11
+ strategy:
12
+ matrix:
13
+ architecture: [ x86, x64, ARM64 ]
14
+ configuration: [ Debug, Release ]
15
+ fail-fast: false
16
17
+ steps:
18
+ - name: Checkout
19
+ uses: actions/checkout@v4
20
+ - name: Add msbuild to PATH
21
+ uses: microsoft/setup-msbuild@v2
22
+ with:
23
+ msbuild-architecture: x64
24
+ - name: Build
25
+ run: msbuild -restore -p:RestorePackagesConfig=true -p:Configuration=${{ matrix.configuration }} -p:Platform=${{ matrix.architecture }} -clp:ForceConsoleColor -warnaserror ${{ github.workspace }}\IExplorerCommand_Examples.sln
0 commit comments