Set rollForward to LatestPatch (#11150)

This commit is contained in:
John Luo 2019-06-13 12:57:17 -07:00 committed by GitHub
parent 3707e1a832
commit 8e4825fd6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,3 @@
{
"rollForward": "LatestPatch"
}

View File

@ -65,6 +65,7 @@ namespace Microsoft.AspNetCore
Assert.Equal("Microsoft.NETCore.App", (string)runtimeConfig["runtimeOptions"]["framework"]["name"]);
Assert.Equal(_expectedTfm, (string)runtimeConfig["runtimeOptions"]["tfm"]);
Assert.Equal("LatestPatch", (string)runtimeConfig["runtimeOptions"]["rollForward"]);
Assert.Equal(TestData.GetMicrosoftNETCoreAppPackageVersion(), (string)runtimeConfig["runtimeOptions"]["framework"]["version"]);
}