Skip to content

Commit

Permalink
Merge pull request dotnet#20212 from dotnet/wli3-patch-2
Browse files Browse the repository at this point in the history
Update global.json
  • Loading branch information
William Li authored Aug 30, 2021
2 parents 3b0651f + 6f97e73 commit deebf2f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</PropertyGroup>
<!-- Repo Version Information -->
<PropertyGroup>
<VersionPrefix>6.0.100</VersionPrefix>
<PreReleaseVersionLabel>rc</PreReleaseVersionLabel>
<VersionPrefix>7.0.100</VersionPrefix>
<PreReleaseVersionLabel>alpha</PreReleaseVersionLabel>
<PreReleaseVersionIteration>1</PreReleaseVersionIteration>
</PropertyGroup>
<!-- Production Dependencies -->
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"tools": {
"dotnet": "6.0.100-rc.2.21424.16",
"dotnet": "7.0.100-alpha.1.21427.1",
"runtimes": {
"dotnet": [
"$(VSRedistCommonNetCoreSharedFrameworkx6470PackageVersion)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Copyright (c) .NET Foundation. All rights reserved.
<SupportedNETCoreAppTargetFramework Include=".NETCoreApp,Version=v5.0" DisplayName=".NET 5.0" Alias="net5.0" />
<SupportedNETCoreAppTargetFramework Include=".NETCoreApp,Version=v6.0" DisplayName=".NET 6.0" Alias="net6.0"
Condition="$([MSBuild]::VersionGreaterThanOrEquals($(MSBuildVersion), '17.0'))"/>
<SupportedNETCoreAppTargetFramework Include=".NETCoreApp,Version=v7.0" DisplayName=".NET 7.0" Alias="net7.0" />
</ItemGroup>

<!-- .NET Standard -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ private void TestInvalidTargetFramework(string testName, string targetFramework,
}

[Theory]
[InlineData("netcoreapp6.1")]
[InlineData("netcoreapp9.1")]
[InlineData("netstandard2.2")]
public void It_fails_to_build_if_targeting_a_higher_framework_than_is_supported(string targetFramework)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ private static string LatestTargetFramework
}
}

[RequiresMSBuildVersionTheory("17.0.0.32901")]
[RequiresMSBuildVersionTheory("17.0.0.32901", Skip = "https://github.com/dotnet/sdk/issues/20325")]
[InlineData(true, true, "net5.0")]
[InlineData(true, true, "")]
[InlineData(true, false, "")]
Expand Down

0 comments on commit deebf2f

Please sign in to comment.