Skip to content

Commit fb57b39

Browse files
dotnet-maestro[bot]GitHub Copilot CLI
authored andcommitted
[main] Source code updates from dotnet/runtime (dotnet#3124)
[main] Source code updates from dotnet/runtime
1 parent e75a9e9 commit fb57b39

File tree

1,081 files changed

+8904
-11808
lines changed

Some content is hidden

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

1,081 files changed

+8904
-11808
lines changed

src/runtime/docs/design/datacontracts/contract-descriptor.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,17 @@ a JSON integer constant.
8686
"s_pThreadStore": [ 0 ], // indirect from pointer data offset 0
8787
"RuntimeID": "win-x64" // string value
8888
},
89+
"sub-descriptors":
90+
{
91+
"GCDescriptor": [ 1 ]
92+
},
8993
"contracts": {"Thread": 1, "GCHandle": 1, "ThreadStore": 1}
9094
}
9195
```
9296

9397
## Contract symbol
9498

95-
To aid in discovery, the contract descriptor should be exported by the module hosting the .NET
99+
To aid in discovery, the main contract descriptor should be exported by the module hosting the .NET
96100
runtime with the name `DotNetRuntimeContractDescriptor` using the C symbol naming conventions of the
97101
target platform.
98102

src/runtime/docs/design/datacontracts/data_descriptor.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ endianness. The types `nint`, `nuint` and `pointer` have target architecture po
3131
The data descriptor consists of:
3232
* a collection of type structure descriptors
3333
* a collection of global value descriptors
34+
* an optional collection of pointers to sub-descriptors
3435

3536
## Types
3637

@@ -92,6 +93,15 @@ The value must be an integral constant within the range of its type. Signed val
9293
natural encoding. Pointer values need not be aligned and need not point to addressable target
9394
memory.
9495

96+
## Sub-descriptor descriptors
97+
98+
Each sub-descriptor descriptor is effectively a global with a type of `pointer`. They will consist of:
99+
* a name
100+
* a pointer value
101+
102+
If the value is non-null, the pointer points to another [contract descriptor](contract-descriptor.md#contract-descriptor-1).
103+
104+
When parsing a data descriptor with sub-descriptors each sub-descriptor should be parsed then its type, global, and contract values should be merged in. If any conflicts arise when merging in sub-descriptor data, this is an error and behavior is undefined.
95105

96106
## Physical descriptors
97107

@@ -129,6 +139,7 @@ The toplevel dictionary will contain:
129139
* optional `"baseline": "BASELINE_ID"` see below
130140
* `"types": TYPES_DESCRIPTOR` see below
131141
* `"globals": GLOBALS_DESCRIPTOR` see below
142+
* optional `"sub-descriptors": SUB_DESCRIPTORS_DESCRIPTOR` see below
132143

133144
Additional toplevel keys may be present. For example, the in-memory data descriptor will contain a
134145
`"contracts"` key (see [contract descriptor](./contract_descriptor.md#Compatible_contracts)) for the
@@ -233,7 +244,9 @@ Note that a two element array is unambiguously "type and value", whereas a one-e
233244
unambiguously "indirect value".
234245

235246

236-
**Both formats**
247+
### Sub-descriptor Values
248+
249+
Sub-descriptor values will be an additional array, with the same specification as [global values](#Global-values) with the exception that the only valid value type is a `pointer`.
237250

238251
#### Specification Appendix
239252

@@ -284,7 +297,7 @@ string. For pointers, the address can be stored at a known offset in an in-proc
284297
array of pointers and the offset written into the constant JSON string.
285298

286299
The indirection array is not part of the data descriptor spec. It is part of the [contract
287-
descriptor](./contract_descriptor.md#Contract_descriptor).
300+
descriptor](./contract-descriptor.md#Contract_descriptor).
288301

289302

290303
## Example
@@ -345,6 +358,10 @@ The following is an example of an in-memory descriptor that references the above
345358
"FEATURE_COMINTEROP": 0,
346359
"s_pThreadStore": [ 0 ], // indirect from aux data offset 0
347360
"RuntimeID": "windows-x64"
361+
},
362+
"sub-descriptors":
363+
{
364+
"GC": [ 1 ] // indirect from aux data offset 1
348365
}
349366
}
350367
```

