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 6455c2d commit bb12d45Copy full SHA for bb12d45
.github/workflows/dotnet-desktop.yml
@@ -0,0 +1,33 @@
1
+name: .NET Core Desktop CI
2
+
3
+on:
4
+ - push
5
+ - pull_request
6
7
+jobs:
8
+ build:
9
+ strategy:
10
+ matrix:
11
+ configuration:
12
+ - Debug
13
+ - Release
14
15
+ runs-on: windows-2019
16
17
+ env:
18
+ Solution_Name: OpenDental.sln
19
20
+ steps:
21
+ - name: Checkout
22
+ uses: actions/checkout@v4
23
+ with:
24
+ fetch-depth: 0
25
26
+ # Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
27
+ - name: Setup MSBuild.exe
28
+ uses: microsoft/setup-msbuild@v2
29
30
+ - name: Perform build
31
+ run: MSBuild .\OpenDental.sln /property:Configuration=${{ matrix.configuration }} /property:Platform="Any CPU"
32
33
0 commit comments