We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 443cb6d commit a1ee73aCopy full SHA for a1ee73a
.github/workflows/dotnet.yml
@@ -18,16 +18,16 @@ jobs:
18
- name: Setup .NET
19
uses: actions/setup-dotnet@v3
20
with:
21
- dotnet-version: '8.0.x'
+ dotnet-version: '8.0.x'
22
23
- name: Restore dependencies
24
run: dotnet restore
25
26
- name: Build
27
- run: dotnet build --configuration Release /nowarn
+ run: dotnet build --configuration Release /nowarn:CS8618;CS8600;CS8601;CS8602;CS8603;CS8604;CS8620;CS1998
28
29
- name: Publish
30
- run: dotnet publish --configuration Release /nowarn --output ./publish
+ run: dotnet publish --configuration Release /nowarn:CS8618;CS8600;CS8601;CS8602;CS8603;CS8604;CS8620;CS1998 --output ./publish
31
32
- name: Zip artifact
33
run: |
0 commit comments