-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Escape quoted list of supressed MSBuild warnings
.NET SDK 5.0.300 ships with MSBuild 16.10, which optimizes away the implicit expansion of quoted property lists [*]: FSC : warning FS0203: Invalid warning number '3218 3390' Fortunately this old (non-portable) workaround still works: dotnet/sdk#8792 (comment) ---- [*] dotnet/msbuild#6128
- Loading branch information
Showing
9 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,9 +15,9 @@ jobs: | |
submodules: 'recursive' | ||
fetch-depth: 0 | ||
- name: Pre-test install | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
dotnet-version: '5.0.202' | ||
dotnet-version: '5.0.301' | ||
- name: Cache packages | ||
uses: actions/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,13 +15,13 @@ jobs: | |
submodules: 'recursive' | ||
fetch-depth: 0 | ||
- name: Pre-build Install | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
dotnet-version: '5.0.202' | ||
dotnet-version: '5.0.301' | ||
- name: Build package | ||
run: scripts\pack | ||
- name: Save package | ||
uses: actions/[email protected].3 | ||
uses: actions/[email protected].4 | ||
with: | ||
name: Fornax.Seo.nupkg | ||
path: ${{ github.workspace }}/release/*.nupkg | ||
|
@@ -40,9 +40,9 @@ jobs: | |
submodules: 'recursive' | ||
fetch-depth: 0 | ||
- name: Pre-build Install | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
dotnet-version: '5.0.202' | ||
dotnet-version: '5.0.301' | ||
- name: Cache packages | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -56,7 +56,7 @@ jobs: | |
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | ||
echo -e $(scripts/changelog) > release_notes.txt | ||
- name: Retrieve package | ||
uses: actions/[email protected].9 | ||
uses: actions/[email protected].10 | ||
id: fetch | ||
with: | ||
name: Fornax.Seo.nupkg | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env bash | ||
dotnet test /v:m /p:nowarn="3218 3390" test/Fornax.Seo.Tests/Fornax.Seo.Tests.fsproj | ||
dotnet test /v:m /p:nowarn='"3218;3390"' test/Fornax.Seo.Tests/Fornax.Seo.Tests.fsproj | ||
cd example/Fornax.Seo.Example | ||
./build $1 | ||
cd ../.. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
@echo off | ||
dotnet test /v:m /p:nowarn="3218 3390" test/Fornax.Seo.Tests/Fornax.Seo.Tests.fsproj | ||
dotnet test /v:m /p:nowarn=\"3218;3390\" test/Fornax.Seo.Tests/Fornax.Seo.Tests.fsproj | ||
cd example\Fornax.Seo.Example | ||
build %1 | ||
cd ..\.. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters