Skip to content

Commit c2c5403

Browse files
authored
update cgmanifest (dotnet#7516)
* update cgmanifest * revert 8.2 * revert 9.0 * fix to 9.0.200 versions * revert older * more
1 parent 6d7a7f7 commit c2c5403

File tree

4 files changed

+56
-7
lines changed

4 files changed

+56
-7
lines changed

eng/Versions.props

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,13 @@
3636
<MicrosoftNETRuntimeWorkloadTestingInternalVersion>9.0.1-servicing.24603.14</MicrosoftNETRuntimeWorkloadTestingInternalVersion>
3737
<!-- dotnet/extensions -->
3838
<MicrosoftExtensionsAIVersion>9.1.0-preview.1.25064.3</MicrosoftExtensionsAIVersion>
39+
40+
<!-- when updating this, also update cgmanifest.json as it is consumed in templates -->
3941
<MicrosoftExtensionsHttpResilienceVersion>9.1.0</MicrosoftExtensionsHttpResilienceVersion>
42+
4043
<MicrosoftExtensionsDiagnosticsTestingVersion>9.1.0</MicrosoftExtensionsDiagnosticsTestingVersion>
4144
<MicrosoftExtensionsTimeProviderTestingVersion>9.1.0</MicrosoftExtensionsTimeProviderTestingVersion>
45+
4246
<!-- for templates -->
4347
<MicrosoftAspNetCorePackageVersionForNet9>9.0.1</MicrosoftAspNetCorePackageVersionForNet9>
4448
</PropertyGroup>

src/Aspire.ProjectTemplates/cgmanifest.json

Lines changed: 48 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,16 @@
5252
"type": "nuget",
5353
"nuget": {
5454
"name": "Microsoft.Extensions.Http.Resilience",
55-
"version": "8.9.1"
55+
"version": "8.2.2"
56+
}
57+
}
58+
},
59+
{
60+
"component": {
61+
"type": "nuget",
62+
"nuget": {
63+
"name": "Microsoft.Extensions.Http.Resilience",
64+
"version": "9.1.0"
5665
}
5766
}
5867
},
@@ -70,7 +79,25 @@
7079
"type": "nuget",
7180
"nuget": {
7281
"name": "MSTest",
73-
"version": "3.5.2"
82+
"version": "3.4.3"
83+
}
84+
}
85+
},
86+
{
87+
"component": {
88+
"type": "nuget",
89+
"nuget": {
90+
"name": "MSTest",
91+
"version": "3.6.1"
92+
}
93+
}
94+
},
95+
{
96+
"component": {
97+
"type": "nuget",
98+
"nuget": {
99+
"name": "MSTest",
100+
"version": "3.6.4"
74101
}
75102
}
76103
},
@@ -88,7 +115,16 @@
88115
"type": "nuget",
89116
"nuget": {
90117
"name": "NUnit",
91-
"version": "4.2.1"
118+
"version": "4.1.0"
119+
}
120+
}
121+
},
122+
{
123+
"component": {
124+
"type": "nuget",
125+
"nuget": {
126+
"name": "NUnit",
127+
"version": "4.2.2"
92128
}
93129
}
94130
},
@@ -119,6 +155,15 @@
119155
}
120156
}
121157
},
158+
{
159+
"component": {
160+
"type": "nuget",
161+
"nuget": {
162+
"name": "xunit",
163+
"version": "2.9.2"
164+
}
165+
}
166+
},
122167
{
123168
"component": {
124169
"type": "nuget",

src/Aspire.ProjectTemplates/templates/aspire-mstest/9.1/Aspire.Tests.1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<ItemGroup>
1414
<PackageReference Include="Aspire.Hosting.Testing" Version="!!REPLACE_WITH_LATEST_VERSION!!" />
15-
<PackageReference Include="MSTest" Version="3.6.1" />
15+
<PackageReference Include="MSTest" Version="3.6.4" />
1616
</ItemGroup>
1717

1818
<ItemGroup>

src/Aspire.ProjectTemplates/templates/aspire-starter/9.1/Aspire-StarterApplication.1.Tests/Aspire-StarterApplication.1.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<PackageReference Include="Aspire.Hosting.Testing" Version="!!REPLACE_WITH_LATEST_VERSION!!" />
1818
<PackageReference Include="coverlet.collector" Version="6.0.2" Condition=" $(TestFramework) == 'xUnit.net' " />
1919
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" Condition=" $(TestFramework) != 'MSTest' " />
20-
<PackageReference Include="MSTest" Version="3.4.3" Condition=" $(TestFramework) == 'MSTest' " />
21-
<PackageReference Include="NUnit" Version="4.1.0" Condition=" $(TestFramework) == 'NUnit' " />
20+
<PackageReference Include="MSTest" Version="3.6.4" Condition=" $(TestFramework) == 'MSTest' " />
21+
<PackageReference Include="NUnit" Version="4.2.2" Condition=" $(TestFramework) == 'NUnit' " />
2222
<PackageReference Include="NUnit.Analyzers" Version="4.2.0" Condition=" $(TestFramework) == 'NUnit' " />
2323
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" Condition=" $(TestFramework) == 'NUnit' " />
24-
<PackageReference Include="xunit" Version="2.9.0" Condition=" $(TestFramework) == 'xUnit.net' " />
24+
<PackageReference Include="xunit" Version="2.9.2" Condition=" $(TestFramework) == 'xUnit.net' " />
2525
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" Condition=" $(TestFramework) == 'xUnit.net' " />
2626
</ItemGroup>
2727

0 commit comments

Comments
 (0)