Merge pull request #779 from dotnet/fix_implicit_versions
Updating self-contained app implicit versions
This commit is contained in:
commit
b17ad14a8f
3 changed files with 10 additions and 8 deletions
|
@ -111,11 +111,11 @@
|
|||
<ImplicitPackageVariable Include="Microsoft.NETCore.App"
|
||||
TargetFrameworkVersion="2.1"
|
||||
DefaultVersion="2.1.0"
|
||||
LatestVersion="2.1.8" />
|
||||
LatestVersion="2.1.9" />
|
||||
<ImplicitPackageVariable Include="Microsoft.NETCore.App"
|
||||
TargetFrameworkVersion="2.2"
|
||||
DefaultVersion="2.2.0"
|
||||
LatestVersion="2.2.2" />
|
||||
LatestVersion="2.2.3" />
|
||||
<ImplicitPackageVariable Include="Microsoft.NETCore.App"
|
||||
TargetFrameworkVersion="3.0"
|
||||
DefaultVersion="$(_NETCoreAppPackageVersion)"
|
||||
|
@ -124,20 +124,20 @@
|
|||
<ImplicitPackageVariable Include="Microsoft.AspNetCore.App"
|
||||
TargetFrameworkVersion="2.1"
|
||||
DefaultVersion="2.1.1"
|
||||
LatestVersion="2.1.8"/>
|
||||
LatestVersion="2.1.9"/>
|
||||
<ImplicitPackageVariable Include="Microsoft.AspNetCore.All"
|
||||
TargetFrameworkVersion="2.1"
|
||||
DefaultVersion="2.1.1"
|
||||
LatestVersion="2.1.8"/>
|
||||
LatestVersion="2.1.9"/>
|
||||
|
||||
<ImplicitPackageVariable Include="Microsoft.AspNetCore.App"
|
||||
TargetFrameworkVersion="2.2"
|
||||
DefaultVersion="2.2.0"
|
||||
LatestVersion="2.2.2"/>
|
||||
LatestVersion="2.2.3"/>
|
||||
<ImplicitPackageVariable Include="Microsoft.AspNetCore.All"
|
||||
TargetFrameworkVersion="2.2"
|
||||
DefaultVersion="2.2.0"
|
||||
LatestVersion="2.2.2"/>
|
||||
LatestVersion="2.2.3"/>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
@ -226,7 +226,8 @@ namespace EndToEnd
|
|||
get
|
||||
{
|
||||
yield return new object[] { "2.1" };
|
||||
yield return new object[] { "2.2" };
|
||||
// https://github.com/dotnet/core-sdk/issues/780
|
||||
// yield return new object[] { "2.2" };
|
||||
yield return new object[] { LatestSupportedAspNetCoreAppVersion };
|
||||
}
|
||||
}
|
||||
|
|
|
@ -20,7 +20,8 @@ namespace EndToEnd
|
|||
"1.1",
|
||||
"2.0",
|
||||
"2.1",
|
||||
"2.2",
|
||||
// https://github.com/dotnet/core-sdk/issues/780
|
||||
// "2.2",
|
||||
"3.0"
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue