Skip to content

Commit f65fdc0

Browse files
committed
Merge branch 'main' into browser_modularize_corerun
# Conflicts: # src/coreclr/hosts/corerun/CMakeLists.txt # src/native/libs/System.Native.Browser/native/cross-linked.ts # src/native/libs/System.Native.Browser/utils/strings.ts
2 parents c46d1db + 74fba8a commit f65fdc0

File tree

214 files changed

+2694
-2382
lines changed

Some content is hidden

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

214 files changed

+2694
-2382
lines changed

.github/workflows/jit-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
os:
1616
- name: linux
1717
image: ubuntu-latest
18-
container: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-amd64
18+
container: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net11.0-cross-amd64
1919
extension: '.sh'
2020
cross: '--cross'
2121
rootfs: '/crossrootfs/x64'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ We welcome contributions! Many people all over the world have helped make this p
3737

3838
## Reporting security issues and security bugs
3939

40-
Security issues and bugs should be reported privately, via email, to the Microsoft Security Response Center (MSRC) <secure@microsoft.com>. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Further information, including the MSRC PGP key, can be found in the [Security TechCenter](https://www.microsoft.com/msrc/faqs-report-an-issue). You can also find these instructions in this repo's [Security doc](SECURITY.md).
40+
Security issues and bugs should be reported privately to the Microsoft Security Response Center (MSRC) via the [MSRC Researcher Portal](https://msrc.microsoft.com/report/vulnerability/new). You should receive a response within 24 hours. Further information can be found in the [Security TechCenter](https://www.microsoft.com/msrc/faqs-report-an-issue). You can also find these instructions in this repo's [Security doc](SECURITY.md).
4141

4242
Also see info about related [Microsoft .NET Bounty Program](https://www.microsoft.com/msrc/bounty-dot-net-core).
4343

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ The .NET Core and ASP.NET Core support policy, including supported versions can
66

77
## Reporting a Vulnerability
88

9-
Security issues and bugs should be reported privately to the Microsoft Security Response Center (MSRC), either by emailing secure@microsoft.com or via the portal at https://msrc.microsoft.com.
9+
Security issues and bugs should be reported privately to the Microsoft Security Response Center (MSRC), via the [MSRC Researcher Portal](https://msrc.microsoft.com/report/vulnerability/new).
1010
You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your
11-
original message. Further information, including the MSRC PGP key, can be found in the [MSRC Report an Issue FAQ](https://www.microsoft.com/en-us/msrc/faqs-report-an-issue).
11+
original message. Further information can be found in the [MSRC Report an Issue FAQ](https://www.microsoft.com/en-us/msrc/faqs-report-an-issue).
1212

1313
Reports via MSRC may qualify for the .NET Core Bug Bounty. Details of the .NET Core Bug Bounty including terms and conditions are at [https://aka.ms/corebounty](https://aka.ms/corebounty).
1414

docs/coding-guidelines/adding-api-guidelines.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,27 @@ should be added to `net10.0`. [More Information on TargetFrameworks](https://lea
4444

4545
New public APIs must be documented with triple-slash comments on top of them. Visual Studio automatically generates the structure for you when you type `///`.
4646

47+
[API writing guidelines](https://github.com/dotnet/dotnet-api-docs/wiki) has information about language and proper style for writing API documentation.
4748
If your new API or the APIs it calls throw any exceptions, those need to be manually documented by adding the `<exception></exception>` elements.
4849

49-
After your change is merged, we will eventually port them to the dotnet-api-docs repo, where we will review them for language and proper style (For more information, see the [API writing guidelines](https://github.com/dotnet/dotnet-api-docs/wiki)).
50+
After your change is merged, we will eventually port them to the [dotnet-api-docs](https://github.com/dotnet/dotnet-api-docs) repo. The tools used for this port live in [api-docs-sync](https://github.com/dotnet/api-docs-sync) repo. Once the dotnet-api-docs change
51+
is merged, your comments will start showing up in the official API documentation at https://learn.microsoft.com, and later they'll appear in IntelliSense
52+
in Visual Studio and Visual Studio Code.
5053

51-
Once the dotnet-api-docs change is merged, your comments will start showing up in the official API documentation at https://learn.microsoft.com, and later they'll appear in IntelliSense in Visual Studio and Visual Studio Code.
52-
Once the documentation is official, any subsequent updates to it must be made directly in https://github.com/dotnet/dotnet-api-docs/. It's fine to make updates to the triple slash comments later, they just won't automatically flow into the official docs.
54+
The rest of the documentation workflow depends on whether the assembly has the `UseCompilerGeneratedDocXmlFile` property set in its project file:
55+
56+
**For libraries without this property (or with it set to `true`, which is the default):**
57+
- Source comments in this repo are the source of truth for documentation.
58+
- Triple-slash comments in source code are synced to dotnet-api-docs periodically (every preview).
59+
- More recently introduced libraries typically follow this workflow.
60+
61+
**For libraries with `<UseCompilerGeneratedDocXmlFile>false</UseCompilerGeneratedDocXmlFile>`:**
62+
- The [dotnet-api-docs](https://github.com/dotnet/dotnet-api-docs) repo is the source of truth for documentation.
63+
- Triple-slash comments in source code are synced to dotnet-api-docs **only once** for newly introduced APIs. After the initial sync, all subsequent documentation
64+
updates must be made directly in the dotnet-api-docs repo.
65+
- It's fine to make updates to the triple-slash comments later to aid local development, they just won't automatically flow into the official docs. Copilot can help with porting small changes
66+
in triple-slash comments to dotnet-api-docs. [PortToDocs](https://github.com/dotnet/api-docs-sync/blob/main/docs/PortToDocs.md) tool works better for ports of large changes.
67+
- Older libraries typically follow this workflow. Libraries in this mode can work towards a better workflow in the future by using api-docs-sync tools to port back docs to source, then removing the `UseCompilerGeneratedDocXmlFile` property.
5368

5469
## FAQ
5570

docs/coding-guidelines/project-guidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ The `UseCompilerGeneratedDocXmlFile` property controls how XML documentation fil
192192
</PropertyGroup>
193193
```
194194

195-
Setting `UseCompilerGeneratedDocXmlFile` to `false` is typically done for stable APIs where manually curated documentation exists that should be preferred over compiler-generated documentation.
195+
See the [Documentation](adding-api-guidelines.md#documentation) section in the API guidelines for more details about the documentation workflow.
196196

197197
If a project sets this to `false` but the Microsoft.Private.Intellisense package doesn't have documentation for the assembly, a warning is shown suggesting to remove the property to let the compiler generate the file.
198198

docs/workflow/building/coreclr/wasm.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,9 @@ In config below please replace `/path/to/runtime/` by a **absolute unix path** t
128128
"env": {
129129
"CORE_ROOT":"/path/to/runtime/artifacts/bin/coreclr/browser.wasm.Debug/IL/"
130130
},
131+
"runtimeArgs": [
132+
"--stack-trace-limit=1000"
133+
],
131134
"args": [
132135
"/path/to/runtime/artifacts/bin/coreclr/browser.wasm.Debug/IL/helloworld.dll"
133136
],
@@ -140,6 +143,9 @@ In config below please replace `/path/to/runtime/` by a **absolute unix path** t
140143
"skipFiles": [
141144
"<node_internals>/**"
142145
],
146+
"runtimeArgs": [
147+
"--stack-trace-limit=1000"
148+
],
143149
"args": [
144150
"HelloWorld.dll"
145151
],

eng/CodeAnalysis.src.globalconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,21 @@ dotnet_diagnostic.BCL0015.severity = none
2121
# BCL0020: Invalid SR.Format call
2222
dotnet_diagnostic.BCL0020.severity = warning
2323

24+
# SYSLIB1040: Invalid GeneratedRegexAttribute usage
25+
dotnet_diagnostic.SYSLIB1040.severity = error
26+
27+
# SYSLIB1041: Invalid GeneratedRegexAttribute usage
28+
dotnet_diagnostic.SYSLIB1041.severity = error
29+
30+
# SYSLIB1042: Invalid GeneratedRegexAttribute usage
31+
dotnet_diagnostic.SYSLIB1042.severity = error
32+
33+
# SYSLIB1043: Invalid GeneratedRegexAttribute usage
34+
dotnet_diagnostic.SYSLIB1043.severity = error
35+
36+
# SYSLIB1044: Regex generator limitation reached.
37+
dotnet_diagnostic.SYSLIB1044.severity = warning
38+
2439
# SYSLIB1045: Convert to 'GeneratedRegexAttribute'.
2540
dotnet_diagnostic.SYSLIB1045.severity = warning
2641

eng/CodeAnalysis.test.globalconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,21 @@ dotnet_diagnostic.BCL0015.severity = none
2121
# BCL0020: Invalid SR.Format call
2222
dotnet_diagnostic.BCL0020.severity = none
2323

24+
# SYSLIB1040: Invalid GeneratedRegexAttribute usage
25+
dotnet_diagnostic.SYSLIB1040.severity = error
26+
27+
# SYSLIB1041: Invalid GeneratedRegexAttribute usage
28+
dotnet_diagnostic.SYSLIB1041.severity = error
29+
30+
# SYSLIB1042: Invalid GeneratedRegexAttribute usage
31+
dotnet_diagnostic.SYSLIB1042.severity = error
32+
33+
# SYSLIB1043: Invalid GeneratedRegexAttribute usage
34+
dotnet_diagnostic.SYSLIB1043.severity = error
35+
36+
# SYSLIB1044: Regex generator limitation reached.
37+
dotnet_diagnostic.SYSLIB1044.severity = none
38+
2439
# SYSLIB1045: Convert to 'GeneratedRegexAttribute'.
2540
dotnet_diagnostic.SYSLIB1045.severity = none
2641

eng/Subsets.props

Lines changed: 1 addition & 1 deletion
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+host.native</DefaultCoreClrSubsets>
114+
<DefaultCoreClrSubsets Condition="'$(TargetsBrowser)' == 'true'">mono.emsdk+clr.native+clr.corelib+clr.nativecorelib+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

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.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>
43+
<MicrosoftCodeAnalysisPackageVersion>5.3.0-1.25528.108</MicrosoftCodeAnalysisPackageVersion>
44+
<MicrosoftCodeAnalysisAnalyzersPackageVersion>5.3.0-1.25528.108</MicrosoftCodeAnalysisAnalyzersPackageVersion>
45+
<MicrosoftCodeAnalysisCSharpPackageVersion>5.3.0-1.25528.108</MicrosoftCodeAnalysisCSharpPackageVersion>
46+
<MicrosoftCodeAnalysisNetAnalyzersPackageVersion>10.0.100-rc.2.25528.108</MicrosoftCodeAnalysisNetAnalyzersPackageVersion>
47+
<MicrosoftDotNetApiCompatTaskPackageVersion>10.0.100-rc.2.25528.108</MicrosoftDotNetApiCompatTaskPackageVersion>
48+
<MicrosoftDotNetArcadeSdkPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetArcadeSdkPackageVersion>
49+
<MicrosoftDotNetBuildTasksArchivesPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetBuildTasksArchivesPackageVersion>
50+
<MicrosoftDotNetBuildTasksFeedPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetBuildTasksFeedPackageVersion>
51+
<MicrosoftDotNetBuildTasksInstallersPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetBuildTasksInstallersPackageVersion>
52+
<MicrosoftDotNetBuildTasksPackagingPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetBuildTasksPackagingPackageVersion>
53+
<MicrosoftDotNetBuildTasksTargetFrameworkPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetBuildTasksTargetFrameworkPackageVersion>
54+
<MicrosoftDotNetBuildTasksTemplatingPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetBuildTasksTemplatingPackageVersion>
55+
<MicrosoftDotNetBuildTasksWorkloadsPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetBuildTasksWorkloadsPackageVersion>
56+
<MicrosoftDotNetCecilPackageVersion>0.11.5-alpha.25528.108</MicrosoftDotNetCecilPackageVersion>
57+
<MicrosoftDotNetCodeAnalysisPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetCodeAnalysisPackageVersion>
58+
<MicrosoftDotNetGenAPIPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetGenAPIPackageVersion>
59+
<MicrosoftDotNetGenFacadesPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetGenFacadesPackageVersion>
60+
<MicrosoftDotNetHelixSdkPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetHelixSdkPackageVersion>
61+
<MicrosoftDotNetPackageTestingPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetPackageTestingPackageVersion>
62+
<MicrosoftDotNetRemoteExecutorPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetRemoteExecutorPackageVersion>
63+
<MicrosoftDotNetSharedFrameworkSdkPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetSharedFrameworkSdkPackageVersion>
64+
<MicrosoftDotNetXliffTasksPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetXliffTasksPackageVersion>
65+
<MicrosoftDotNetXUnitAssertPackageVersion>2.9.3-beta.25528.108</MicrosoftDotNetXUnitAssertPackageVersion>
66+
<MicrosoftDotNetXUnitConsoleRunnerPackageVersion>2.9.3-beta.25528.108</MicrosoftDotNetXUnitConsoleRunnerPackageVersion>
67+
<MicrosoftDotNetXUnitExtensionsPackageVersion>11.0.0-beta.25528.108</MicrosoftDotNetXUnitExtensionsPackageVersion>
68+
<MicrosoftNetCompilersToolsetPackageVersion>5.3.0-1.25528.108</MicrosoftNetCompilersToolsetPackageVersion>
69+
<MicrosoftNETSdkILPackageVersion>10.0.0-rc.1.25528.108</MicrosoftNETSdkILPackageVersion>
70+
<MicrosoftNETWorkloadEmscriptenCurrentManifest100100TransportPackageVersion>10.0.100-rc.2.25528.108</MicrosoftNETWorkloadEmscriptenCurrentManifest100100TransportPackageVersion>
71+
<MicrosoftNETCoreAppRefPackageVersion>10.0.0-rc.1.25528.108</MicrosoftNETCoreAppRefPackageVersion>
72+
<MicrosoftNETCoreILAsmPackageVersion>10.0.0-rc.1.25528.108</MicrosoftNETCoreILAsmPackageVersion>
73+
<NuGetFrameworksPackageVersion>7.0.0-preview.1.2908</NuGetFrameworksPackageVersion>
74+
<NuGetPackagingPackageVersion>7.0.0-preview.1.2908</NuGetPackagingPackageVersion>
75+
<NuGetProjectModelPackageVersion>7.0.0-preview.1.2908</NuGetProjectModelPackageVersion>
76+
<NuGetVersioningPackageVersion>7.0.0-preview.1.2908</NuGetVersioningPackageVersion>
77+
<runtimenativeSystemIOPortsPackageVersion>10.0.0-rc.1.25528.108</runtimenativeSystemIOPortsPackageVersion>
78+
<SystemCommandLinePackageVersion>2.0.0-rc.1.25528.108</SystemCommandLinePackageVersion>
79+
<SystemReflectionMetadataPackageVersion>10.0.0-rc.1.25528.108</SystemReflectionMetadataPackageVersion>
80+
<SystemReflectionMetadataLoadContextPackageVersion>10.0.0-rc.1.25528.108</SystemReflectionMetadataLoadContextPackageVersion>
81+
<SystemTextJsonPackageVersion>10.0.0-rc.1.25528.108</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)