We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7be4cef + 91dc0af commit 4865b62Copy full SHA for 4865b62
1 file changed
.github/workflows/dotnet-desktop.yml
@@ -0,0 +1,26 @@
1
+name: .NET Build
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: windows-latest
12
13
+ steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v4
16
17
+ - name: Setup .NET Core 8.0
18
+ uses: actions/setup-dotnet@v4
19
+ with:
20
+ dotnet-version: 8.0.x
21
22
+ - name: Restore dependencies
23
+ run: dotnet restore ThreadPilot_1.sln
24
25
+ - name: Build project (Release)
26
+ run: dotnet build ThreadPilot_1.sln --configuration Release --no-restore
0 commit comments