src/runtime/docs/design/datacontracts/datacontracts_design.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ More details are provided in the [data descriptor spec](./data_descriptor.md).
2626

2727
#### Global Values
2828

29-
Global values which can be either primitive integer constants or pointers.
29+
Global values which can be either primitive integer constants, pointers, or strings.
3030
All global values have a string describing their name, a type, and a value of one of the above types.
3131

3232
#### Data Structure Layout
@@ -41,6 +41,10 @@ The determinate size of a structure may be larger than the sum of the sizes of t
4141
in the data descriptor (that is, the data descriptor does not include every field and may not
4242
include padding bytes).
4343

44+
#### (Optional) Sub-descriptor pointers
45+
46+
Sub-descriptors are special global values which contain a pointer to another data descriptor. These are used when data definitions are not known by the runtime at compile time but may be known by an external component. In that case the data descriptor defers to the external component to describe its data.
47+
4448
### Compatible Contract
4549

4650
Each compatible contract is described by a string naming the contract, and a uint32 version. It is an ERROR if multiple versions of a contract are specified in the contract descriptor.

src/runtime/docs/workflow/testing/coreclr/testing.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,12 @@ Some tests need to be run in their own process as they interact with global proc
145145

146146
Sometimes you may want to run a test with the least amount of code before actually executing the test. In addition to the merged test runner, we have another runner mode known as the "Standalone" runner. This runner is used by default in tests that require process isolation. This runner consists of a simple `try-catch` around executing each test sequentially, with no test results file or runtime test filtering.
147147

148+
If you have a merged test runner that you want to run in the standalone mode, you can pass `-p:BuildAsStandalone=true` when building the merged test runner. This will build a project that runs all tests sequentially with no filtering or result file support.
149+
148150
To filter tests on a merged test runner built as standalone, you can set the `TestFilter` property, like so: `./dotnet.sh build -c Checked src/tests/path/to/test.csproj -p:TestFilter=SubstringOfFullyQualifiedTestName`. This mechanism supports the same filtering as the runtime test filtering. Using this mechanism will allow you to skip individual test cases at build time instead of at runtime.
149151

152+
The `TestFilter` property can also be used on a runner assembly in the merged runner mode.
153+
150154
#### Building all tests with the Standalone Runner
151155

152156
If you wish to use the Standalone runner described in the [previous section](#the-standalone-test-runner-and-build-time-test-filtering), you can set the `BuildAllTestsAsStandalone` environment variable to `true` when invoking the `./src/tests/build.sh` or `./src/tests/build.cmd` scripts (for example, `export BuildAllTestsAsStandalone=true` or `set BuildAllTestsAsStandalone=true`). This will build all tests that are not directly in a merged test runner's project as separate executable tests and build only the tests that are compiled into the runner directly. If a runner has no tests that are built directly into the runner, then it will be excluded.

src/runtime/eng/Subsets.props

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
<DefaultCoreClrSubsets Condition="'$(TargetRid)' == 'linux-armel'">clr.native+clr.corelib+clr.tools+clr.nativecorelib+clr.packages+clr.nativeaotlibs+clr.crossarchtools</DefaultCoreClrSubsets>
112112
<DefaultCoreClrSubsets Condition="'$(TargetsAndroid)' == 'true'">clr.native+clr.corelib+clr.tools+clr.nativecorelib+clr.packages+clr.nativeaotlibs+clr.crossarchtools</DefaultCoreClrSubsets>
113113
<DefaultCoreClrSubsets Condition="'$(TargetsAppleMobile)' == 'true'">clr.native+clr.corelib+clr.tools+clr.nativecorelib+clr.packages+clr.nativeaotlibs+clr.crossarchtools</DefaultCoreClrSubsets>
114-
<DefaultCoreClrSubsets Condition="'$(TargetsBrowser)' == 'true'">mono.emsdk+clr.native+clr.corelib+clr.tools+clr.packages+clr.crossarchtools</DefaultCoreClrSubsets>
114+
<DefaultCoreClrSubsets Condition="'$(TargetsBrowser)' == 'true'">mono.emsdk+clr.native+clr.corelib+clr.tools+clr.packages+clr.crossarchtools+host.native</DefaultCoreClrSubsets>
115115
<!-- Even on platforms that do not support the CoreCLR runtime, we still want to build ilasm/ildasm. -->
116116
<DefaultCoreClrSubsets Condition="'$(RuntimeFlavor)' != 'CoreCLR'">clr.iltools+clr.packages</DefaultCoreClrSubsets>
117117

@@ -509,6 +509,7 @@
509509
<!-- Direct references to cDAC projects for packing -->
510510
<ProjectToBuild Include="$(SharedNativeRoot)managed\cdac\Microsoft.Diagnostics.DataContractReader\Microsoft.Diagnostics.DataContractReader.csproj;
511511
$(SharedNativeRoot)managed\cdac\Microsoft.Diagnostics.DataContractReader.Abstractions\Microsoft.Diagnostics.DataContractReader.Abstractions.csproj;
512+
$(SharedNativeRoot)managed\cdac\Microsoft.Diagnostics.DataContractReader.Legacy\Microsoft.Diagnostics.DataContractReader.Legacy.csproj;
512513
$(SharedNativeRoot)managed\cdac\Microsoft.Diagnostics.DataContractReader.Contracts\Microsoft.Diagnostics.DataContractReader.Contracts.csproj" Category="tools" Condition="'$(DotNetBuildSourceOnly)' != 'true'" />
513514
</ItemGroup>
514515

@@ -590,22 +591,6 @@
590591
<ProjectToBuild Include="$(MonoProjectRoot)\wasm\workloads.proj" Category="mono" />
591592
</ItemGroup>
592593

593-
<!-- Host sets -->
594-
<ItemGroup Condition="$(_subset.Contains('+host.native+'))">
595-
<CorehostProjectToBuild Include="$(SharedNativeRoot)corehost\corehost.proj" />
596-
<ProjectToBuild Include="@(CorehostProjectToBuild)" AdditionalProperties="$(TargetCxxLibraryProperties)" Category="host" />
597-
</ItemGroup>
598-
599-
<ItemGroup Condition="$(_subset.Contains('+host.tools+'))">
600-
<ManagedProjectToBuild Include="$(InstallerProjectRoot)managed\**\*.csproj" />
601-
<ProjectToBuild Include="@(ManagedProjectToBuild)" BuildInParallel="true" Category="host" />
602-
</ItemGroup>
603-
604-
<ItemGroup Condition="$(_subset.Contains('+host.pkg+'))">
605-
<PkgprojProjectToBuild Include="$(InstallerProjectRoot)pkg\projects\host-packages.proj" />
606-
<ProjectToBuild Include="@(PkgprojProjectToBuild)" Category="host" />
607-
</ItemGroup>
608-
609594
<!-- Libraries sets -->
610595
<ItemGroup Condition="$(_subset.Contains('+libs.native+'))">
611596
<ProjectToBuild Include="$(SharedNativeRoot)libs\build-native.proj" Category="libs" />
@@ -632,6 +617,23 @@
632617
<ProjectToBuild Include="$(WasiProjectRoot)wasi.proj" Category="mono" />
633618
</ItemGroup>
634619

620+
<!-- Host sets -->
621+
<ItemGroup Condition="$(_subset.Contains('+host.native+'))">
622+
<CorehostProjectToBuild Include="$(SharedNativeRoot)corehost\corehost.proj" />
623+
<ProjectToBuild Include="@(CorehostProjectToBuild)" AdditionalProperties="$(TargetCxxLibraryProperties)" Category="host" />
624+
</ItemGroup>
625+
626+
<ItemGroup Condition="$(_subset.Contains('+host.tools+'))">
627+
<ManagedProjectToBuild Include="$(InstallerProjectRoot)managed\**\*.csproj" />
628+
<ProjectToBuild Include="@(ManagedProjectToBuild)" BuildInParallel="true" Category="host" />
629+
</ItemGroup>
630+
631+
<ItemGroup Condition="$(_subset.Contains('+host.pkg+'))">
632+
<PkgprojProjectToBuild Include="$(InstallerProjectRoot)pkg\projects\host-packages.proj" />
633+
<ProjectToBuild Include="@(PkgprojProjectToBuild)" Category="host" />
634+
</ItemGroup>
635+
636+
<!-- Libraries test sets -->
635637
<ItemGroup Condition="$(_subset.Contains('+libs.pretest+'))">
636638
<ProjectToBuild Include="$(LibrariesProjectRoot)pretest.proj" Category="libs" />
637639
</ItemGroup>

src/runtime/eng/Version.Details.props

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -40,45 +40,45 @@ This file should be imported by eng/Versions.props
4040
<runtimewinx64MicrosoftNETCoreRuntimeMonoLLVMSdkPackageVersion>19.1.0-alpha.1.25513.1</runtimewinx64MicrosoftNETCoreRuntimeMonoLLVMSdkPackageVersion>
4141
<runtimewinx64MicrosoftNETCoreRuntimeMonoLLVMToolsPackageVersion>19.1.0-alpha.1.25513.1</runtimewinx64MicrosoftNETCoreRuntimeMonoLLVMToolsPackageVersion>
4242
<!-- dotnet/dotnet dependencies -->
43-
<MicrosoftCodeAnalysisPackageVersion>5.3.0-1.25520.104</MicrosoftCodeAnalysisPackageVersion>
44-
<MicrosoftCodeAnalysisAnalyzersPackageVersion>5.3.0-1.25520.104</MicrosoftCodeAnalysisAnalyzersPackageVersion>
45-
<MicrosoftCodeAnalysisCSharpPackageVersion>5.3.0-1.25520.104</MicrosoftCodeAnalysisCSharpPackageVersion>
46-
<MicrosoftCodeAnalysisNetAnalyzersPackageVersion>10.0.100-rc.2.25520.104</MicrosoftCodeAnalysisNetAnalyzersPackageVersion>
47-
<MicrosoftDotNetApiCompatTaskPackageVersion>10.0.100-rc.2.25520.104</MicrosoftDotNetApiCompatTaskPackageVersion>
48-
<MicrosoftDotNetArcadeSdkPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetArcadeSdkPackageVersion>
49-
<MicrosoftDotNetBuildTasksArchivesPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetBuildTasksArchivesPackageVersion>
50-
<MicrosoftDotNetBuildTasksFeedPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetBuildTasksFeedPackageVersion>
51-
<MicrosoftDotNetBuildTasksInstallersPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetBuildTasksInstallersPackageVersion>
52-
<MicrosoftDotNetBuildTasksPackagingPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetBuildTasksPackagingPackageVersion>
53-
<MicrosoftDotNetBuildTasksTargetFrameworkPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetBuildTasksTargetFrameworkPackageVersion>
54-
<MicrosoftDotNetBuildTasksTemplatingPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetBuildTasksTemplatingPackageVersion>
55-
<MicrosoftDotNetBuildTasksWorkloadsPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetBuildTasksWorkloadsPackageVersion>
56-
<MicrosoftDotNetCecilPackageVersion>0.11.5-alpha.25520.104</MicrosoftDotNetCecilPackageVersion>
57-
<MicrosoftDotNetCodeAnalysisPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetCodeAnalysisPackageVersion>
58-
<MicrosoftDotNetGenAPIPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetGenAPIPackageVersion>
59-
<MicrosoftDotNetGenFacadesPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetGenFacadesPackageVersion>
60-
<MicrosoftDotNetHelixSdkPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetHelixSdkPackageVersion>
61-
<MicrosoftDotNetPackageTestingPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetPackageTestingPackageVersion>
62-
<MicrosoftDotNetRemoteExecutorPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetRemoteExecutorPackageVersion>
63-
<MicrosoftDotNetSharedFrameworkSdkPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetSharedFrameworkSdkPackageVersion>
64-
<MicrosoftDotNetXliffTasksPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetXliffTasksPackageVersion>
65-
<MicrosoftDotNetXUnitAssertPackageVersion>2.9.3-beta.25520.104</MicrosoftDotNetXUnitAssertPackageVersion>
66-
<MicrosoftDotNetXUnitConsoleRunnerPackageVersion>2.9.3-beta.25520.104</MicrosoftDotNetXUnitConsoleRunnerPackageVersion>
67-
<MicrosoftDotNetXUnitExtensionsPackageVersion>11.0.0-beta.25520.104</MicrosoftDotNetXUnitExtensionsPackageVersion>
68-
<MicrosoftNetCompilersToolsetPackageVersion>5.3.0-1.25520.104</MicrosoftNetCompilersToolsetPackageVersion>
69-
<MicrosoftNETSdkILPackageVersion>10.0.0-rc.1.25520.104</MicrosoftNETSdkILPackageVersion>
70-
<MicrosoftNETWorkloadEmscriptenCurrentManifest100100TransportPackageVersion>10.0.100-rc.2.25520.104</MicrosoftNETWorkloadEmscriptenCurrentManifest100100TransportPackageVersion>
71-
<MicrosoftNETCoreAppRefPackageVersion>10.0.0-rc.1.25520.104</MicrosoftNETCoreAppRefPackageVersion>
72-
<MicrosoftNETCoreILAsmPackageVersion>10.0.0-rc.1.25520.104</MicrosoftNETCoreILAsmPackageVersion>
73-
<NuGetFrameworksPackageVersion>7.0.0-preview.1.2104</NuGetFrameworksPackageVersion>
74-
<NuGetPackagingPackageVersion>7.0.0-preview.1.2104</NuGetPackagingPackageVersion>
75-
<NuGetProjectModelPackageVersion>7.0.0-preview.1.2104</NuGetProjectModelPackageVersion>
76-
<NuGetVersioningPackageVersion>7.0.0-preview.1.2104</NuGetVersioningPackageVersion>
77-
<runtimenativeSystemIOPortsPackageVersion>10.0.0-rc.1.25520.104</runtimenativeSystemIOPortsPackageVersion>
78-
<SystemCommandLinePackageVersion>2.0.0-rc.1.25520.104</SystemCommandLinePackageVersion>
79-
<SystemReflectionMetadataPackageVersion>10.0.0-rc.1.25520.104</SystemReflectionMetadataPackageVersion>
80-
<SystemReflectionMetadataLoadContextPackageVersion>10.0.0-rc.1.25520.104</SystemReflectionMetadataLoadContextPackageVersion>
81-
<SystemTextJsonPackageVersion>10.0.0-rc.1.25520.104</SystemTextJsonPackageVersion>
43+
<MicrosoftCodeAnalysisPackageVersion>5.3.0-1.25523.109</MicrosoftCodeAnalysisPackageVersion>
44+
<MicrosoftCodeAnalysisAnalyzersPackageVersion>5.3.0-1.25523.109</MicrosoftCodeAnalysisAnalyzersPackageVersion>
45+
<MicrosoftCodeAnalysisCSharpPackageVersion>5.3.0-1.25523.109</MicrosoftCodeAnalysisCSharpPackageVersion>
46+
<MicrosoftCodeAnalysisNetAnalyzersPackageVersion>10.0.100-rc.2.25523.109</MicrosoftCodeAnalysisNetAnalyzersPackageVersion>
47+
<MicrosoftDotNetApiCompatTaskPackageVersion>10.0.100-rc.2.25523.109</MicrosoftDotNetApiCompatTaskPackageVersion>
48+
<MicrosoftDotNetArcadeSdkPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetArcadeSdkPackageVersion>
49+
<MicrosoftDotNetBuildTasksArchivesPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetBuildTasksArchivesPackageVersion>
50+
<MicrosoftDotNetBuildTasksFeedPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetBuildTasksFeedPackageVersion>
51+
<MicrosoftDotNetBuildTasksInstallersPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetBuildTasksInstallersPackageVersion>
52+
<MicrosoftDotNetBuildTasksPackagingPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetBuildTasksPackagingPackageVersion>
53+
<MicrosoftDotNetBuildTasksTargetFrameworkPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetBuildTasksTargetFrameworkPackageVersion>
54+
<MicrosoftDotNetBuildTasksTemplatingPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetBuildTasksTemplatingPackageVersion>
55+
<MicrosoftDotNetBuildTasksWorkloadsPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetBuildTasksWorkloadsPackageVersion>
56+
<MicrosoftDotNetCecilPackageVersion>0.11.5-alpha.25523.109</MicrosoftDotNetCecilPackageVersion>
57+
<MicrosoftDotNetCodeAnalysisPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetCodeAnalysisPackageVersion>
58+
<MicrosoftDotNetGenAPIPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetGenAPIPackageVersion>
59+
<MicrosoftDotNetGenFacadesPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetGenFacadesPackageVersion>
60+
<MicrosoftDotNetHelixSdkPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetHelixSdkPackageVersion>
61+
<MicrosoftDotNetPackageTestingPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetPackageTestingPackageVersion>
62+
<MicrosoftDotNetRemoteExecutorPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetRemoteExecutorPackageVersion>
63+
<MicrosoftDotNetSharedFrameworkSdkPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetSharedFrameworkSdkPackageVersion>
64+
<MicrosoftDotNetXliffTasksPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetXliffTasksPackageVersion>
65+
<MicrosoftDotNetXUnitAssertPackageVersion>2.9.3-beta.25523.109</MicrosoftDotNetXUnitAssertPackageVersion>
66+
<MicrosoftDotNetXUnitConsoleRunnerPackageVersion>2.9.3-beta.25523.109</MicrosoftDotNetXUnitConsoleRunnerPackageVersion>
67+
<MicrosoftDotNetXUnitExtensionsPackageVersion>11.0.0-beta.25523.109</MicrosoftDotNetXUnitExtensionsPackageVersion>
68+
<MicrosoftNetCompilersToolsetPackageVersion>5.3.0-1.25523.109</MicrosoftNetCompilersToolsetPackageVersion>
69+
<MicrosoftNETSdkILPackageVersion>10.0.0-rc.1.25523.109</MicrosoftNETSdkILPackageVersion>
70+
<MicrosoftNETWorkloadEmscriptenCurrentManifest100100TransportPackageVersion>10.0.100-rc.2.25523.109</MicrosoftNETWorkloadEmscriptenCurrentManifest100100TransportPackageVersion>
71+
<MicrosoftNETCoreAppRefPackageVersion>10.0.0-rc.1.25523.109</MicrosoftNETCoreAppRefPackageVersion>
72+
<MicrosoftNETCoreILAsmPackageVersion>10.0.0-rc.1.25523.109</MicrosoftNETCoreILAsmPackageVersion>
73+
<NuGetFrameworksPackageVersion>7.0.0-preview.1.2409</NuGetFrameworksPackageVersion>
74+
<NuGetPackagingPackageVersion>7.0.0-preview.1.2409</NuGetPackagingPackageVersion>
75+
<NuGetProjectModelPackageVersion>7.0.0-preview.1.2409</NuGetProjectModelPackageVersion>
76+
<NuGetVersioningPackageVersion>7.0.0-preview.1.2409</NuGetVersioningPackageVersion>
77+
<runtimenativeSystemIOPortsPackageVersion>10.0.0-rc.1.25523.109</runtimenativeSystemIOPortsPackageVersion>
78+
<SystemCommandLinePackageVersion>2.0.0-rc.1.25523.109</SystemCommandLinePackageVersion>
79+
<SystemReflectionMetadataPackageVersion>10.0.0-rc.1.25523.109</SystemReflectionMetadataPackageVersion>
80+
<SystemReflectionMetadataLoadContextPackageVersion>10.0.0-rc.1.25523.109</SystemReflectionMetadataLoadContextPackageVersion>
81+
<SystemTextJsonPackageVersion>10.0.0-rc.1.25523.109</SystemTextJsonPackageVersion>
8282
<!-- dotnet/runtime-assets dependencies -->
8383
<MicrosoftDotNetCilStripSourcesPackageVersion>11.0.0-beta.25467.3</MicrosoftDotNetCilStripSourcesPackageVersion>
8484
<MicrosoftNETHostModelTestDataPackageVersion>11.0.0-beta.25467.3</MicrosoftNETHostModelTestDataPackageVersion>

0 commit comments

Comments
 (0)