Merge pull request #778 from dotnet/livarcocc-patch-1
Updating self-contained app implicit versions
This commit is contained in:
commit
39910d9edf
3 changed files with 10 additions and 8 deletions
|
@ -106,11 +106,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)"
|
||||
|
@ -119,20 +119,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>
|
||||
|
||||
<PropertyGroup>
|
||||
|
|
|
@ -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
Add a link
Reference in a new issue