File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build x64
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ branches : [ "main" ]
8+
9+ permissions :
10+ contents : read
11+
12+ jobs :
13+ build :
14+ runs-on : windows-latest
15+
16+ steps :
17+ - uses : actions/checkout@v4
18+
19+ - name : Add MSBuild to PATH
20+ uses : microsoft/setup-msbuild@v1.0.2
21+
22+ - name : Build
23+ working-directory : ${{env.GITHUB_WORKSPACE}}
24+ # Add additional options to the MSBuild command line here (like platform or verbosity level).
25+ # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
26+ run : msbuild SMTC.sln /p:Configuration=Release /p:Platform=x64
27+
28+ - name : Upload Build Artifacts
29+ uses : actions/upload-artifact@v4
30+ with :
31+ name : SMTC.dll
32+ path : bin/x64/Release/SMTC.dll
33+
You can’t perform that action at this time.
0 commit comments