Update the version for 'microsoft.netcore.app' to "2.1.1*"
This commit is contained in:
parent
fec5f38b93
commit
5541529bbe
3 changed files with 4 additions and 4 deletions
|
@ -9,7 +9,7 @@
|
||||||
<DotnetSqlCachePackageVersion>2.1.0</DotnetSqlCachePackageVersion>
|
<DotnetSqlCachePackageVersion>2.1.0</DotnetSqlCachePackageVersion>
|
||||||
<DotnetUserSecretsPackageVersion>2.1.0</DotnetUserSecretsPackageVersion>
|
<DotnetUserSecretsPackageVersion>2.1.0</DotnetUserSecretsPackageVersion>
|
||||||
<DotnetWatchPackageVersion>2.1.0</DotnetWatchPackageVersion>
|
<DotnetWatchPackageVersion>2.1.0</DotnetWatchPackageVersion>
|
||||||
<MicrosoftNETCoreAppPackageVersion>2.1.0</MicrosoftNETCoreAppPackageVersion>
|
<MicrosoftNETCoreAppPackageVersion>2.1.1-rtm-26531-02</MicrosoftNETCoreAppPackageVersion>
|
||||||
<MicrosoftNETCoreDotNetHostResolverPackageVersion>$(MicrosoftNETCoreAppPackageVersion)</MicrosoftNETCoreDotNetHostResolverPackageVersion>
|
<MicrosoftNETCoreDotNetHostResolverPackageVersion>$(MicrosoftNETCoreAppPackageVersion)</MicrosoftNETCoreDotNetHostResolverPackageVersion>
|
||||||
<MicrosoftBuildPackageVersion>15.7.179</MicrosoftBuildPackageVersion>
|
<MicrosoftBuildPackageVersion>15.7.179</MicrosoftBuildPackageVersion>
|
||||||
<MicrosoftBuildFrameworkPackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildFrameworkPackageVersion>
|
<MicrosoftBuildFrameworkPackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildFrameworkPackageVersion>
|
||||||
|
|
|
@ -304,7 +304,7 @@ namespace Microsoft.DotNet.Tests
|
||||||
|
|
||||||
result.Should().NotBeNull();
|
result.Should().NotBeNull();
|
||||||
|
|
||||||
result.Args.Should().Contain("--fx-version 2.1.");
|
result.Args.Should().Contain("--fx-version 2.1.1");
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
|
|
@ -75,7 +75,7 @@ namespace Microsoft.DotNet.New.Tests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Theory]
|
[Theory]
|
||||||
// [InlineData("console", "microsoft.netcore.app")] re-enable when this issue is resolved: "https://github.com/dotnet/cli/issues/9420"
|
[InlineData("console", "microsoft.netcore.app")]
|
||||||
[InlineData("classlib", "netstandard.library")]
|
[InlineData("classlib", "netstandard.library")]
|
||||||
public void NewProjectRestoresCorrectPackageVersion(string type, string packageName)
|
public void NewProjectRestoresCorrectPackageVersion(string type, string packageName)
|
||||||
{
|
{
|
||||||
|
@ -106,7 +106,7 @@ namespace Microsoft.DotNet.New.Tests
|
||||||
var sharedFxDir = dotnetDir
|
var sharedFxDir = dotnetDir
|
||||||
.GetDirectory("shared", "Microsoft.NETCore.App")
|
.GetDirectory("shared", "Microsoft.NETCore.App")
|
||||||
.EnumerateDirectories()
|
.EnumerateDirectories()
|
||||||
.Single(d => d.Name.StartsWith("2.1."));
|
.Single(d => d.Name.StartsWith("2.1.1"));
|
||||||
|
|
||||||
if (packageName == "microsoft.netcore.app")
|
if (packageName == "microsoft.netcore.app")
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue