FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
UUID/.github/workflows/dotnet-desktop.yml at develop · Taiizor/UUID · GitHub
Taiizor
/
UUID
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
4
Star
47
Code
Issues
0
Pull requests
10
Discussions
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
UUID
/
.github
/
workflows
/
dotnet-desktop.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
52 lines (42 loc) · 1.28 KB
Breadcrumbs
UUID
/
.github
/
workflows
/
dotnet-desktop.yml
Copy path
File metadata and controls
52 lines (42 loc) · 1.28 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name
:
.NET Desktop
on
:
push
:
branches
:
[ develop ]
pull_request
:
branches
:
[ develop ]
jobs
:
Build
:
runs-on
:
windows-latest
strategy
:
matrix
:
configuration
:
[
Release
]
solution
:
[
UUID.sln,
]
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v3
with
:
fetch-depth
:
0
#
Install the .NET Core workload
-
name
:
Install .NET Core
uses
:
actions/setup-dotnet@v3
with
:
dotnet-version
:
10.0.x
dotnet-quality
:
preview
#
Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
-
name
:
Setup MSBuild.exe
uses
:
microsoft/setup-msbuild@v1.3.1
#
Execute all unit tests in the solution
-
name
:
Execute Unit Tests
run
:
dotnet test ${{ matrix.solution }} -c ${{ matrix.configuration }} /nowarn:CS0067,CS0108,CS0109,CS0114,CS0169,CS0414,CS0649,CA1416,NU5104,NETSDK1138,SYSLIB0003
env
:
NUGET_CONFIG_PATH
:
./NuGet.Config
#
Restore the application to populate the obj folder with RuntimeIdentifiers
-
name
:
Restore the UUID
run
:
msbuild ${{ matrix.solution }} /t:Restore /p:Configuration=$env:Configuration
env
:
NUGET_CONFIG_PATH
:
./NuGet.Config
Configuration
:
${{ matrix.configuration }}
Back
|
FazBrowse Home
|
New Git URL