Skip to content

Commit 56e1146

Browse files
committed
Merge remote-tracking branch 'dotnet/main' into fix-87097
2 parents 94ba5ce + 40b50b8 commit 56e1146

File tree

474 files changed

+10310
-5233
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

474 files changed

+10310
-5233
lines changed

docs/design/coreclr/botr/exceptions.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ The basic macros are, of course, EX_TRY / EX_CATCH / EX_END_CATCH, and in use th
3131
EX_CATCH
3232
// If we're here, something failed.
3333
m_finalDisposition = terminallyHopeless;
34-
EX_END_CATCH(RethrowTransientExceptions)
34+
RethrowTransientExceptions();
35+
EX_END_CATCH
3536

3637
The EX_TRY macro simply introduces the try block, and is much like the C++ "try", except that it also includes an opening brace, "{".
3738

@@ -70,7 +71,8 @@ More information is often most conveniently available through the managed except
7071
// . . . do something that might throw
7172
EX_CATCH
7273
throwable = GET_THROWABLE();
73-
EX_END_CATCH(RethrowTransientExceptions)
74+
RethrowTransientExceptions();
75+
EX_END_CATCH
7476
// . . . do something with throwable
7577
GCPROTECT_END()
7678

@@ -81,12 +83,11 @@ Sometimes, there is no avoiding a need for the C++ exception object, though this
8183

8284
would tell whether the exception is (or derives from) CLRException.
8385

84-
EX_END_CATCH(RethrowTransientExceptions)
86+
RethrowTransientExceptions
8587
----------------------------------------
8688

87-
In the example above, "RethrowTransientExceptions" is an argument to the EX_END_CATCH macro; it is one of three pre-defined macros that can be thought of "exception disposition". Here are the macros, and their meanings:
89+
In the example above, "RethrowTransientExceptions" is a macro in the `EX_CATCH` block; it is one of three pre-defined macros that can be thought of "exception disposition". Here are the macros, and their meanings:
8890

89-
- _SwallowAllExceptions_: This is aptly named, and very simple. As the name suggests, it swallows everything. While simple and appealing, this is often not the right thing to do.
9091
- _RethrowTerminalExceptions_. A better name would be "RethrowThreadAbort", which is what this macro does.
9192
- _RethrowTransientExceptions_. The best definition of a "transient" exception is one that might not occur if tried again, possibly in a different context. These are the transient exceptions:
9293
- COR_E_THREADABORTED
@@ -102,9 +103,7 @@ In the example above, "RethrowTransientExceptions" is an argument to the EX_END_
102103

103104
The CLR developer with doubts about which macro to use should probably pick _RethrowTransientExceptions_.
104105

105-
In every case, however, the developer writing an EX_END_CATCH needs to think hard about which exception should be caught, and should catch only those exceptions. And, because the macros catch everything anyway, the only way to not catch an exception is to rethrow it.
106-
107-
If an EX_CATCH / EX_END_CATCH block has properly categorized its exceptions, and has rethrown wherever necessary, then SwallowAllExceptions is the way to tell the macros that no further rethrowing is necessary.
106+
In every case, however, the developer writing an EX_CATCH block needs to think hard about which exception should be caught, and should catch only those exceptions. And, because the macros catch everything anyway, the only way to not catch an exception is to rethrow it.
108107

109108
## EX_CATCH_HRESULT
110109

docs/design/coreclr/botr/profilability.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,6 @@ Each and every callback wrapper must have some common gunk at the top. Here's a
6767

6868
// Yay!
6969
CAN_TAKE_LOCK;
70-
71-
// Yay!
72-
ASSERT_NO_EE_LOCKS_HELD();
7370
}
7471
CONTRACTL_END;
7572
CLR_TO_PROFILER_ENTRYPOINT((LF_CORPROF,

docs/design/coreclr/jit/viewing-jit-dumps.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,8 @@ Some environment variables such as `DOTNET_JitDisasm` take a list of patterns sp
172172
+ The simplest method list is a single method name specified using just the method name (no class name), e.g. `Main`.
173173
+ A list of simple method names can be used, e.g., `Main Test1 Test2`.
174174
* The string matched against depends on characters in the pattern:
175+
+ If the pattern contains a '!' character, the string matched against is prefixed by the assembly name and an exclamation mark.
176+
- Example: `testassembly!*` - specifies all methods from the assembly named `testassembly`.
175177
+ If the pattern contains a ':' character, the string matched against is prefixed by the class name and a colon.
176178
- Example: `TestClass:Main` - specifies a single method named `Main` in the class named `TestClass`.
177179
+ If the pattern contains a '(' character, the string matched against is suffixed by the signature.

eng/Version.Details.xml

Lines changed: 105 additions & 105 deletions
Large diffs are not rendered by default.

eng/Versions.props

Lines changed: 50 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageVersionNet7>7.0.20</PackageVersionNet7>
1313
<PackageVersionNet6>6.0.36</PackageVersionNet6>
1414
<PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
15-
<PreReleaseVersionIteration>6</PreReleaseVersionIteration>
15+
<PreReleaseVersionIteration>7</PreReleaseVersionIteration>
1616
<!-- Enable to remove prerelease label. -->
1717
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>
1818
<DotNetFinalVersionKind Condition="'$(StabilizePackageVersion)' == 'true'">release</DotNetFinalVersionKind>
@@ -36,17 +36,17 @@
3636
</ItemGroup>
3737
<PropertyGroup>
3838
<!-- dotnet/roslyn-analyzers dependencies -->
39-
<MicrosoftCodeAnalysisNetAnalyzersVersion>10.0.0-preview.25302.103</MicrosoftCodeAnalysisNetAnalyzersVersion>
39+
<MicrosoftCodeAnalysisNetAnalyzersVersion>10.0.0-preview.25311.107</MicrosoftCodeAnalysisNetAnalyzersVersion>
4040
<!-- dotnet/roslyn dependencies -->
41-
<MicrosoftCodeAnalysisAnalyzersVersion>5.0.0-1.25302.103</MicrosoftCodeAnalysisAnalyzersVersion>
41+
<MicrosoftCodeAnalysisAnalyzersVersion>5.0.0-1.25311.107</MicrosoftCodeAnalysisAnalyzersVersion>
4242
<!--
4343
These versions should not be used by any project that contributes to the design-time experience in VS, such as an analyzer, code-fix, or generator assembly.
4444
Any tools that contribute to the design-time experience should use the MicrosoftCodeAnalysisVersion_LatestVS property above to ensure
4545
they do not break the local dev experience.
4646
-->
47-
<MicrosoftCodeAnalysisCSharpVersion>5.0.0-1.25302.103</MicrosoftCodeAnalysisCSharpVersion>
48-
<MicrosoftCodeAnalysisVersion>5.0.0-1.25302.103</MicrosoftCodeAnalysisVersion>
49-
<MicrosoftNetCompilersToolsetVersion>5.0.0-1.25302.103</MicrosoftNetCompilersToolsetVersion>
47+
<MicrosoftCodeAnalysisCSharpVersion>5.0.0-1.25311.107</MicrosoftCodeAnalysisCSharpVersion>
48+
<MicrosoftCodeAnalysisVersion>5.0.0-1.25311.107</MicrosoftCodeAnalysisVersion>
49+
<MicrosoftNetCompilersToolsetVersion>5.0.0-1.25311.107</MicrosoftNetCompilersToolsetVersion>
5050
</PropertyGroup>
5151
<!--
5252
For source generator support we need to target multiple versions of Roslyn in order to be able to run on older versions of Roslyn.
@@ -83,34 +83,34 @@
8383
<PropertyGroup>
8484
<StaticCsVersion>0.2.0</StaticCsVersion>
8585
<!-- SDK dependencies (also used in wasm build tests -->
86-
<MicrosoftDotNetApiCompatTaskVersion>10.0.100-preview.6.25302.103</MicrosoftDotNetApiCompatTaskVersion>
86+
<MicrosoftDotNetApiCompatTaskVersion>10.0.100-preview.6.25311.107</MicrosoftDotNetApiCompatTaskVersion>
8787
<!-- Arcade dependencies -->
88-
<MicrosoftDotNetBuildTasksFeedVersion>10.0.0-beta.25302.103</MicrosoftDotNetBuildTasksFeedVersion>
89-
<MicrosoftDotNetCodeAnalysisVersion>10.0.0-beta.25302.103</MicrosoftDotNetCodeAnalysisVersion>
90-
<MicrosoftDotNetGenAPIVersion>10.0.0-beta.25302.103</MicrosoftDotNetGenAPIVersion>
91-
<MicrosoftDotNetGenFacadesVersion>10.0.0-beta.25302.103</MicrosoftDotNetGenFacadesVersion>
92-
<MicrosoftDotNetXUnitAssertVersion>2.9.2-beta.25302.103</MicrosoftDotNetXUnitAssertVersion>
93-
<MicrosoftDotNetXUnitExtensionsVersion>10.0.0-beta.25302.103</MicrosoftDotNetXUnitExtensionsVersion>
94-
<MicrosoftDotNetXUnitConsoleRunnerVersion>2.9.2-beta.25302.103</MicrosoftDotNetXUnitConsoleRunnerVersion>
95-
<MicrosoftDotNetBuildTasksArchivesVersion>10.0.0-beta.25302.103</MicrosoftDotNetBuildTasksArchivesVersion>
96-
<MicrosoftDotNetBuildTasksInstallersVersion>10.0.0-beta.25302.103</MicrosoftDotNetBuildTasksInstallersVersion>
97-
<MicrosoftDotNetBuildTasksPackagingVersion>10.0.0-beta.25302.103</MicrosoftDotNetBuildTasksPackagingVersion>
98-
<MicrosoftDotNetBuildTasksTargetFrameworkVersion>10.0.0-beta.25302.103</MicrosoftDotNetBuildTasksTargetFrameworkVersion>
99-
<MicrosoftDotNetBuildTasksTemplatingVersion>10.0.0-beta.25302.103</MicrosoftDotNetBuildTasksTemplatingVersion>
100-
<MicrosoftDotNetBuildTasksWorkloadsPackageVersion>10.0.0-beta.25302.103</MicrosoftDotNetBuildTasksWorkloadsPackageVersion>
101-
<MicrosoftDotNetRemoteExecutorVersion>10.0.0-beta.25302.103</MicrosoftDotNetRemoteExecutorVersion>
102-
<MicrosoftDotNetPackageTestingVersion>10.0.0-beta.25302.103</MicrosoftDotNetPackageTestingVersion>
103-
<MicrosoftDotNetXliffTasksVersion>10.0.0-beta.25302.103</MicrosoftDotNetXliffTasksVersion>
88+
<MicrosoftDotNetBuildTasksFeedVersion>10.0.0-beta.25311.107</MicrosoftDotNetBuildTasksFeedVersion>
89+
<MicrosoftDotNetCodeAnalysisVersion>10.0.0-beta.25311.107</MicrosoftDotNetCodeAnalysisVersion>
90+
<MicrosoftDotNetGenAPIVersion>10.0.0-beta.25311.107</MicrosoftDotNetGenAPIVersion>
91+
<MicrosoftDotNetGenFacadesVersion>10.0.0-beta.25311.107</MicrosoftDotNetGenFacadesVersion>
92+
<MicrosoftDotNetXUnitAssertVersion>2.9.2-beta.25311.107</MicrosoftDotNetXUnitAssertVersion>
93+
<MicrosoftDotNetXUnitExtensionsVersion>10.0.0-beta.25311.107</MicrosoftDotNetXUnitExtensionsVersion>
94+
<MicrosoftDotNetXUnitConsoleRunnerVersion>2.9.2-beta.25311.107</MicrosoftDotNetXUnitConsoleRunnerVersion>
95+
<MicrosoftDotNetBuildTasksArchivesVersion>10.0.0-beta.25311.107</MicrosoftDotNetBuildTasksArchivesVersion>
96+
<MicrosoftDotNetBuildTasksInstallersVersion>10.0.0-beta.25311.107</MicrosoftDotNetBuildTasksInstallersVersion>
97+
<MicrosoftDotNetBuildTasksPackagingVersion>10.0.0-beta.25311.107</MicrosoftDotNetBuildTasksPackagingVersion>
98+
<MicrosoftDotNetBuildTasksTargetFrameworkVersion>10.0.0-beta.25311.107</MicrosoftDotNetBuildTasksTargetFrameworkVersion>
99+
<MicrosoftDotNetBuildTasksTemplatingVersion>10.0.0-beta.25311.107</MicrosoftDotNetBuildTasksTemplatingVersion>
100+
<MicrosoftDotNetBuildTasksWorkloadsPackageVersion>10.0.0-beta.25311.107</MicrosoftDotNetBuildTasksWorkloadsPackageVersion>
101+
<MicrosoftDotNetRemoteExecutorVersion>10.0.0-beta.25311.107</MicrosoftDotNetRemoteExecutorVersion>
102+
<MicrosoftDotNetPackageTestingVersion>10.0.0-beta.25311.107</MicrosoftDotNetPackageTestingVersion>
103+
<MicrosoftDotNetXliffTasksVersion>10.0.0-beta.25311.107</MicrosoftDotNetXliffTasksVersion>
104104
<!-- TODO: Remove pinned xunit.analyzers version: https://github.com/dotnet/runtime/issues/97088 -->
105105
<XUnitAnalyzersVersion>1.4.0</XUnitAnalyzersVersion>
106106
<!-- NuGet dependencies -->
107107
<NuGetBuildTasksPackVersion>6.0.0-preview.1.102</NuGetBuildTasksPackVersion>
108108
<!-- Installer dependencies -->
109-
<MicrosoftNETCoreAppRefVersion>10.0.0-preview.6.25302.103</MicrosoftNETCoreAppRefVersion>
109+
<MicrosoftNETCoreAppRefVersion>10.0.0-preview.6.25311.107</MicrosoftNETCoreAppRefVersion>
110110
<MicrosoftExtensionsDependencyModelVersion>6.0.0</MicrosoftExtensionsDependencyModelVersion>
111111
<!-- ILAsm dependencies -->
112-
<MicrosoftNETCoreILAsmVersion>10.0.0-preview.6.25302.103</MicrosoftNETCoreILAsmVersion>
113-
<MicrosoftNETSdkILVersion>10.0.0-preview.6.25302.103</MicrosoftNETSdkILVersion>
112+
<MicrosoftNETCoreILAsmVersion>10.0.0-preview.6.25311.107</MicrosoftNETCoreILAsmVersion>
113+
<MicrosoftNETSdkILVersion>10.0.0-preview.6.25311.107</MicrosoftNETSdkILVersion>
114114
<!-- Maintenance-Packages dependencies -->
115115
<MicrosoftBclHashCodeVersion>6.0.0</MicrosoftBclHashCodeVersion>
116116
<SystemBuffersVersion>4.6.1</SystemBuffersVersion>
@@ -128,16 +128,16 @@
128128
<SystemDrawingCommonVersion>8.0.0</SystemDrawingCommonVersion>
129129
<SystemFormatsAsn1Version>8.0.1</SystemFormatsAsn1Version>
130130
<SystemIOFileSystemAccessControlVersion>5.0.0</SystemIOFileSystemAccessControlVersion>
131-
<SystemReflectionMetadataVersion>10.0.0-preview.6.25302.103</SystemReflectionMetadataVersion>
132-
<SystemReflectionMetadataLoadContextVersion>10.0.0-preview.6.25302.103</SystemReflectionMetadataLoadContextVersion>
131+
<SystemReflectionMetadataVersion>10.0.0-preview.6.25311.107</SystemReflectionMetadataVersion>
132+
<SystemReflectionMetadataLoadContextVersion>10.0.0-preview.6.25311.107</SystemReflectionMetadataLoadContextVersion>
133133
<SystemSecurityAccessControlVersion>6.0.0</SystemSecurityAccessControlVersion>
134134
<SystemSecurityCryptographyCngVersion>5.0.0</SystemSecurityCryptographyCngVersion>
135135
<SystemSecurityCryptographyOpenSslVersion>5.0.0</SystemSecurityCryptographyOpenSslVersion>
136136
<SystemSecurityPrincipalWindowsVersion>5.0.0</SystemSecurityPrincipalWindowsVersion>
137137
<SystemSecurityPermissionsVersion>7.0.0</SystemSecurityPermissionsVersion>
138-
<SystemTextJsonVersion>10.0.0-preview.6.25302.103</SystemTextJsonVersion>
138+
<SystemTextJsonVersion>10.0.0-preview.6.25311.107</SystemTextJsonVersion>
139139
<SystemThreadingAccessControlVersion>7.0.0</SystemThreadingAccessControlVersion>
140-
<runtimenativeSystemIOPortsVersion>10.0.0-preview.6.25302.103</runtimenativeSystemIOPortsVersion>
140+
<runtimenativeSystemIOPortsVersion>10.0.0-preview.6.25311.107</runtimenativeSystemIOPortsVersion>
141141
<!-- Keep toolset versions in sync with dotnet/msbuild and dotnet/sdk -->
142142
<MicrosoftBclAsyncInterfacesToolsetVersion>8.0.0</MicrosoftBclAsyncInterfacesToolsetVersion>
143143
<SystemBuffersToolsetVersion>4.5.1</SystemBuffersToolsetVersion>
@@ -149,27 +149,27 @@
149149
<SystemTextEncodingsWebToolsetVersion>8.0.0</SystemTextEncodingsWebToolsetVersion>
150150
<SystemThreadingTasksExtensionsToolsetVersion>4.5.4</SystemThreadingTasksExtensionsToolsetVersion>
151151
<!-- Runtime-Assets dependencies -->
152-
<SystemRuntimeNumericsTestDataVersion>10.0.0-beta.25262.1</SystemRuntimeNumericsTestDataVersion>
153-
<SystemComponentModelTypeConverterTestDataVersion>10.0.0-beta.25262.1</SystemComponentModelTypeConverterTestDataVersion>
154-
<SystemDataCommonTestDataVersion>10.0.0-beta.25262.1</SystemDataCommonTestDataVersion>
155-
<SystemDrawingCommonTestDataVersion>10.0.0-beta.25262.1</SystemDrawingCommonTestDataVersion>
156-
<SystemFormatsTarTestDataVersion>10.0.0-beta.25262.1</SystemFormatsTarTestDataVersion>
157-
<SystemIOCompressionTestDataVersion>10.0.0-beta.25262.1</SystemIOCompressionTestDataVersion>
158-
<SystemIOPackagingTestDataVersion>10.0.0-beta.25262.1</SystemIOPackagingTestDataVersion>
159-
<SystemNetTestDataVersion>10.0.0-beta.25262.1</SystemNetTestDataVersion>
160-
<SystemPrivateRuntimeUnicodeDataVersion>10.0.0-beta.25262.1</SystemPrivateRuntimeUnicodeDataVersion>
161-
<SystemRuntimeTimeZoneDataVersion>10.0.0-beta.25262.1</SystemRuntimeTimeZoneDataVersion>
162-
<SystemSecurityCryptographyX509CertificatesTestDataVersion>10.0.0-beta.25262.1</SystemSecurityCryptographyX509CertificatesTestDataVersion>
163-
<SystemTextRegularExpressionsTestDataVersion>10.0.0-beta.25262.1</SystemTextRegularExpressionsTestDataVersion>
164-
<SystemWindowsExtensionsTestDataVersion>10.0.0-beta.25262.1</SystemWindowsExtensionsTestDataVersion>
165-
<MicrosoftDotNetCilStripSourcesVersion>10.0.0-beta.25262.1</MicrosoftDotNetCilStripSourcesVersion>
166-
<MicrosoftNETHostModelTestDataVersion>10.0.0-beta.25262.1</MicrosoftNETHostModelTestDataVersion>
152+
<SystemRuntimeNumericsTestDataVersion>10.0.0-beta.25310.1</SystemRuntimeNumericsTestDataVersion>
153+
<SystemComponentModelTypeConverterTestDataVersion>10.0.0-beta.25310.1</SystemComponentModelTypeConverterTestDataVersion>
154+
<SystemDataCommonTestDataVersion>10.0.0-beta.25310.1</SystemDataCommonTestDataVersion>
155+
<SystemDrawingCommonTestDataVersion>10.0.0-beta.25310.1</SystemDrawingCommonTestDataVersion>
156+
<SystemFormatsTarTestDataVersion>10.0.0-beta.25310.1</SystemFormatsTarTestDataVersion>
157+
<SystemIOCompressionTestDataVersion>10.0.0-beta.25310.1</SystemIOCompressionTestDataVersion>
158+
<SystemIOPackagingTestDataVersion>10.0.0-beta.25310.1</SystemIOPackagingTestDataVersion>
159+
<SystemNetTestDataVersion>10.0.0-beta.25310.1</SystemNetTestDataVersion>
160+
<SystemPrivateRuntimeUnicodeDataVersion>10.0.0-beta.25310.1</SystemPrivateRuntimeUnicodeDataVersion>
161+
<SystemRuntimeTimeZoneDataVersion>10.0.0-beta.25310.1</SystemRuntimeTimeZoneDataVersion>
162+
<SystemSecurityCryptographyX509CertificatesTestDataVersion>10.0.0-beta.25310.1</SystemSecurityCryptographyX509CertificatesTestDataVersion>
163+
<SystemTextRegularExpressionsTestDataVersion>10.0.0-beta.25310.1</SystemTextRegularExpressionsTestDataVersion>
164+
<SystemWindowsExtensionsTestDataVersion>10.0.0-beta.25310.1</SystemWindowsExtensionsTestDataVersion>
165+
<MicrosoftDotNetCilStripSourcesVersion>10.0.0-beta.25310.1</MicrosoftDotNetCilStripSourcesVersion>
166+
<MicrosoftNETHostModelTestDataVersion>10.0.0-beta.25310.1</MicrosoftNETHostModelTestDataVersion>
167167
<!-- xharness dependencies -->
168168
<MicrosoftDotNetXHarnessTestRunnersCommonVersion>10.0.0-prerelease.25255.1</MicrosoftDotNetXHarnessTestRunnersCommonVersion>
169169
<MicrosoftDotNetXHarnessTestRunnersXunitVersion>10.0.0-prerelease.25255.1</MicrosoftDotNetXHarnessTestRunnersXunitVersion>
170170
<MicrosoftDotNetXHarnessCLIVersion>10.0.0-prerelease.25255.1</MicrosoftDotNetXHarnessCLIVersion>
171171
<!-- hotreload-utils dependencies -->
172-
<MicrosoftDotNetHotReloadUtilsGeneratorBuildToolVersion>10.0.0-alpha.0.25255.1</MicrosoftDotNetHotReloadUtilsGeneratorBuildToolVersion>
172+
<MicrosoftDotNetHotReloadUtilsGeneratorBuildToolVersion>10.0.0-alpha.0.25302.2</MicrosoftDotNetHotReloadUtilsGeneratorBuildToolVersion>
173173
<!-- dotnet-optimization dependencies -->
174174
<optimizationwindows_ntx64MIBCRuntimeVersion>1.0.0-prerelease.25256.1</optimizationwindows_ntx64MIBCRuntimeVersion>
175175
<optimizationwindows_ntx86MIBCRuntimeVersion>1.0.0-prerelease.25256.1</optimizationwindows_ntx86MIBCRuntimeVersion>
@@ -180,7 +180,7 @@
180180
<!-- Not auto-updated. -->
181181
<MicrosoftDiaSymReaderVersion>2.0.0</MicrosoftDiaSymReaderVersion>
182182
<MicrosoftDiaSymReaderNativeVersion>17.10.0-beta1.24272.1</MicrosoftDiaSymReaderNativeVersion>
183-
<SystemCommandLineVersion>2.0.0-beta5.25302.103</SystemCommandLineVersion>
183+
<SystemCommandLineVersion>2.0.0-beta5.25311.107</SystemCommandLineVersion>
184184
<TraceEventVersion>3.1.16</TraceEventVersion>
185185
<NETStandardLibraryRefVersion>2.1.0</NETStandardLibraryRefVersion>
186186
<NetStandardLibraryVersion>2.0.3</NetStandardLibraryVersion>
@@ -226,9 +226,9 @@
226226
<!-- Docs -->
227227
<MicrosoftPrivateIntellisenseVersion>9.0.0-preview-20241010.1</MicrosoftPrivateIntellisenseVersion>
228228
<!-- Mono Cecil -->
229-
<MicrosoftDotNetCecilVersion>0.11.5-alpha.25302.103</MicrosoftDotNetCecilVersion>
229+
<MicrosoftDotNetCecilVersion>0.11.5-alpha.25311.107</MicrosoftDotNetCecilVersion>
230230
<!-- ICU -->
231-
<MicrosoftNETCoreRuntimeICUTransportVersion>10.0.0-preview.5.25261.1</MicrosoftNETCoreRuntimeICUTransportVersion>
231+
<MicrosoftNETCoreRuntimeICUTransportVersion>10.0.0-preview.6.25302.1</MicrosoftNETCoreRuntimeICUTransportVersion>
232232
<!-- MsQuic -->
233233
<MicrosoftNativeQuicMsQuicSchannelVersion>2.4.8</MicrosoftNativeQuicMsQuicSchannelVersion>
234234
<SystemNetMsQuicTransportVersion>9.0.0-alpha.1.24167.3</SystemNetMsQuicTransportVersion>
@@ -258,7 +258,7 @@
258258
Note: when the name is updated, make sure to update dependency name in eng/pipelines/common/xplat-setup.yml
259259
like - DarcDependenciesChanged.Microsoft_NET_Workload_Emscripten_Current_Manifest-10_0_100_Transport
260260
-->
261-
<MicrosoftNETWorkloadEmscriptenCurrentManifest100100TransportVersion>10.0.100-preview.6.25302.103</MicrosoftNETWorkloadEmscriptenCurrentManifest100100TransportVersion>
261+
<MicrosoftNETWorkloadEmscriptenCurrentManifest100100TransportVersion>10.0.100-preview.6.25311.107</MicrosoftNETWorkloadEmscriptenCurrentManifest100100TransportVersion>
262262
<MicrosoftNETRuntimeEmscriptenVersion>$(MicrosoftNETWorkloadEmscriptenCurrentManifest100100TransportVersion)</MicrosoftNETRuntimeEmscriptenVersion>
263263
<!-- workloads -->
264264
<SwixPackageVersion>1.1.87-gba258badda</SwixPackageVersion>

0 commit comments

Comments
 (0)