Bump .Net Core SDK to 2.2.100 Preview (#715)

* Bump .Net Core SDK to 2.2

* Update travis file

* Try to fix broken AppVeyor code coverage
This commit is contained in:
Karl Burtram
2018-10-22 15:54:17 -07:00
committed by GitHub
parent 1ef70ef259
commit a241a4510b
23 changed files with 35 additions and 31 deletions

View File

@@ -277,7 +277,7 @@ Task("TestCore")
{
var logFile = System.IO.Path.Combine(logFolder, $"{testProject}-core-result.trx");
var testWorkingDir = System.IO.Path.Combine(testFolder, testProject);
Run(dotnetcli, $"test -f netcoreapp2.1 --logger \"trx;LogFileName={logFile}\"", testWorkingDir)
Run(dotnetcli, $"test -f netcoreapp2.2 --logger \"trx;LogFileName={logFile}\"", testWorkingDir)
.ExceptionOnError($"Test {testProject} failed for .NET Core.");
}
});