Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions eng/Version.Details.props
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,16 @@ This file should be imported by eng/Versions.props
<SystemTextEncodingCodePagesPackageVersion>11.0.0-preview.7.26363.117</SystemTextEncodingCodePagesPackageVersion>
<SystemTextJsonPackageVersion>11.0.0-preview.7.26363.117</SystemTextJsonPackageVersion>
<SystemWindowsExtensionsPackageVersion>11.0.0-preview.7.26363.117</SystemWindowsExtensionsPackageVersion>
<!-- microsoft-testfx dependencies -->
<MicrosoftTestingPlatformPackageVersion>2.4.0-preview.26360.5</MicrosoftTestingPlatformPackageVersion>
<!-- microsoft-testfx dependencies.
KEEP IN SYNC: MSTestPackageVersion (MSTest framework/adapter), MicrosoftTestingPlatformPackageVersion,
and the "MSTest.Sdk" entry under msbuild-sdks in global.json must all come from the SAME testfx build.
The MSTest.Sdk source generator emits test registrations against the MSTest.TestFramework runtime, so a
version skew breaks the NativeAOT CLI test build (e.g. CS0234 / "Zero tests ran"). See
https://github.com/dotnet/sdk/pull/55302. These flow together via darc (Version.Details.xml); do not bump
one without the others. -->
<MicrosoftTestingPlatformPackageVersion>2.4.0-preview.26366.2</MicrosoftTestingPlatformPackageVersion>
<MicrosoftTestingPlatformInternalDotnetTestPackageVersion>2.3.0-preview.26330.8</MicrosoftTestingPlatformInternalDotnetTestPackageVersion>
<MSTestPackageVersion>4.4.0-preview.26360.5</MSTestPackageVersion>
<MSTestPackageVersion>4.4.0-preview.26366.2</MSTestPackageVersion>
</PropertyGroup>
<!--Property group for alternate package version names-->
<PropertyGroup>
Expand Down
18 changes: 11 additions & 7 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -541,18 +541,22 @@
<Uri>https://github.com/dotnet/dotnet</Uri>
<Sha>b25932e8d128b5242f1d89691f8e8171b82774c0</Sha>
</Dependency>
<Dependency Name="Microsoft.Testing.Platform" Version="2.4.0-preview.26360.5">
<!-- KEEP IN SYNC: the following testfx packages (Microsoft.Testing.Platform, MSTest, MSTest.Sdk) must
stay on the SAME testfx build/Sha. The MSTest.Sdk source generator emits registrations against the
MSTest.TestFramework runtime, so a version skew breaks the NativeAOT CLI test build. See #55302. -->
<Dependency Name="Microsoft.Testing.Platform" Version="2.4.0-preview.26366.2">
<Uri>https://github.com/microsoft/testfx</Uri>
<Sha>f19af28482c9d0101cc2a380fb05e2483460d703</Sha>
<Sha>c1e6453f196e6ca8fdfa3e25f9eec685794ce1f6</Sha>
</Dependency>
<Dependency Name="MSTest" Version="4.4.0-preview.26360.5">
<Dependency Name="MSTest" Version="4.4.0-preview.26366.2">
<Uri>https://github.com/microsoft/testfx</Uri>
<Sha>f19af28482c9d0101cc2a380fb05e2483460d703</Sha>
<Sha>c1e6453f196e6ca8fdfa3e25f9eec685794ce1f6</Sha>
</Dependency>
<!-- MSTest.Sdk is consumed from global.json's msbuild-sdks (not as a PackageReference). -->
<Dependency Name="MSTest.Sdk" Version="4.4.0-preview.26360.5">
<!-- MSTest.Sdk is consumed from global.json's msbuild-sdks (not as a PackageReference). It MUST match the
MSTest / Microsoft.Testing.Platform build above (see the sync note above). -->
<Dependency Name="MSTest.Sdk" Version="4.4.0-preview.26366.2">
<Uri>https://github.com/microsoft/testfx</Uri>
<Sha>f19af28482c9d0101cc2a380fb05e2483460d703</Sha>
<Sha>c1e6453f196e6ca8fdfa3e25f9eec685794ce1f6</Sha>
</Dependency>
<Dependency Name="Microsoft.Extensions.Configuration.Ini" Version="11.0.0-preview.7.26363.117">
<Uri>https://github.com/dotnet/dotnet</Uri>
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
"Microsoft.Build.NoTargets": "3.7.134",
"Microsoft.Build.Traversal": "4.1.82",
"Microsoft.WixToolset.Sdk": "6.0.3-dotnet.6",
"MSTest.Sdk": "4.4.0-preview.26360.5"
"MSTest.Sdk": "4.4.0-preview.26366.2"
}
}
Loading