You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Solution_Name: NeedABreak.sln # Replace with your solution name, i.e. MyWpfApp.sln.
20
+
Test_Project_Path: NeedABreakTests\NeedABreakTests.csproj # Replace with the path to your test project, i.e. MyWpfApp.Tests\MyWpfApp.Tests.csproj.
21
+
Wap_Project_Directory: NeedABreakPackagingProject # Replace with the Wap project directory relative to the solution, i.e. MyWpfApp.Package.
22
+
Wap_Project_Path: NeedABreakPackagingProject\NeedABreakPackagingProject.wapproj # Replace with the path to your Wap project, i.e. MyWpf.App.Package\MyWpfApp.Package.wapproj.
23
+
24
+
steps:
25
+
- name: Checkout
26
+
uses: actions/checkout@v4
27
+
with:
28
+
fetch-depth: 0
29
+
30
+
# Install the .NET Core workload
31
+
- name: Install .NET Core
32
+
uses: actions/setup-dotnet@v4
33
+
with:
34
+
dotnet-version: 8.0.x
35
+
36
+
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
37
+
- name: Setup MSBuild.exe
38
+
uses: microsoft/setup-msbuild@v2
39
+
40
+
# Execute all unit tests in the solution
41
+
- name: Execute unit tests
42
+
run: dotnet test $env:Test_Project_Path
43
+
44
+
# Restore the application to populate the obj folder with RuntimeIdentifiers
0 commit comments