Release v0.30 - Where Have You Been All My Life? (#1816)

* run FormatCode build task to fix whitespace/formatting

* correctly flag some GitHub Enterprise tests

* Add Release Notes

* tweak appveyor to not build branch in the repo, when a PR exists already

* travis to only build master branch and PRs

* output actual "dotnet run" command being executed for cake.frosting builds

* update latest Cake.Frosting

* use normal verbosity at the moment due to apparent conflict with "verbose" and latest SDK on appveyor

* try using double dash so dotnet executable doesnt look at --verbosity argument

* travis OSX couldn't download SDK 2.0.3 anymore, lets try the latest 2.1.300
This commit is contained in:
Ryan Gribble
2018-06-18 08:34:14 +10:00
committed by GitHub
parent 596d0cfdcc
commit 3b2be81486
20 changed files with 110 additions and 31 deletions

View File

@@ -113,7 +113,8 @@ if($LASTEXITCODE -ne 0) {
exit $LASTEXITCODE;
}
Write-Host "Running Cake.Frosting build runner..."
Invoke-Expression "dotnet run $Arguments"
Write-Host "dotnet run -- $Arguments"
Invoke-Expression "dotnet run -- $Arguments"
if($LASTEXITCODE -ne 0) {
Pop-Location;
exit $LASTEXITCODE;