Skip to content

Commit 3c283e0

Browse files
authored
[rel/17.6] Downgrade Nuget.Frameworks to 6.5.0 (#4512)
1 parent 5121d9f commit 3c283e0

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project>
33
<PropertyGroup>
44
<!-- This repo version -->
5-
<VersionPrefix>17.6.1</VersionPrefix>
5+
<VersionPrefix>17.6.2</VersionPrefix>
66
<PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
77
<!-- Opt-out repo features -->
88
<UsingToolXliff>false</UsingToolXliff>

scripts/build/TestPlatform.Dependencies.props

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
and because during the test `dotnet test` will run and re-build some of the test projects and at that time the version
1313
from a build parameter would not be available, so I am writing this version from the build.ps1 script to keep it in sync -->
1414
<!-- Note that before bumping this version, you need to have one NuGet package available -->
15-
<NETTestSdkVersion>17.6.1-dev</NETTestSdkVersion>
15+
<NETTestSdkVersion>17.6.2-dev</NETTestSdkVersion>
1616

1717
<!-- These versions are used for running unit tests, and running acceptance tests. They are also used as the default version for projects
1818
in TestAssets.sln to allow running and debugging tests in that solution directly in VS without having to run them via AcceptanceTests. -->
@@ -55,7 +55,8 @@
5555

5656

5757
<!-- This version also needs to be updated in src\package\nuspec\TestPlatform.ObjectModel.nuspec -->
58-
<NuGetFrameworksVersion>6.6.0</NuGetFrameworksVersion>
58+
<!-- This version needs to be the same or lower than <NuGetFrameworksPackageVersion> https://github.com/dotnet/sdk/blob/release/7.0.3xx/eng/Versions.props, it also needs to be on nuget.org -->
59+
<NuGetFrameworksVersion>6.5.0</NuGetFrameworksVersion>
5960
<ILAsmPackageVersion>5.0.0</ILAsmPackageVersion>
6061
<JsonNetVersion>13.0.1</JsonNetVersion>
6162

scripts/build/TestPlatform.Settings.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!-- This version is read by vsts-prebuild.ps1 and is a base for the current version, this should be updated
66
at the start of new iteration to the goal number. This is also used to version the local packages. This version needs to be statically
77
readable when we read the file as xml, don't move it to a .props file, unless you change the build server process -->
8-
<TPVersionPrefix>17.6.1</TPVersionPrefix>
8+
<TPVersionPrefix>17.6.2</TPVersionPrefix>
99
<LangVersion>preview</LangVersion>
1010
<EnableNETAnalyzers>true</EnableNETAnalyzers>
1111
<AnalysisLevel>preview</AnalysisLevel>

src/package/nuspec/TestPlatform.ObjectModel.nuspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@
2222
<dependencies>
2323
<group targetFramework="net462">
2424
<dependency id="System.Reflection.Metadata" version="[1.6.0, )" />
25-
<dependency id="NuGet.Frameworks" version="[6.6.0, )" />
25+
<dependency id="NuGet.Frameworks" version="[6.5.0, )" />
2626
</group>
2727

2828
<group targetFramework="netcoreapp3.1">
2929
<dependency id="System.Reflection.Metadata" version="[1.6.0, )" />
30-
<dependency id="NuGet.Frameworks" version="[6.6.0, )" />
30+
<dependency id="NuGet.Frameworks" version="[6.5.0, )" />
3131
</group>
3232

3333
<group targetFramework="netstandard2.0">
3434
<dependency id="System.Reflection.Metadata" version="[1.6.0, )" />
35-
<dependency id="NuGet.Frameworks" version="[6.6.0, )" />
35+
<dependency id="NuGet.Frameworks" version="[6.5.0, )" />
3636
</group>
3737
</dependencies>
3838

0 commit comments

Comments
 (0)