Skip to content

Commit bb12d45

Browse files
committed
add CI to build OpenDental
1 parent 6455c2d commit bb12d45

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/dotnet-desktop.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)