From 721658d101d0c5cf7216d2ca3108f096ade5f1f2 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Thu, 20 Nov 2025 19:08:19 +0100 Subject: [PATCH 01/43] Branding to 11.0.0 --- eng/Versions.props | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index 32eb6377308ad4..a4e750b85188b1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,9 +2,9 @@ - 10.0.0 + 11.0.0 - 10 + 11 0 0 $(MajorVersion).0.100 @@ -12,7 +12,7 @@ 8.0.$([MSBuild]::Add($([System.Version]::Parse('$(PackageVersionNet9)').Build),11)) 7.0.20 6.0.36 - rc + alpha 1 false From 59bc5513e4def37843431a24ae36e8ebde70d12c Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Thu, 20 Nov 2025 19:52:41 +0100 Subject: [PATCH 02/43] Target net11.0 --- Directory.Build.props | 12 +- .../adding-api-guidelines.md | 4 +- docs/coding-guidelines/project-guidelines.md | 4 +- docs/project/dogfooding.md | 10 +- docs/workflow/building/coreclr/nativeaot.md | 2 +- docs/workflow/building/coreclr/wasm.md | 4 +- docs/workflow/building/libraries/README.md | 2 +- .../building/libraries/cross-building.md | 50 +- docs/workflow/ci/triaging-failures.md | 2 +- .../debugging/coreclr/debugging-runtime.md | 4 +- docs/workflow/testing/host/testing.md | 4 +- docs/workflow/testing/libraries/testing.md | 2 +- .../testing/using-dev-shipping-packages.md | 10 +- .../using-your-build-with-installed-sdk.md | 12 +- eng/Signing.props | 2 +- eng/build.ps1 | 4 +- eng/build.sh | 4 +- .../crossgen2-comparison-build-job.yml | 2 +- src/coreclr/nativeaot/docs/android-bionic.md | 2 +- src/coreclr/nativeaot/docs/compiling.md | 8 +- src/coreclr/scripts/superpmi_aspnet2.py | 2 +- src/coreclr/scripts/superpmi_benchmarks.py | 2 +- .../tests/StaticTestGenerator/README.md | 10 +- src/libraries/Fuzzing/DotnetFuzzing/run.bat | 2 +- .../src/CompatibilitySuppressions.xml | 2 +- .../src/CompatibilitySuppressions.xml | 2 - .../CompatibilitySuppressions.WasmThreads.xml | 4 +- .../src/CompatibilitySuppressions.xml | 16 +- ...iCompatBaseline.NetCoreAppLatestStable.xml | 1002 ---------------- .../ApiCompatBaseline.netstandard2.0.xml | 1052 ++++++++--------- .../ApiCompatBaseline.netstandard2.1.xml | 334 +++--- .../apple/build/AppleBuild.LocalBuild.props | 4 +- .../Sdk/AutoImport.props | 2 +- .../Sdk/AutoImport.props | 2 +- ...ad.Mono.Toolchain.Current.Manifest.pkgproj | 2 +- src/mono/wasm/build/WasmApp.LocalBuild.props | 2 +- ...t.NET.Runtime.WebAssembly.Templates.csproj | 6 +- .../browser/.template.config/template.json | 10 +- .../console/.template.config/template.json | 10 +- .../.template.config/template.json | 10 +- src/native/package.json | 4 +- .../src/linker/CompatibilitySuppressions.xml | 6 - 42 files changed, 810 insertions(+), 1820 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 84877200392e0c..2bdf2df55753b8 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -57,7 +57,7 @@ - 10.0 + 11.0 .NETCoreApp $(NetCoreAppCurrentIdentifier),Version=v$(NetCoreAppCurrentVersion) Microsoft.NETCore.App @@ -65,11 +65,11 @@ net$(NetCoreAppCurrentVersion) - net9.0 - $(NetCoreAppCurrent) + + - net8.0 + net10.0 $(NetCoreAppCurrent) - net10.0 + + net11.0 9.0.0-preview.5.22224.3 @@ -147,8 +147,8 @@ make it self-contained by adding a RuntimeIdentifier (RID). ```XML Exe - - net10.0 + + net11.0 9.0.0-preview.5.22224.3 @@ -159,7 +159,7 @@ make it self-contained by adding a RuntimeIdentifier (RID). ``` $ dotnet restore $ dotnet publish -$ bin\Debug\net10.0\win-x64\publish\App.exe +$ bin\Debug\net11.0\win-x64\publish\App.exe ``` ### Daily builds table diff --git a/docs/workflow/building/coreclr/nativeaot.md b/docs/workflow/building/coreclr/nativeaot.md index 11d06b89920144..e966dd61dd8601 100644 --- a/docs/workflow/building/coreclr/nativeaot.md +++ b/docs/workflow/building/coreclr/nativeaot.md @@ -33,7 +33,7 @@ The paths to major components can be overridden using `IlcToolsPath`, `IlcSdkPat Run `build[.cmd|.sh] -c Release` from the repo root to build the NativeAOT toolchain packages. The build will place the toolchain packages at `artifacts\packages\Release\Shipping`. To publish your project using these packages: * Add the package directory to your `nuget.config` file. For example, add `` -* Run `dotnet add package Microsoft.DotNet.ILCompiler -v 10.0.0-dev` to add the local package reference to your project. +* Run `dotnet add package Microsoft.DotNet.ILCompiler -v 11.0.0-dev` to add the local package reference to your project. * Run `dotnet publish --packages pkg -r [win-x64|linux-x64|osx-64] -c [Debug|Release]` to publish your project. `--packages pkg` option restores the package into a local directory that is easy to cleanup once you are done. It avoids polluting the global nuget cache with your locally built dev package. ## High Level Overview diff --git a/docs/workflow/building/coreclr/wasm.md b/docs/workflow/building/coreclr/wasm.md index cb9c43c3ea3de5..50fcebe00180b4 100644 --- a/docs/workflow/building/coreclr/wasm.md +++ b/docs/workflow/building/coreclr/wasm.md @@ -64,7 +64,7 @@ You can also run the runtime directly in Node.js: In script below please replace `/path/to/runtime/` by a **absolute unix path** to the actual runtime repo (even on Windows). ```bash -cp ./artifacts/bin/microsoft.netcore.app.runtime.browser-wasm/Debug/runtimes/browser-wasm/lib/net10.0/*.dll ./artifacts/bin/coreclr/browser.wasm.Debug/IL +cp ./artifacts/bin/microsoft.netcore.app.runtime.browser-wasm/Debug/runtimes/browser-wasm/lib/net11.0/*.dll ./artifacts/bin/coreclr/browser.wasm.Debug/IL cp helloworld.dll ./artifacts/bin/coreclr/browser.wasm.Debug/IL cd ./artifacts/bin/coreclr/browser.wasm.Debug/ node ./corerun.js -c /path/to/runtime/artifacts/bin/coreclr/browser.wasm.Debug/IL /path/to/runtime/artifacts/bin/coreclr/browser.wasm.Debug/IL/helloworld.dll @@ -75,7 +75,7 @@ node ./corerun.js -c /path/to/runtime/artifacts/bin/coreclr/browser.wasm.Debug/I You can also run the corehost directly in Node.js: ```bash -cp ./artifacts/bin/microsoft.netcore.app.runtime.browser-wasm/Debug/runtimes/browser-wasm/lib/net10.0/*.dll ./artifacts/bin/coreclr/browser.wasm.Debug/corehost +cp ./artifacts/bin/microsoft.netcore.app.runtime.browser-wasm/Debug/runtimes/browser-wasm/lib/net11.0/*.dll ./artifacts/bin/coreclr/browser.wasm.Debug/corehost cp helloworld.dll ./artifacts/bin/coreclr/browser.wasm.Debug/corehost cd ./artifacts/bin/coreclr/browser.wasm.Debug/corehost node ./main.mjs diff --git a/docs/workflow/building/libraries/README.md b/docs/workflow/building/libraries/README.md index f342fe8e848ed1..618db8bc971b0f 100644 --- a/docs/workflow/building/libraries/README.md +++ b/docs/workflow/building/libraries/README.md @@ -76,7 +76,7 @@ The libraries build has two logical components, the native build which produces The build settings (BuildTargetFramework, TargetOS, Configuration, Architecture) are generally defaulted based on where you are building (i.e. which OS or which architecture) but we have a few shortcuts for the individual properties that can be passed to the build scripts: -- `-framework|-f` identifies the target framework for the build. Possible values include `net10.0` (currently the latest .NET version) or `net481` (the latest .NET Framework version). (msbuild property `BuildTargetFramework`) +- `-framework|-f` identifies the target framework for the build. Possible values include `net11.0` (currently the latest .NET version) or `net481` (the latest .NET Framework version). (msbuild property `BuildTargetFramework`) - `-os` identifies the OS for the build. It defaults to the OS you are running on but possible values include `windows`, `unix`, `linux`, or `osx`. (msbuild property `TargetOS`) - `-configuration|-c Debug|Release` controls the optimization level the compilers use for the build. It defaults to `Debug`. (msbuild property `Configuration`) - `-arch` identifies the architecture for the build. It defaults to `x64` but possible values include `x64`, `x86`, `arm`, or `arm64`. (msbuild property `TargetArchitecture`) diff --git a/docs/workflow/building/libraries/cross-building.md b/docs/workflow/building/libraries/cross-building.md index 422eea3c6944f3..e64f299994fb32 100644 --- a/docs/workflow/building/libraries/cross-building.md +++ b/docs/workflow/building/libraries/cross-building.md @@ -46,30 +46,30 @@ To build native runtime libraries for arm: $ ROOTFS_DIR=`pwd`/.tools/rootfs/arm ./build.sh libs.native --cross --arch arm --librariesConfiguration Release -Build artifacts can be found in `artifacts/bin/native/net10.0---/`: - - $ ls artifacts/bin/native/net10.0-Linux-Release-arm/* - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.Globalization.Native.a - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.Globalization.Native.so - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.Globalization.Native.so.dbg - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.IO.Compression.Native.a - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.IO.Compression.Native.so - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.IO.Compression.Native.so.dbg - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.IO.Ports.Native.a - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.IO.Ports.Native.so - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.IO.Ports.Native.so.dbg - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.Native.a - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.Native.so - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.Native.so.dbg - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.Net.Security.Native.a - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.Net.Security.Native.so - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.Net.Security.Native.so.dbg - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.Security.Cryptography.Native.OpenSsl.a - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.Security.Cryptography.Native.OpenSsl.so - artifacts/bin/native/net10.0-Linux-Release-arm/libSystem.Security.Cryptography.Native.OpenSsl.so.dbg - - $ file artifacts/bin/native/net10.0-linux-release-arm/libSystem.Native.so - artifacts/bin/native/net10.0-linux-release-arm/libSystem.Native.so: ELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, BuildID[sha1]=5f6f6f9c4012dffed133624867adf32ac2af130d, stripped +Build artifacts can be found in `artifacts/bin/native/net11.0---/`: + + $ ls artifacts/bin/native/net11.0-Linux-Release-arm/* + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.Globalization.Native.a + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.Globalization.Native.so + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.Globalization.Native.so.dbg + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.IO.Compression.Native.a + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.IO.Compression.Native.so + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.IO.Compression.Native.so.dbg + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.IO.Ports.Native.a + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.IO.Ports.Native.so + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.IO.Ports.Native.so.dbg + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.Native.a + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.Native.so + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.Native.so.dbg + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.Net.Security.Native.a + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.Net.Security.Native.so + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.Net.Security.Native.so.dbg + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.Security.Cryptography.Native.OpenSsl.a + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.Security.Cryptography.Native.OpenSsl.so + artifacts/bin/native/net11.0-Linux-Release-arm/libSystem.Security.Cryptography.Native.OpenSsl.so.dbg + + $ file artifacts/bin/native/net11.0-linux-release-arm/libSystem.Native.so + artifacts/bin/native/net11.0-linux-release-arm/libSystem.Native.so: ELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, BuildID[sha1]=5f6f6f9c4012dffed133624867adf32ac2af130d, stripped Compile managed runtime libraries on Linux @@ -88,7 +88,7 @@ Note that by default ILLinker trimming is enabled and libraries built above for $ ./build.sh libs.sfx --arch arm --librariesConfiguration Release /p:ILLinkTrimAssembly=false -Build artifacts can be found in `artifacts/bin/microsoft.netcore.app.runtime.-//runtimes/-/lib/net10.0/`. For more details on the build configurations see [project-guidelines](/docs/coding-guidelines/project-guidelines.md). +Build artifacts can be found in `artifacts/bin/microsoft.netcore.app.runtime.-//runtimes/-/lib/net11.0/`. For more details on the build configurations see [project-guidelines](/docs/coding-guidelines/project-guidelines.md). Both native and managed runtime libraries can be built at the same time with: diff --git a/docs/workflow/ci/triaging-failures.md b/docs/workflow/ci/triaging-failures.md index 34b85b2224bf92..faf02b09b829cd 100644 --- a/docs/workflow/ci/triaging-failures.md +++ b/docs/workflow/ci/triaging-failures.md @@ -23,7 +23,7 @@ and for libraries runs is defined [here](../../../eng/pipelines/libraries/helix- Many test runs use a non-default product configuration, to allow re-using existing test assets to stress various aspects of the system. Determine the precise test configuration under which the test has failed. This might be evident from the test job name. For example, -`net10.0-windows-Release-x86-CoreCLR_checked-jitstress1-Windows.10.Amd64.Open` is a libraries test run on Windows with a Release x86 libraries +`net11.0-windows-Release-x86-CoreCLR_checked-jitstress1-Windows.10.Amd64.Open` is a libraries test run on Windows with a Release x86 libraries build, Checked coreclr build, and setting the `DOTNET_JitStress=1` configuration setting, in the `Windows.10.Amd64.Open` Helix queue. You need to be careful when reproducing failures to set all the correct environment variables. In the above example, if you look at the diff --git a/docs/workflow/debugging/coreclr/debugging-runtime.md b/docs/workflow/debugging/coreclr/debugging-runtime.md index 3519e649aacc61..7ef9f6d2274233 100644 --- a/docs/workflow/debugging/coreclr/debugging-runtime.md +++ b/docs/workflow/debugging/coreclr/debugging-runtime.md @@ -55,7 +55,7 @@ Visual Studio's capabilities as a full IDE provide a lot of help making the runt 5. Set `Command=$(SolutionDir)\..\..\..\..\bin\coreclr\windows.$(Platform).$(Configuration)\corerun.exe`. This points to the folder where the built runtime binaries are present. 6. Set `Command Arguments=` (e.g. HelloWorld.dll). 7. Set `Working Directory=$(SolutionDir)\..\..\..\..\bin\coreclr\windows.$(Platform).$(Configuration)`. This points to the folder containing CoreCLR binaries. -8. Set `Environment=CORE_LIBRARIES=$(SolutionDir)\..\..\..\..\bin\runtime\-windows-$(Configuration)-$(Platform)`, where '\' is the target framework of current branch: `net10.0`. A few notes on this step: +8. Set `Environment=CORE_LIBRARIES=$(SolutionDir)\..\..\..\..\bin\runtime\-windows-$(Configuration)-$(Platform)`, where '\' is the target framework of current branch: `net11.0`. A few notes on this step: * This points to the folder containing core libraries except `System.Private.CoreLib`. * This step can be skipped if you are debugging CLR tests that reference only `System.Private.CoreLib`. Otherwise, it's required to debug a real-world application that references anything else, including `System.Runtime`. @@ -85,7 +85,7 @@ Steps 1-9 only need to be done once as long as there's been no changes to the CM }, { "name": "CORE_LIBRARIES", - // for example net10.0-windows-debug-x64 + // for example net11.0-windows-debug-x64 "value": "${cmake.installRoot}\\..\\..\\runtime\\-windows--\\" } ], diff --git a/docs/workflow/testing/host/testing.md b/docs/workflow/testing/host/testing.md index 82496f754b1662..9be32952dbd908 100644 --- a/docs/workflow/testing/host/testing.md +++ b/docs/workflow/testing/host/testing.md @@ -66,12 +66,12 @@ If all tests have not been previously run, make sure the [test context](#test-co Tests from a specific test project can be run using [`dotnet test`](https://learn.microsoft.com/dotnet/core/tools/dotnet-test) targeting the built test binary. For example: ``` -dotnet test artifacts/bin/HostActivation.Tests/Debug/net10.0/HostActivation.Tests.dll --filter category!=failing +dotnet test artifacts/bin/HostActivation.Tests/Debug/net11.0/HostActivation.Tests.dll --filter category!=failing ``` To filter to specific tests within the test library, use the [filter options](https://learn.microsoft.com/dotnet/core/tools/dotnet-test#filter-option-details) available for `dotnet test`. For example: ``` -dotnet test artifacts/bin/HostActivation.Tests/Debug/net10.0/HostActivation.Tests.dll --filter "DependencyResolution&category!=failing" +dotnet test artifacts/bin/HostActivation.Tests/Debug/net11.0/HostActivation.Tests.dll --filter "DependencyResolution&category!=failing" ``` The `category!=failing` is to respect the [filtering traits](../libraries/filtering-tests.md) used by the runtime repo. diff --git a/docs/workflow/testing/libraries/testing.md b/docs/workflow/testing/libraries/testing.md index b4a4ad43ee2e0e..ca7eb206c03ee8 100644 --- a/docs/workflow/testing/libraries/testing.md +++ b/docs/workflow/testing/libraries/testing.md @@ -177,4 +177,4 @@ If you change code, you'd need to remove `/p:testnobuild=true` from the command ### Viewing XUnit logs -It's usually sufficient to see the test failure output in the console. There is also a test log file, which you can find in a location like `...\runtime\artifacts\bin\System.Text.RegularExpressions.Tests\Debug\net10.0\testResults.xml`. It can be helpful, for example, to grep through a series of failures, or to see how long a slow test actually took. +It's usually sufficient to see the test failure output in the console. There is also a test log file, which you can find in a location like `...\runtime\artifacts\bin\System.Text.RegularExpressions.Tests\Debug\net11.0\testResults.xml`. It can be helpful, for example, to grep through a series of failures, or to see how long a slow test actually took. diff --git a/docs/workflow/testing/using-dev-shipping-packages.md b/docs/workflow/testing/using-dev-shipping-packages.md index 2c90c1e0118a6e..d1513c5975705e 100644 --- a/docs/workflow/testing/using-dev-shipping-packages.md +++ b/docs/workflow/testing/using-dev-shipping-packages.md @@ -94,12 +94,12 @@ Once we have your `NuGet.Config` file ready, we have to make our project aware t ```xml - - + + ``` -If you're unsure of what version your packages are, it is included as part of their filenames. For example, pick the `nupkg` file that will be used with your app from your shipping folder (`artifacts/packages//Shipping`). It's name is something like `Microsoft.NETCore.App.Runtime.win-x64.10.0.0-dev.nupkg`, depending on the current version and your target platform. +If you're unsure of what version your packages are, it is included as part of their filenames. For example, pick the `nupkg` file that will be used with your app from your shipping folder (`artifacts/packages//Shipping`). It's name is something like `Microsoft.NETCore.App.Runtime.win-x64.11.0.0-dev.nupkg`, depending on the current version and your target platform. ### Write a small test @@ -124,8 +124,8 @@ dotnet publish --self-contained Running this little app should yield an output like the following: ```text -Hello World from .NET 10.0.0-dev -The location of System.Private.CoreLib.dll is '/path/to/your/app/bin/Debug/net10.0/win-x64/publish/System.Private.CoreLib.dll' +Hello World from .NET 11.0.0-dev +The location of System.Private.CoreLib.dll is '/path/to/your/app/bin/Debug/net11.0/win-x64/publish/System.Private.CoreLib.dll' ``` ## Making Changes and Consuming Updated Packages diff --git a/docs/workflow/testing/using-your-build-with-installed-sdk.md b/docs/workflow/testing/using-your-build-with-installed-sdk.md index 88509c7bfeee47..f9b959a14d10f6 100644 --- a/docs/workflow/testing/using-your-build-with-installed-sdk.md +++ b/docs/workflow/testing/using-your-build-with-installed-sdk.md @@ -93,7 +93,7 @@ dotnet publish --self-contained ``` -After you publish successfully, you will find all the binaries needed to run your application under `bin\Debug\net10.0\win-x64\publish`. +After you publish successfully, you will find all the binaries needed to run your application under `bin\Debug\net11.0\win-x64\publish`. **But we are not done yet, you need to replace the published runtime files with the files from your local build!** @@ -105,12 +105,12 @@ The publishing step described above creates a directory that has all the files n * `System.Private.CoreLib.dll`: If you modified managed C# code, it will end up here. * `clrjit.dll`: The JIT compiler. It is also required you copy this one to your published app. -Now, here comes the main deal to test your build. Once you have your self-contained app published, and CoreCLR built, you will replace the binaries listed above with the generated artifacts. Copy them from `artifacts/bin/coreclr/../` to your app's publication directory, which by default is `your-app-folder/bin//net10.0/-/publish`. +Now, here comes the main deal to test your build. Once you have your self-contained app published, and CoreCLR built, you will replace the binaries listed above with the generated artifacts. Copy them from `artifacts/bin/coreclr/../` to your app's publication directory, which by default is `your-app-folder/bin//net11.0/-/publish`. In our previous example this would be: * From: `artifacts/bin/coreclr/windows.x64.Debug/` -* To: `HelloWorld/bin/Debug/net10.0/win-x64/publish/` +* To: `HelloWorld/bin/Debug/net11.0/win-x64/publish/` ## Confirm that the app used your new runtime (Optional) @@ -129,8 +129,8 @@ Console.WriteLine($"System.Private.CoreLib.dll is located at: {typeof(object).As That should tell you the version, and which user and machine built the assembly, as well as the _commit hash_ of the code at the time of building: ```text -Core Runtime Info: 10.0.0-dev -System.Private.CoreLib.dll is located at: /path/to/your/app/bin/Debug/net10.0/win-x64/publish/System.Private.CoreLib.dll +Core Runtime Info: 11.0.0-dev +System.Private.CoreLib.dll is located at: /path/to/your/app/bin/Debug/net11.0/win-x64/publish/System.Private.CoreLib.dll ``` What you are looking for here is that the core runtime used is labelled as `-dev`. This means it is indeed using the one you built in the runtime repo. Also, ensure that the picked _System.Private.CoreLib.dll_ is indeed the one in your `publish` folder. @@ -144,7 +144,7 @@ Here are a few very common errors you might encounter, and how to fix them. Make sure you are running the executable directly. ```cmd -.\bin\Debug\net10.0\win-x64\publish\HelloWorld.exe +.\bin\Debug\net11.0\win-x64\publish\HelloWorld.exe ``` If you use `dotnet run` it will overwrite your custom binaries before executing the app. diff --git a/eng/Signing.props b/eng/Signing.props index b5c6188764bbbf..3d671fb0506f1a 100644 --- a/eng/Signing.props +++ b/eng/Signing.props @@ -132,7 +132,7 @@ $(ArtifactsPackagesDir)**\Microsoft.NET.Runtime.WorkloadTesting.Internal.*.nupkg; $(ArtifactsPackagesDir)**\Microsoft.NETCore.BrowserDebugHost.Transport.*.nupkg; $(ArtifactsPackagesDir)**\Microsoft.NET.Runtime.WebAssembly.Sdk.*.nupkg; - $(ArtifactsPackagesDir)**\Microsoft.NET.Runtime.WebAssembly.Templates.net10.*.nupkg; + $(ArtifactsPackagesDir)**\Microsoft.NET.Runtime.WebAssembly.Templates.net11.*.nupkg; $(ArtifactsPackagesDir)**\Microsoft.NET.Sdk.WebAssembly.Pack.*.nupkg; $(ArtifactsPackagesDir)**\Microsoft.NET.Workload.Mono.ToolChain.*.nupkg" /> diff --git a/eng/build.ps1 b/eng/build.ps1 index 994a5e15e4feba..5c9f07480b52dd 100644 --- a/eng/build.ps1 +++ b/eng/build.ps1 @@ -82,8 +82,8 @@ function Get-Help() { Write-Host "Libraries settings:" Write-Host " -coverage Collect code coverage when testing." - Write-Host " -framework (-f) Build framework: net10.0 or net481." - Write-Host " [Default: net10.0]" + Write-Host " -framework (-f) Build framework: net11.0 or net481." + Write-Host " [Default: net11.0]" Write-Host " -testnobuild Skip building tests when invoking -test." Write-Host " -testscope Scope tests, allowed values: innerloop, outerloop, all." Write-Host "" diff --git a/eng/build.sh b/eng/build.sh index 799138f574696a..efbfa79ecd3b21 100755 --- a/eng/build.sh +++ b/eng/build.sh @@ -68,8 +68,8 @@ usage() echo "Libraries settings:" echo " --coverage Collect code coverage when testing." - echo " --framework (-f) Build framework: net10.0 or net481." - echo " [Default: net10.0]" + echo " --framework (-f) Build framework: net11.0 or net481." + echo " [Default: net11.0]" echo " --testnobuild Skip building tests when invoking -test." echo " --testscope Test scope, allowed values: innerloop, outerloop, all." echo "" diff --git a/eng/pipelines/coreclr/templates/crossgen2-comparison-build-job.yml b/eng/pipelines/coreclr/templates/crossgen2-comparison-build-job.yml index 01f9ed4cfb5309..1d0163ba4c55b3 100644 --- a/eng/pipelines/coreclr/templates/crossgen2-comparison-build-job.yml +++ b/eng/pipelines/coreclr/templates/crossgen2-comparison-build-job.yml @@ -71,7 +71,7 @@ jobs: - name: crossgen2location value: $(binDirectory)$(dir)crossgen2_inbuild$(dir)$(archType)$(dir)$(buildConfigUpper)$(dir)crossgen2.dll - name: librariesProductDllDir - value: $(Build.SourcesDirectory)$(dir)artifacts$(dir)bin$(dir)runtime$(dir)net10.0-$(osGroup)$(osSubgroup)-$(buildConfig)-$(archType) + value: $(Build.SourcesDirectory)$(dir)artifacts$(dir)bin$(dir)runtime$(dir)net11.0-$(osGroup)$(osSubgroup)-$(buildConfig)-$(archType) - ${{ parameters.variables }} diff --git a/src/coreclr/nativeaot/docs/android-bionic.md b/src/coreclr/nativeaot/docs/android-bionic.md index df6ac78c7eac5b..8a7aa566466f88 100644 --- a/src/coreclr/nativeaot/docs/android-bionic.md +++ b/src/coreclr/nativeaot/docs/android-bionic.md @@ -20,7 +20,7 @@ To build for Bionic: ```sh $ dotnet publish -r linux-bionic-arm64 -p:DisableUnsupportedError=true -p:PublishAotUsingRuntimePack=true ``` -* You should have a binary under `bin\Release\net10.0\linux-bionic-arm64\publish`. Copy it to an Android device. Either `adb push` or using some GUI. +* You should have a binary under `bin\Release\net11.0\linux-bionic-arm64\publish`. Copy it to an Android device. Either `adb push` or using some GUI. * You can probably run it with `adb shell`, but I used Termux: open Termux, give it access to file system by running `termux-setup-storage`. This will give you access to phone storage under `~/storage`. Copy the binary from `~/storage/...` to `~` (internal storage is not executable and you won't be able to run stuff from it). Then `chmod +x HelloBionic` and `./HelloBionic`. You should see Hello World. Command line apps are not very interesting for Android. The more interesting scenario are shared libraries that can be called into from Java/Kotlin through JNI. This is very similar to building shared libraries in other languages like C/C++/Rust. `PublishAot` allows building shared libraries that are callable from non-.NET languages. See https://learn.microsoft.com/dotnet/core/deploying/native-aot/interop#native-exports. diff --git a/src/coreclr/nativeaot/docs/compiling.md b/src/coreclr/nativeaot/docs/compiling.md index 818d2875f71a41..6d9252e71d6d0b 100644 --- a/src/coreclr/nativeaot/docs/compiling.md +++ b/src/coreclr/nativeaot/docs/compiling.md @@ -8,7 +8,7 @@ The rest of this document covers advanced topics only. For using daily builds, you need to make sure the `nuget.config` file for your project contains the following package sources under the `` element: ```xml - + ``` @@ -21,13 +21,13 @@ from the project's root directory. New package sources must be added after the ` Once you have added the package sources, add a reference to the ILCompiler package either by running ```bash -> dotnet add package Microsoft.DotNet.ILCompiler -v 10.0.0-* +> dotnet add package Microsoft.DotNet.ILCompiler -v 11.0.0-* ``` or by adding the following element to the project file: ```xml - + ``` @@ -54,7 +54,7 @@ For using daily builds according to the instructions above, in addition to the ` ``` -Replace `9.0.0-alpha.1.23456.7` with the latest version from the [dotnet10](https://dev.azure.com/dnceng/public/_artifacts/feed/dotnet10/NuGet/Microsoft.DotNet.ILCompiler/) feed. +Replace `9.0.0-alpha.1.23456.7` with the latest version from the [dotnet11](https://dev.azure.com/dnceng/public/_artifacts/feed/dotnet11/NuGet/Microsoft.DotNet.ILCompiler/) feed. Note that it is important to use _the same version_ for both packages to avoid potential hard-to-debug issues. After adding the package reference, you may publish for win-arm64 as usual: ```bash > dotnet publish -r win-arm64 diff --git a/src/coreclr/scripts/superpmi_aspnet2.py b/src/coreclr/scripts/superpmi_aspnet2.py index 40ae796f7a6e66..41b426cfbd543c 100644 --- a/src/coreclr/scripts/superpmi_aspnet2.py +++ b/src/coreclr/scripts/superpmi_aspnet2.py @@ -272,7 +272,7 @@ def run_crank_scenario(crank_app: Path, scenario_name: str, framework: str, work def main(): parser = argparse.ArgumentParser(description="Cross-platform crank runner.") parser.add_argument("--core_root", help="Path to built runtime bits (CORE_ROOT).") - parser.add_argument("--tfm", default="net10.0", help="Target Framework Moniker (e.g., net10.0).") + parser.add_argument("--tfm", default="net11.0", help="Target Framework Moniker (e.g., net11.0).") parser.add_argument("--output_mch", help="File path to copy the resulting merged .mch to (expects a file path, not a directory).") parser.add_argument("--work_dir", help="Optional path to a directory in which a new working directory will be created. If specified, a new subdirectory with a random name prefixed with 'aspnet2_' will be created inside this directory. Otherwise a system temp directory is used.") parser.add_argument("--dryrun", action="store_true", help="Run benchmarks only without collecting SPMI data or generating .mch files.") diff --git a/src/coreclr/scripts/superpmi_benchmarks.py b/src/coreclr/scripts/superpmi_benchmarks.py index bc1319a2b8a857..d64ab61cf802a3 100644 --- a/src/coreclr/scripts/superpmi_benchmarks.py +++ b/src/coreclr/scripts/superpmi_benchmarks.py @@ -184,7 +184,7 @@ def build_and_run(coreclr_args, output_mch_name): # Start with a "dotnet --info" to see what we've got. run_command([dotnet_exe, "--info"]) - tfm = "net10.0" + tfm = "net11.0" os.environ["PERFLAB_TARGET_FRAMEWORKS"] = tfm env_for_restore = os.environ.copy() diff --git a/src/libraries/Common/tests/StaticTestGenerator/README.md b/src/libraries/Common/tests/StaticTestGenerator/README.md index d2415167839aea..38cac5f04fa6d1 100644 --- a/src/libraries/Common/tests/StaticTestGenerator/README.md +++ b/src/libraries/Common/tests/StaticTestGenerator/README.md @@ -22,16 +22,16 @@ From within the utility directory, run the utility with the arguments: For example: ``` -dotnet run d:\output "d:\repos\runtime\artifacts\bin\testhost\net10.0-windows-Debug-x64\shared\Microsoft.NETCore.App\5.0.0" "d:\repos\runtime\artifacts\bin\System.Runtime.Tests\net10.0-windows-Debug\System.Runtime.Tests.dll" +dotnet run d:\output "d:\repos\runtime\artifacts\bin\testhost\net11.0-windows-Debug-x64\shared\Microsoft.NETCore.App\5.0.0" "d:\repos\runtime\artifacts\bin\System.Runtime.Tests\net11.0-windows-Debug\System.Runtime.Tests.dll" ``` This will run the tool and result in output written to the console like: ``` -3/27/2019 10:55:37 PM | Test assembly path : d:\repos\runtime\artifacts\bin\System.Runtime.Tests\net10.0-windows-Debug\System.Runtime.Tests.dll -3/27/2019 10:55:37 PM | Helper assemblies path: d:\repos\runtime\artifacts\bin\testhost\net10.0-windows-Debug-x64\shared\Microsoft.NETCore.App\3.0.0\ +3/27/2019 10:55:37 PM | Test assembly path : d:\repos\runtime\artifacts\bin\System.Runtime.Tests\net11.0-windows-Debug\System.Runtime.Tests.dll +3/27/2019 10:55:37 PM | Helper assemblies path: d:\repos\runtime\artifacts\bin\testhost\net11.0-windows-Debug-x64\shared\Microsoft.NETCore.App\3.0.0\ 3/27/2019 10:55:37 PM | Output path : d:\output\System.Runtime.Tests\ -3/27/2019 10:55:37 PM | Xunit arguments : d:\repos\runtime\artifacts\bin\System.Runtime.Tests\net10.0-windows-Debug\System.Runtime.Tests.dll -notrait category=nonnetcoreapptests -notrait category=nonwindowstests -notrait category=IgnoreForCI -notrait category=failing -notrait category=OuterLoop +3/27/2019 10:55:37 PM | Xunit arguments : d:\repos\runtime\artifacts\bin\System.Runtime.Tests\net11.0-windows-Debug\System.Runtime.Tests.dll -notrait category=nonnetcoreapptests -notrait category=nonwindowstests -notrait category=IgnoreForCI -notrait category=failing -notrait category=OuterLoop 3/27/2019 10:55:37 PM | -3/27/2019 10:55:37 PM | Loaded System.Runtime.Tests from d:\repos\runtime\artifacts\bin\System.Runtime.Tests\net10.0-windows-Debug\System.Runtime.Tests.dll +3/27/2019 10:55:37 PM | Loaded System.Runtime.Tests from d:\repos\runtime\artifacts\bin\System.Runtime.Tests\net11.0-windows-Debug\System.Runtime.Tests.dll 3/27/2019 10:55:37 PM | Found 5322 test methods. 3/27/2019 10:55:38 PM | Found 3469 InlineDatas / 949 MethodDatas across 5322 test methods. 3/27/2019 10:55:38 PM | diff --git a/src/libraries/Fuzzing/DotnetFuzzing/run.bat b/src/libraries/Fuzzing/DotnetFuzzing/run.bat index 9d92659e7fe4c7..7d0edeb5585c24 100644 --- a/src/libraries/Fuzzing/DotnetFuzzing/run.bat +++ b/src/libraries/Fuzzing/DotnetFuzzing/run.bat @@ -1 +1 @@ -%~dp0..\..\..\..\artifacts\bin\DotnetFuzzing\Debug\net10.0\win-x64\DotnetFuzzing.exe prepare-onefuzz deployment \ No newline at end of file +%~dp0..\..\..\..\artifacts\bin\DotnetFuzzing\Debug\net11.0\win-x64\DotnetFuzzing.exe prepare-onefuzz deployment \ No newline at end of file diff --git a/src/libraries/System.Diagnostics.EventLog/src/CompatibilitySuppressions.xml b/src/libraries/System.Diagnostics.EventLog/src/CompatibilitySuppressions.xml index 11804bbda76ae3..ea1809d293788c 100644 --- a/src/libraries/System.Diagnostics.EventLog/src/CompatibilitySuppressions.xml +++ b/src/libraries/System.Diagnostics.EventLog/src/CompatibilitySuppressions.xml @@ -3,7 +3,7 @@ CP0004 - System.Diagnostics.EventLog.Messages, Version=10.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51 + System.Diagnostics.EventLog.Messages, Version=11.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51 CP0015 diff --git a/src/libraries/System.Private.CoreLib/src/CompatibilitySuppressions.xml b/src/libraries/System.Private.CoreLib/src/CompatibilitySuppressions.xml index 21e9323f9e7168..e941aba56dc6d8 100644 --- a/src/libraries/System.Private.CoreLib/src/CompatibilitySuppressions.xml +++ b/src/libraries/System.Private.CoreLib/src/CompatibilitySuppressions.xml @@ -28,7 +28,5 @@ CP0008 T:System.Collections.BitArray - ref/net10.0/System.Private.CoreLib.dll - lib/net10.0/System.Private.CoreLib.dll diff --git a/src/libraries/System.Runtime.InteropServices.JavaScript/src/CompatibilitySuppressions.WasmThreads.xml b/src/libraries/System.Runtime.InteropServices.JavaScript/src/CompatibilitySuppressions.WasmThreads.xml index 6c8c191008c0f0..cbe63f15c8d6b2 100644 --- a/src/libraries/System.Runtime.InteropServices.JavaScript/src/CompatibilitySuppressions.WasmThreads.xml +++ b/src/libraries/System.Runtime.InteropServices.JavaScript/src/CompatibilitySuppressions.WasmThreads.xml @@ -3,7 +3,7 @@ CP0001 T:System.Runtime.InteropServices.JavaScript.JSWebWorker - ref/net10.0/System.Runtime.InteropServices.JavaScript.dll - runtimes/browser/lib/net10.0/System.Runtime.InteropServices.JavaScript.dll + ref/net11.0/System.Runtime.InteropServices.JavaScript.dll + runtimes/browser/lib/net11.0/System.Runtime.InteropServices.JavaScript.dll diff --git a/src/libraries/System.Runtime.InteropServices.JavaScript/src/CompatibilitySuppressions.xml b/src/libraries/System.Runtime.InteropServices.JavaScript/src/CompatibilitySuppressions.xml index fc29a68116af8f..ca0c67c4ee0b48 100644 --- a/src/libraries/System.Runtime.InteropServices.JavaScript/src/CompatibilitySuppressions.xml +++ b/src/libraries/System.Runtime.InteropServices.JavaScript/src/CompatibilitySuppressions.xml @@ -3,25 +3,25 @@ CP0001 T:System.Runtime.InteropServices.JavaScript.CancelablePromise - ref/net10.0/System.Runtime.InteropServices.JavaScript.dll - runtimes/browser/lib/net10.0/System.Runtime.InteropServices.JavaScript.dll + ref/net11.0/System.Runtime.InteropServices.JavaScript.dll + runtimes/browser/lib/net11.0/System.Runtime.InteropServices.JavaScript.dll CP0002 M:System.Runtime.InteropServices.JavaScript.JSObject.get_SynchronizationContext - ref/net10.0/System.Runtime.InteropServices.JavaScript.dll - runtimes/browser/lib/net10.0/System.Runtime.InteropServices.JavaScript.dll + ref/net11.0/System.Runtime.InteropServices.JavaScript.dll + runtimes/browser/lib/net11.0/System.Runtime.InteropServices.JavaScript.dll CP0001 T:System.Runtime.InteropServices.JavaScript.JSType.DiscardNoWait - ref/net10.0/System.Runtime.InteropServices.JavaScript.dll - runtimes/browser/lib/net10.0/System.Runtime.InteropServices.JavaScript.dll + ref/net11.0/System.Runtime.InteropServices.JavaScript.dll + runtimes/browser/lib/net11.0/System.Runtime.InteropServices.JavaScript.dll CP0002 M:System.Runtime.InteropServices.JavaScript.JSMarshalerType.get_DiscardNoWait - ref/net10.0/System.Runtime.InteropServices.JavaScript.dll - runtimes/browser/lib/net10.0/System.Runtime.InteropServices.JavaScript.dll + ref/net11.0/System.Runtime.InteropServices.JavaScript.dll + runtimes/browser/lib/net11.0/System.Runtime.InteropServices.JavaScript.dll diff --git a/src/libraries/apicompat/ApiCompatBaseline.NetCoreAppLatestStable.xml b/src/libraries/apicompat/ApiCompatBaseline.NetCoreAppLatestStable.xml index a0d092eccf48b3..32ca2f65e8866d 100644 --- a/src/libraries/apicompat/ApiCompatBaseline.NetCoreAppLatestStable.xml +++ b/src/libraries/apicompat/ApiCompatBaseline.NetCoreAppLatestStable.xml @@ -1,1006 +1,4 @@  - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorByteNonFaultingZeroExtendToInt16(System.Byte*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorByteNonFaultingZeroExtendToInt32(System.Byte*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorByteNonFaultingZeroExtendToInt64(System.Byte*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorByteNonFaultingZeroExtendToUInt16(System.Byte*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorByteNonFaultingZeroExtendToUInt32(System.Byte*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorByteNonFaultingZeroExtendToUInt64(System.Byte*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorInt16NonFaultingSignExtendToInt32(System.Int16*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorInt16NonFaultingSignExtendToInt64(System.Int16*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorInt16NonFaultingSignExtendToUInt32(System.Int16*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorInt16NonFaultingSignExtendToUInt64(System.Int16*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorInt32NonFaultingSignExtendToInt64(System.Int32*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorInt32NonFaultingSignExtendToUInt64(System.Int32*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorNonFaulting(System.Byte*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorNonFaulting(System.Double*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorNonFaulting(System.Int16*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorNonFaulting(System.Int32*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorNonFaulting(System.Int64*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorNonFaulting(System.SByte*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorNonFaulting(System.Single*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorNonFaulting(System.UInt16*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorNonFaulting(System.UInt32*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorNonFaulting(System.UInt64*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorSByteNonFaultingSignExtendToInt16(System.SByte*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorSByteNonFaultingSignExtendToInt32(System.SByte*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorSByteNonFaultingSignExtendToInt64(System.SByte*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorSByteNonFaultingSignExtendToUInt16(System.SByte*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorSByteNonFaultingSignExtendToUInt32(System.SByte*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorSByteNonFaultingSignExtendToUInt64(System.SByte*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorUInt16NonFaultingZeroExtendToInt32(System.UInt16*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorUInt16NonFaultingZeroExtendToInt64(System.UInt16*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorUInt16NonFaultingZeroExtendToUInt32(System.UInt16*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorUInt16NonFaultingZeroExtendToUInt64(System.UInt16*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorUInt32NonFaultingZeroExtendToInt64(System.UInt32*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.LoadVectorUInt32NonFaultingZeroExtendToUInt64(System.UInt32*) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.PrefetchBytes(System.Numerics.Vector{System.Byte},System.Void*,System.Runtime.Intrinsics.Arm.SvePrefetchType) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.PrefetchInt16(System.Numerics.Vector{System.UInt16},System.Void*,System.Runtime.Intrinsics.Arm.SvePrefetchType) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.PrefetchInt32(System.Numerics.Vector{System.UInt32},System.Void*,System.Runtime.Intrinsics.Arm.SvePrefetchType) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0002 - M:System.Runtime.Intrinsics.Arm.Sve.PrefetchInt64(System.Numerics.Vector{System.UInt64},System.Void*,System.Runtime.Intrinsics.Arm.SvePrefetchType) - net9.0/System.Runtime.Intrinsics.dll - net10.0/System.Runtime.Intrinsics.dll - - - CP0014 - M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Type,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0014 - M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Type,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0014 - M:System.ComponentModel.DefaultValueAttribute.#ctor(System.Type,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Runtime.dll - net10.0/System.Runtime.dll - - - CP0015 - M:System.Delegate.#ctor(System.Type,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String,System.Boolean,System.Boolean)$1:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String,System.Boolean)$1:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String)$1:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.Diagnostics.Tracing.EventSource.GenerateManifest(System.Type,System.String,System.Diagnostics.Tracing.EventManifestOptions)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.Diagnostics.Tracing.EventSource.GenerateManifest(System.Type,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.MulticastDelegate.#ctor(System.Type,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.Reflection.Emit.EnumBuilder.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.Reflection.Emit.GenericTypeParameterBuilder.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.Reflection.Emit.TypeBuilder.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.Reflection.IReflect.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.Reflection.TypeDelegator.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.Reflection.TypeInfo.get_DeclaredMembers:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.Type.FindMembers(System.Reflection.MemberTypes,System.Reflection.BindingFlags,System.Reflection.MemberFilter,System.Object):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Globalization.CultureInfo):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - T:System.Diagnostics.Tracing.EventSource:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/mscorlib.dll - net10.0/mscorlib.dll - - - CP0015 - M:System.ComponentModel.AmbientValueAttribute.#ctor(System.Type,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptionProvider.GetTypeDescriptor(System.Type,System.Object)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptionProvider.GetTypeDescriptor(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.CreateEvent(System.Type,System.ComponentModel.EventDescriptor,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.CreateEvent(System.Type,System.String,System.Type,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.CreateProperty(System.Type,System.ComponentModel.PropertyDescriptor,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.CreateProperty(System.Type,System.String,System.Type,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetAttributes(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetClassName(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetConverter(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetDefaultEvent(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetDefaultProperty(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetEditor(System.Type,System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetEvents(System.Type,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetEvents(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetProperties(System.Type,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetProperties(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.Delegate.#ctor(System.Type,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String,System.Boolean,System.Boolean)$1:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String,System.Boolean)$1:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String)$1:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.Diagnostics.Tracing.EventSource.GenerateManifest(System.Type,System.String,System.Diagnostics.Tracing.EventManifestOptions)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.Diagnostics.Tracing.EventSource.GenerateManifest(System.Type,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.MulticastDelegate.#ctor(System.Type,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.Reflection.Emit.EnumBuilder.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.Reflection.Emit.GenericTypeParameterBuilder.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.Reflection.Emit.TypeBuilder.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.Reflection.IReflect.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.Reflection.TypeDelegator.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.Reflection.TypeInfo.get_DeclaredMembers:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.Type.FindMembers(System.Reflection.MemberTypes,System.Reflection.BindingFlags,System.Reflection.MemberFilter,System.Object):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Globalization.CultureInfo):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - T:System.ComponentModel.BindingList`1<0>:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - T:System.Data.Common.DbConnectionStringBuilder:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - T:System.Diagnostics.Tracing.EventSource:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/netstandard.dll - net10.0/netstandard.dll - - - CP0015 - M:System.ComponentModel.DataAnnotations.AssociatedMetadataTypeTypeDescriptionProvider.#ctor(System.Type,System.Type)$1:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.Annotations.dll - net10.0/System.ComponentModel.Annotations.dll - - - CP0015 - M:System.ComponentModel.DataAnnotations.AssociatedMetadataTypeTypeDescriptionProvider.GetTypeDescriptor(System.Type,System.Object)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.Annotations.dll - net10.0/System.ComponentModel.Annotations.dll - - - CP0015 - M:System.ComponentModel.DataAnnotations.MetadataTypeAttribute.#ctor(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.Annotations.dll - net10.0/System.ComponentModel.Annotations.dll - - - CP0015 - M:System.ComponentModel.DataAnnotations.RangeAttribute.#ctor(System.Type,System.String,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.Annotations.dll - net10.0/System.ComponentModel.Annotations.dll - - - CP0015 - P:System.ComponentModel.DataAnnotations.MetadataTypeAttribute.MetadataClassType:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.Annotations.dll - net10.0/System.ComponentModel.Annotations.dll - - - CP0015 - P:System.ComponentModel.DataAnnotations.RangeAttribute.OperandType:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.Annotations.dll - net10.0/System.ComponentModel.Annotations.dll - - - CP0015 - M:System.ComponentModel.DataAnnotations.AssociatedMetadataTypeTypeDescriptionProvider.#ctor(System.Type,System.Type)$1:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.DataAnnotations.dll - net10.0/System.ComponentModel.DataAnnotations.dll - - - CP0015 - M:System.ComponentModel.DataAnnotations.AssociatedMetadataTypeTypeDescriptionProvider.GetTypeDescriptor(System.Type,System.Object)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.DataAnnotations.dll - net10.0/System.ComponentModel.DataAnnotations.dll - - - CP0015 - M:System.ComponentModel.DataAnnotations.MetadataTypeAttribute.#ctor(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.DataAnnotations.dll - net10.0/System.ComponentModel.DataAnnotations.dll - - - CP0015 - M:System.ComponentModel.DataAnnotations.RangeAttribute.#ctor(System.Type,System.String,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.DataAnnotations.dll - net10.0/System.ComponentModel.DataAnnotations.dll - - - CP0015 - P:System.ComponentModel.DataAnnotations.MetadataTypeAttribute.MetadataClassType:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.DataAnnotations.dll - net10.0/System.ComponentModel.DataAnnotations.dll - - - CP0015 - P:System.ComponentModel.DataAnnotations.RangeAttribute.OperandType:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.DataAnnotations.dll - net10.0/System.ComponentModel.DataAnnotations.dll - - - CP0015 - M:System.ComponentModel.AmbientValueAttribute.#ctor(System.Type,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptionProvider.GetTypeDescriptor(System.Type,System.Object)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptionProvider.GetTypeDescriptor(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.CreateEvent(System.Type,System.ComponentModel.EventDescriptor,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.CreateEvent(System.Type,System.String,System.Type,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.CreateProperty(System.Type,System.ComponentModel.PropertyDescriptor,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.CreateProperty(System.Type,System.String,System.Type,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetAttributes(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetClassName(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetConverter(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetDefaultEvent(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetDefaultProperty(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetEditor(System.Type,System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetEvents(System.Type,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetEvents(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetProperties(System.Type,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetProperties(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - T:System.ComponentModel.BindingList`1<0>:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll - - - CP0015 - T:System.Data.Common.DbConnectionStringBuilder:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Data.Common.dll - net10.0/System.Data.Common.dll - - - CP0015 - T:System.Data.Common.DbConnectionStringBuilder:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Data.dll - net10.0/System.Data.dll - - - CP0015 - M:System.Diagnostics.Tracing.EventSource.GenerateManifest(System.Type,System.String,System.Diagnostics.Tracing.EventManifestOptions)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Diagnostics.Tracing.dll - net10.0/System.Diagnostics.Tracing.dll - - - CP0015 - M:System.Diagnostics.Tracing.EventSource.GenerateManifest(System.Type,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Diagnostics.Tracing.dll - net10.0/System.Diagnostics.Tracing.dll - - - CP0015 - T:System.Diagnostics.Tracing.EventSource:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Diagnostics.Tracing.dll - net10.0/System.Diagnostics.Tracing.dll - - - CP0015 - M:System.ComponentModel.AmbientValueAttribute.#ctor(System.Type,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptionProvider.GetTypeDescriptor(System.Type,System.Object)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptionProvider.GetTypeDescriptor(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.CreateEvent(System.Type,System.ComponentModel.EventDescriptor,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.CreateEvent(System.Type,System.String,System.Type,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.CreateProperty(System.Type,System.ComponentModel.PropertyDescriptor,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.CreateProperty(System.Type,System.String,System.Type,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetAttributes(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetClassName(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetConverter(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetDefaultEvent(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetDefaultProperty(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetEditor(System.Type,System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetEvents(System.Type,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetEvents(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetProperties(System.Type,System.Attribute[])$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.ComponentModel.TypeDescriptor.GetProperties(System.Type)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - T:System.ComponentModel.BindingList`1<0>:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.dll - net10.0/System.dll - - - CP0015 - M:System.Reflection.TypeInfo.get_DeclaredMembers:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Reflection.dll - net10.0/System.Reflection.dll - - - CP0015 - M:System.Reflection.Emit.EnumBuilder.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Reflection.Emit.dll - net10.0/System.Reflection.Emit.dll - - - CP0015 - M:System.Reflection.Emit.GenericTypeParameterBuilder.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Reflection.Emit.dll - net10.0/System.Reflection.Emit.dll - - - CP0015 - M:System.Reflection.Emit.TypeBuilder.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Reflection.Emit.dll - net10.0/System.Reflection.Emit.dll - - - CP0015 - M:System.Reflection.TypeExtensions.GetMember(System.Type,System.String,System.Reflection.BindingFlags)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Reflection.TypeExtensions.dll - net10.0/System.Reflection.TypeExtensions.dll - - - CP0015 - M:System.Reflection.TypeExtensions.GetMembers(System.Type,System.Reflection.BindingFlags)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Reflection.TypeExtensions.dll - net10.0/System.Reflection.TypeExtensions.dll - - - CP0015 - M:System.Delegate.#ctor(System.Type,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Runtime.dll - net10.0/System.Runtime.dll - - - CP0015 - M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String,System.Boolean,System.Boolean)$1:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Runtime.dll - net10.0/System.Runtime.dll - - - CP0015 - M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String,System.Boolean)$1:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Runtime.dll - net10.0/System.Runtime.dll - - - CP0015 - M:System.Delegate.CreateDelegate(System.Type,System.Type,System.String)$1:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Runtime.dll - net10.0/System.Runtime.dll - - - CP0015 - M:System.MulticastDelegate.#ctor(System.Type,System.String)$0:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Runtime.dll - net10.0/System.Runtime.dll - - - CP0015 - M:System.Reflection.IReflect.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Runtime.dll - net10.0/System.Runtime.dll - - - CP0015 - M:System.Reflection.TypeDelegator.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Runtime.dll - net10.0/System.Runtime.dll - - - CP0015 - M:System.Reflection.TypeInfo.get_DeclaredMembers:[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Runtime.dll - net10.0/System.Runtime.dll - - - CP0015 - M:System.Type.FindMembers(System.Reflection.MemberTypes,System.Reflection.BindingFlags,System.Reflection.MemberFilter,System.Object):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Runtime.dll - net10.0/System.Runtime.dll - - - CP0015 - M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Globalization.CultureInfo):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Runtime.dll - net10.0/System.Runtime.dll - - - CP0015 - M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Runtime.dll - net10.0/System.Runtime.dll - - - CP0015 - M:System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[]):[T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute] - net9.0/System.Runtime.dll - net10.0/System.Runtime.dll - \ No newline at end of file diff --git a/src/libraries/apicompat/ApiCompatBaseline.netstandard2.0.xml b/src/libraries/apicompat/ApiCompatBaseline.netstandard2.0.xml index 94f7e8d61ad5a0..8d18b718a612ae 100644 --- a/src/libraries/apicompat/ApiCompatBaseline.netstandard2.0.xml +++ b/src/libraries/apicompat/ApiCompatBaseline.netstandard2.0.xml @@ -11,127 +11,127 @@ CP0002 M:System.ComponentModel.BaseNumberConverter.#ctor netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0002 M:System.Data.Constraint.#ctor netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0002 M:System.Data.Constraint.CheckStateForProperty netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0002 M:System.Data.Constraint.get__DataSet netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0002 M:System.Data.Constraint.SetDataSet(System.Data.DataSet) netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0002 M:System.Linq.EnumerableExecutor.#ctor netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0002 M:System.Linq.EnumerableQuery.#ctor netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0002 M:System.Xml.Schema.XmlSchemaDatatype.#ctor netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0002 M:System.Xml.Schema.XmlSchemaGroupBase.#ctor netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0002 M:System.ComponentModel.BaseNumberConverter.#ctor netstandard2.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll + net11.0/System.ComponentModel.TypeConverter.dll CP0002 M:System.Linq.EnumerableExecutor.#ctor netstandard2.0/System.Core.dll - net10.0/System.Core.dll + net11.0/System.Core.dll CP0002 M:System.Linq.EnumerableQuery.#ctor netstandard2.0/System.Core.dll - net10.0/System.Core.dll + net11.0/System.Core.dll CP0002 M:System.Data.Constraint.#ctor netstandard2.0/System.Data.dll - net10.0/System.Data.dll + net11.0/System.Data.dll CP0002 M:System.Data.Constraint.CheckStateForProperty netstandard2.0/System.Data.dll - net10.0/System.Data.dll + net11.0/System.Data.dll CP0002 M:System.Data.Constraint.get__DataSet netstandard2.0/System.Data.dll - net10.0/System.Data.dll + net11.0/System.Data.dll CP0002 M:System.Data.Constraint.SetDataSet(System.Data.DataSet) netstandard2.0/System.Data.dll - net10.0/System.Data.dll + net11.0/System.Data.dll CP0002 M:System.ComponentModel.BaseNumberConverter.#ctor netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0002 M:System.Linq.EnumerableExecutor.#ctor netstandard2.0/System.Linq.Queryable.dll - net10.0/System.Linq.Queryable.dll + net11.0/System.Linq.Queryable.dll CP0002 M:System.Linq.EnumerableQuery.#ctor netstandard2.0/System.Linq.Queryable.dll - net10.0/System.Linq.Queryable.dll + net11.0/System.Linq.Queryable.dll CP0002 M:System.Xml.Schema.XmlSchemaDatatype.#ctor netstandard2.0/System.Xml.dll - net10.0/System.Xml.dll + net11.0/System.Xml.dll CP0002 M:System.Xml.Schema.XmlSchemaGroupBase.#ctor netstandard2.0/System.Xml.dll - net10.0/System.Xml.dll + net11.0/System.Xml.dll CP0004 @@ -143,3030 +143,3030 @@ CP0009 T:System.ComponentModel.BaseNumberConverter netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0009 T:System.Data.Constraint netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0009 T:System.Linq.EnumerableExecutor netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0009 T:System.Linq.EnumerableQuery netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0009 T:System.Xml.Schema.XmlSchemaDatatype netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0009 T:System.Xml.Schema.XmlSchemaGroupBase netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0009 T:System.ComponentModel.BaseNumberConverter netstandard2.0/System.ComponentModel.TypeConverter.dll - net10.0/System.ComponentModel.TypeConverter.dll + net11.0/System.ComponentModel.TypeConverter.dll CP0009 T:System.Linq.EnumerableExecutor netstandard2.0/System.Core.dll - net10.0/System.Core.dll + net11.0/System.Core.dll CP0009 T:System.Linq.EnumerableQuery netstandard2.0/System.Core.dll - net10.0/System.Core.dll + net11.0/System.Core.dll CP0009 T:System.Data.Constraint netstandard2.0/System.Data.dll - net10.0/System.Data.dll + net11.0/System.Data.dll CP0009 T:System.ComponentModel.BaseNumberConverter netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0009 T:System.Linq.EnumerableExecutor netstandard2.0/System.Linq.Queryable.dll - net10.0/System.Linq.Queryable.dll + net11.0/System.Linq.Queryable.dll CP0009 T:System.Linq.EnumerableQuery netstandard2.0/System.Linq.Queryable.dll - net10.0/System.Linq.Queryable.dll + net11.0/System.Linq.Queryable.dll CP0009 T:System.Xml.Schema.XmlSchemaDatatype netstandard2.0/System.Xml.dll - net10.0/System.Xml.dll + net11.0/System.Xml.dll CP0009 T:System.Xml.Schema.XmlSchemaGroupBase netstandard2.0/System.Xml.dll - net10.0/System.Xml.dll + net11.0/System.Xml.dll CP0014 M:System.Collections.IEnumerable.GetEnumerator:[T:System.Runtime.InteropServices.DispIdAttribute] netstandard2.0/mscorlib.dll - net10.0/mscorlib.dll + net11.0/mscorlib.dll CP0014 M:System.Security.SecureString.AppendChar(System.Char):[T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] netstandard2.0/mscorlib.dll - net10.0/mscorlib.dll + net11.0/mscorlib.dll CP0014 M:System.Security.SecureString.InsertAt(System.Int32,System.Char):[T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] netstandard2.0/mscorlib.dll - net10.0/mscorlib.dll + net11.0/mscorlib.dll CP0014 M:System.Security.SecureString.RemoveAt(System.Int32):[T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] netstandard2.0/mscorlib.dll - net10.0/mscorlib.dll + net11.0/mscorlib.dll CP0014 M:System.Security.SecureString.SetAt(System.Int32,System.Char):[T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] netstandard2.0/mscorlib.dll - net10.0/mscorlib.dll + net11.0/mscorlib.dll CP0014 E:System.Diagnostics.Process.ErrorDataReceived:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 E:System.Diagnostics.Process.Exited:[T:System.ComponentModel.CategoryAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 E:System.Diagnostics.Process.OutputDataReceived:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 E:System.IO.FileSystemWatcher.Error:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 E:System.Timers.Timer.Elapsed:[T:System.ComponentModel.CategoryAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 F:System.Text.RegularExpressions.Regex.internalMatchTimeout:[T:System.Runtime.Serialization.OptionalFieldAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 M:System.Collections.IEnumerable.GetEnumerator:[T:System.Runtime.InteropServices.DispIdAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 M:System.Security.SecureString.AppendChar(System.Char):[T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 M:System.Security.SecureString.InsertAt(System.Int32,System.Char):[T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 M:System.Security.SecureString.RemoveAt(System.Int32):[T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 M:System.Security.SecureString.SetAt(System.Int32,System.Char):[T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.ComponentModel.BackgroundWorker.CancellationPending:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.ComponentModel.BackgroundWorker.IsBusy:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.ComponentModel.BackgroundWorker.WorkerReportsProgress:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.ComponentModel.BackgroundWorker.WorkerSupportsCancellation:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.ComponentModel.RunWorkerCompletedEventArgs.UserState:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.BasePriority:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.EnableRaisingEvents:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.EnableRaisingEvents:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.ExitCode:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.ExitCode:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.ExitTime:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.ExitTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.Handle:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.Handle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.HandleCount:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.HasExited:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.HasExited:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.Id:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.MachineName:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.MachineName:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.MainModule:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.MainModule:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.MainWindowHandle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.MainWindowTitle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.MaxWorkingSet:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.MinWorkingSet:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.Modules:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.Modules:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.NonpagedSystemMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.NonpagedSystemMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PagedMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PagedMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PagedSystemMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PagedSystemMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PeakPagedMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PeakPagedMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PeakVirtualMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PeakVirtualMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PeakWorkingSet:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PeakWorkingSet64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PriorityBoostEnabled:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PriorityClass:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PrivateMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PrivateMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PrivilegedProcessorTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.ProcessName:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.ProcessorAffinity:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.Responding:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.SafeHandle:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.SafeHandle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.SessionId:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StandardError:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StandardError:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StandardInput:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StandardInput:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StandardOutput:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StandardOutput:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StartInfo:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StartInfo:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StartTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.SynchronizingObject:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.SynchronizingObject:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.Threads:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.Threads:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.TotalProcessorTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.UserProcessorTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.VirtualMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.VirtualMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.WorkingSet:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.WorkingSet64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessModule.FileVersionInfo:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Arguments:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Arguments:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Arguments:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.CreateNoWindow:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.CreateNoWindow:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Domain:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Environment:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Environment:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Environment:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.EnvironmentVariables:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.EnvironmentVariables:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.EnvironmentVariables:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.ErrorDialog:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.ErrorDialog:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.ErrorDialogParentHandle:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.ErrorDialogParentHandle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.FileName:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.FileName:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.FileName:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.LoadUserProfile:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.PasswordInClearText:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.PasswordInClearText:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardError:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardError:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.UserName:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.UseShellExecute:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.UseShellExecute:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Verb:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Verbs:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Verbs:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.WindowStyle:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.WorkingDirectory:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.WorkingDirectory:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.WorkingDirectory:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessThread.IdealProcessor:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessThread.ProcessorAffinity:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.EnableRaisingEvents:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.Filter:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.Filter:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.IncludeSubdirectories:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.InternalBufferSize:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.InternalBufferSize:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.NotifyFilter:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.Path:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.Path:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.Site:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.SynchronizingObject:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.SynchronizingObject:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Timers.Timer.AutoReset:[T:System.ComponentModel.CategoryAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Timers.Timer.Enabled:[T:System.ComponentModel.CategoryAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Timers.Timer.Interval:[T:System.ComponentModel.CategoryAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Timers.Timer.Interval:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Timers.Timer.SynchronizingObject:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 T:System.ComponentModel.BackgroundWorker:[T:System.ComponentModel.DefaultEventAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 T:System.Diagnostics.Process:[T:System.ComponentModel.DefaultEventAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 T:System.Diagnostics.Process:[T:System.ComponentModel.DefaultPropertyAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 T:System.IO.FileSystemWatcher:[T:System.ComponentModel.DefaultEventAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.ComponentModel.BackgroundWorker.CancellationPending:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.ComponentModel.EventBasedAsync.dll - net10.0/System.ComponentModel.EventBasedAsync.dll + net11.0/System.ComponentModel.EventBasedAsync.dll CP0014 P:System.ComponentModel.BackgroundWorker.IsBusy:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.ComponentModel.EventBasedAsync.dll - net10.0/System.ComponentModel.EventBasedAsync.dll + net11.0/System.ComponentModel.EventBasedAsync.dll CP0014 P:System.ComponentModel.BackgroundWorker.WorkerReportsProgress:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.ComponentModel.EventBasedAsync.dll - net10.0/System.ComponentModel.EventBasedAsync.dll + net11.0/System.ComponentModel.EventBasedAsync.dll CP0014 P:System.ComponentModel.BackgroundWorker.WorkerSupportsCancellation:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.ComponentModel.EventBasedAsync.dll - net10.0/System.ComponentModel.EventBasedAsync.dll + net11.0/System.ComponentModel.EventBasedAsync.dll CP0014 P:System.ComponentModel.RunWorkerCompletedEventArgs.UserState:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.ComponentModel.EventBasedAsync.dll - net10.0/System.ComponentModel.EventBasedAsync.dll + net11.0/System.ComponentModel.EventBasedAsync.dll CP0014 T:System.ComponentModel.BackgroundWorker:[T:System.ComponentModel.DefaultEventAttribute] netstandard2.0/System.ComponentModel.EventBasedAsync.dll - net10.0/System.ComponentModel.EventBasedAsync.dll + net11.0/System.ComponentModel.EventBasedAsync.dll CP0014 E:System.Diagnostics.Process.ErrorDataReceived:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 E:System.Diagnostics.Process.Exited:[T:System.ComponentModel.CategoryAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 E:System.Diagnostics.Process.OutputDataReceived:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.BasePriority:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.EnableRaisingEvents:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.EnableRaisingEvents:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.ExitCode:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.ExitCode:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.ExitTime:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.ExitTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.Handle:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.Handle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.HandleCount:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.HasExited:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.HasExited:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.Id:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.MachineName:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.MachineName:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.MainModule:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.MainModule:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.MainWindowHandle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.MainWindowTitle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.MaxWorkingSet:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.MinWorkingSet:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.Modules:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.Modules:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.NonpagedSystemMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.NonpagedSystemMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.PagedMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.PagedMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.PagedSystemMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.PagedSystemMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.PeakPagedMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.PeakPagedMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.PeakVirtualMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.PeakVirtualMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.PeakWorkingSet:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.PeakWorkingSet64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.PriorityBoostEnabled:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.PriorityClass:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.PrivateMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.PrivateMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.PrivilegedProcessorTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.ProcessName:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.ProcessorAffinity:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.Responding:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.SafeHandle:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.SafeHandle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.SessionId:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.StandardError:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.StandardError:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.StandardInput:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.StandardInput:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.StandardOutput:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.StandardOutput:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.StartInfo:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.StartInfo:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.StartTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.SynchronizingObject:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.SynchronizingObject:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.Threads:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.Threads:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.TotalProcessorTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.UserProcessorTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.VirtualMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.VirtualMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.WorkingSet:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.Process.WorkingSet64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessModule.FileVersionInfo:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Arguments:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Arguments:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Arguments:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.CreateNoWindow:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.CreateNoWindow:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Domain:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Environment:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Environment:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Environment:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.EnvironmentVariables:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.EnvironmentVariables:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.EnvironmentVariables:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.ErrorDialog:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.ErrorDialog:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.ErrorDialogParentHandle:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.ErrorDialogParentHandle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.FileName:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.FileName:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.FileName:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.LoadUserProfile:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.PasswordInClearText:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.PasswordInClearText:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardError:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardError:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.UserName:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.UseShellExecute:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.UseShellExecute:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Verb:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Verbs:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Verbs:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.WindowStyle:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.WorkingDirectory:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.WorkingDirectory:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessStartInfo.WorkingDirectory:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessThread.IdealProcessor:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 P:System.Diagnostics.ProcessThread.ProcessorAffinity:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 T:System.Diagnostics.Process:[T:System.ComponentModel.DefaultEventAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 T:System.Diagnostics.Process:[T:System.ComponentModel.DefaultPropertyAttribute] netstandard2.0/System.Diagnostics.Process.dll - net10.0/System.Diagnostics.Process.dll + net11.0/System.Diagnostics.Process.dll CP0014 E:System.Diagnostics.Process.ErrorDataReceived:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 E:System.Diagnostics.Process.Exited:[T:System.ComponentModel.CategoryAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 E:System.Diagnostics.Process.OutputDataReceived:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 E:System.IO.FileSystemWatcher.Error:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 E:System.Timers.Timer.Elapsed:[T:System.ComponentModel.CategoryAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 F:System.Text.RegularExpressions.Regex.internalMatchTimeout:[T:System.Runtime.Serialization.OptionalFieldAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.ComponentModel.BackgroundWorker.CancellationPending:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.ComponentModel.BackgroundWorker.IsBusy:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.ComponentModel.BackgroundWorker.WorkerReportsProgress:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.ComponentModel.BackgroundWorker.WorkerSupportsCancellation:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.ComponentModel.RunWorkerCompletedEventArgs.UserState:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.BasePriority:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.EnableRaisingEvents:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.EnableRaisingEvents:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.ExitCode:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.ExitCode:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.ExitTime:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.ExitTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.Handle:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.Handle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.HandleCount:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.HasExited:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.HasExited:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.Id:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.MachineName:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.MachineName:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.MainModule:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.MainModule:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.MainWindowHandle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.MainWindowTitle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.MaxWorkingSet:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.MinWorkingSet:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.Modules:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.Modules:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.NonpagedSystemMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.NonpagedSystemMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.PagedMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.PagedMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.PagedSystemMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.PagedSystemMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.PeakPagedMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.PeakPagedMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.PeakVirtualMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.PeakVirtualMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.PeakWorkingSet:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.PeakWorkingSet64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.PriorityBoostEnabled:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.PriorityClass:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.PrivateMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.PrivateMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.PrivilegedProcessorTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.ProcessName:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.ProcessorAffinity:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.Responding:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.SafeHandle:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.SafeHandle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.SessionId:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.StandardError:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.StandardError:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.StandardInput:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.StandardInput:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.StandardOutput:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.StandardOutput:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.StartInfo:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.StartInfo:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.StartTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.SynchronizingObject:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.SynchronizingObject:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.Threads:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.Threads:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.TotalProcessorTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.UserProcessorTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.VirtualMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.VirtualMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.WorkingSet:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.Process.WorkingSet64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessModule.FileVersionInfo:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Arguments:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Arguments:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Arguments:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.CreateNoWindow:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.CreateNoWindow:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Domain:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Environment:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Environment:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Environment:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.EnvironmentVariables:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.EnvironmentVariables:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.EnvironmentVariables:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.ErrorDialog:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.ErrorDialog:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.ErrorDialogParentHandle:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.ErrorDialogParentHandle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.FileName:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.FileName:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.FileName:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.LoadUserProfile:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.PasswordInClearText:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.PasswordInClearText:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardError:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardError:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.UserName:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.UseShellExecute:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.UseShellExecute:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Verb:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Verbs:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Verbs:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.WindowStyle:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.WorkingDirectory:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.WorkingDirectory:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessStartInfo.WorkingDirectory:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessThread.IdealProcessor:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Diagnostics.ProcessThread.ProcessorAffinity:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.IO.FileSystemWatcher.EnableRaisingEvents:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.IO.FileSystemWatcher.Filter:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.IO.FileSystemWatcher.Filter:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.IO.FileSystemWatcher.IncludeSubdirectories:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.IO.FileSystemWatcher.InternalBufferSize:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.IO.FileSystemWatcher.InternalBufferSize:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.IO.FileSystemWatcher.NotifyFilter:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.IO.FileSystemWatcher.Path:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.IO.FileSystemWatcher.Path:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.IO.FileSystemWatcher.Site:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.IO.FileSystemWatcher.SynchronizingObject:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.IO.FileSystemWatcher.SynchronizingObject:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Timers.Timer.AutoReset:[T:System.ComponentModel.CategoryAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Timers.Timer.Enabled:[T:System.ComponentModel.CategoryAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Timers.Timer.Interval:[T:System.ComponentModel.CategoryAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Timers.Timer.Interval:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 P:System.Timers.Timer.SynchronizingObject:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 T:System.ComponentModel.BackgroundWorker:[T:System.ComponentModel.DefaultEventAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 T:System.Diagnostics.Process:[T:System.ComponentModel.DefaultEventAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 T:System.Diagnostics.Process:[T:System.ComponentModel.DefaultPropertyAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 T:System.IO.FileSystemWatcher:[T:System.ComponentModel.DefaultEventAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0014 E:System.IO.FileSystemWatcher.Error:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.IO.FileSystem.Watcher.dll - net10.0/System.IO.FileSystem.Watcher.dll + net11.0/System.IO.FileSystem.Watcher.dll CP0014 P:System.IO.FileSystemWatcher.EnableRaisingEvents:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.IO.FileSystem.Watcher.dll - net10.0/System.IO.FileSystem.Watcher.dll + net11.0/System.IO.FileSystem.Watcher.dll CP0014 P:System.IO.FileSystemWatcher.Filter:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.IO.FileSystem.Watcher.dll - net10.0/System.IO.FileSystem.Watcher.dll + net11.0/System.IO.FileSystem.Watcher.dll CP0014 P:System.IO.FileSystemWatcher.Filter:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/System.IO.FileSystem.Watcher.dll - net10.0/System.IO.FileSystem.Watcher.dll + net11.0/System.IO.FileSystem.Watcher.dll CP0014 P:System.IO.FileSystemWatcher.IncludeSubdirectories:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.IO.FileSystem.Watcher.dll - net10.0/System.IO.FileSystem.Watcher.dll + net11.0/System.IO.FileSystem.Watcher.dll CP0014 P:System.IO.FileSystemWatcher.InternalBufferSize:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.IO.FileSystem.Watcher.dll - net10.0/System.IO.FileSystem.Watcher.dll + net11.0/System.IO.FileSystem.Watcher.dll CP0014 P:System.IO.FileSystemWatcher.InternalBufferSize:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.IO.FileSystem.Watcher.dll - net10.0/System.IO.FileSystem.Watcher.dll + net11.0/System.IO.FileSystem.Watcher.dll CP0014 P:System.IO.FileSystemWatcher.NotifyFilter:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.IO.FileSystem.Watcher.dll - net10.0/System.IO.FileSystem.Watcher.dll + net11.0/System.IO.FileSystem.Watcher.dll CP0014 P:System.IO.FileSystemWatcher.Path:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.IO.FileSystem.Watcher.dll - net10.0/System.IO.FileSystem.Watcher.dll + net11.0/System.IO.FileSystem.Watcher.dll CP0014 P:System.IO.FileSystemWatcher.Path:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.0/System.IO.FileSystem.Watcher.dll - net10.0/System.IO.FileSystem.Watcher.dll + net11.0/System.IO.FileSystem.Watcher.dll CP0014 P:System.IO.FileSystemWatcher.Site:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.IO.FileSystem.Watcher.dll - net10.0/System.IO.FileSystem.Watcher.dll + net11.0/System.IO.FileSystem.Watcher.dll CP0014 P:System.IO.FileSystemWatcher.SynchronizingObject:[T:System.ComponentModel.BrowsableAttribute] netstandard2.0/System.IO.FileSystem.Watcher.dll - net10.0/System.IO.FileSystem.Watcher.dll + net11.0/System.IO.FileSystem.Watcher.dll CP0014 P:System.IO.FileSystemWatcher.SynchronizingObject:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.IO.FileSystem.Watcher.dll - net10.0/System.IO.FileSystem.Watcher.dll + net11.0/System.IO.FileSystem.Watcher.dll CP0014 T:System.IO.FileSystemWatcher:[T:System.ComponentModel.DefaultEventAttribute] netstandard2.0/System.IO.FileSystem.Watcher.dll - net10.0/System.IO.FileSystem.Watcher.dll + net11.0/System.IO.FileSystem.Watcher.dll CP0014 M:System.Collections.IEnumerable.GetEnumerator:[T:System.Runtime.InteropServices.DispIdAttribute] netstandard2.0/System.Runtime.dll - net10.0/System.Runtime.dll + net11.0/System.Runtime.dll CP0014 M:System.Security.SecureString.AppendChar(System.Char):[T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] netstandard2.0/System.Security.SecureString.dll - net10.0/System.Security.SecureString.dll + net11.0/System.Security.SecureString.dll CP0014 M:System.Security.SecureString.InsertAt(System.Int32,System.Char):[T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] netstandard2.0/System.Security.SecureString.dll - net10.0/System.Security.SecureString.dll + net11.0/System.Security.SecureString.dll CP0014 M:System.Security.SecureString.RemoveAt(System.Int32):[T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] netstandard2.0/System.Security.SecureString.dll - net10.0/System.Security.SecureString.dll + net11.0/System.Security.SecureString.dll CP0014 M:System.Security.SecureString.SetAt(System.Int32,System.Char):[T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] netstandard2.0/System.Security.SecureString.dll - net10.0/System.Security.SecureString.dll + net11.0/System.Security.SecureString.dll CP0014 F:System.Text.RegularExpressions.Regex.internalMatchTimeout:[T:System.Runtime.Serialization.OptionalFieldAttribute] netstandard2.0/System.Text.RegularExpressions.dll - net10.0/System.Text.RegularExpressions.dll + net11.0/System.Text.RegularExpressions.dll CP0015 P:System.Timers.Timer.Interval:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0015 T:System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute:[T:System.AttributeUsageAttribute] netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0015 P:System.Timers.Timer.Interval:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0015 T:System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute:[T:System.AttributeUsageAttribute] netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0021 M:System.Runtime.InteropServices.Marshal.CreateAggregatedObject``1(System.IntPtr,``0)``0:notnull netstandard2.0/mscorlib.dll - net10.0/mscorlib.dll + net11.0/mscorlib.dll CP0021 M:System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate``1(``0)``0:notnull netstandard2.0/mscorlib.dll - net10.0/mscorlib.dll + net11.0/mscorlib.dll CP0021 T:System.Collections.Concurrent.ConcurrentDictionary`2``0:notnull netstandard2.0/mscorlib.dll - net10.0/mscorlib.dll + net11.0/mscorlib.dll CP0021 T:System.Collections.Generic.Dictionary`2``0:notnull netstandard2.0/mscorlib.dll - net10.0/mscorlib.dll + net11.0/mscorlib.dll CP0021 T:System.Collections.ObjectModel.KeyedCollection`2``0:notnull netstandard2.0/mscorlib.dll - net10.0/mscorlib.dll + net11.0/mscorlib.dll CP0021 T:System.Collections.ObjectModel.ReadOnlyDictionary`2``0:notnull netstandard2.0/mscorlib.dll - net10.0/mscorlib.dll + net11.0/mscorlib.dll CP0021 T:System.Tuple`8``7:notnull netstandard2.0/mscorlib.dll - net10.0/mscorlib.dll + net11.0/mscorlib.dll CP0021 M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})``1:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2})``1:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.ParallelEnumerable.ToDictionary``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.ParallelEnumerable.ToDictionary``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})``1:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.ParallelEnumerable.ToDictionary``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.ParallelEnumerable.ToDictionary``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2})``1:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.ParallelEnumerable.ToLookup``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.ParallelEnumerable.ToLookup``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})``1:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.ParallelEnumerable.ToLookup``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.ParallelEnumerable.ToLookup``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2})``1:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Runtime.InteropServices.Marshal.CreateAggregatedObject``1(System.IntPtr,``0)``0:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate``1(``0)``0:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 T:System.Collections.Concurrent.ConcurrentDictionary`2``0:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 T:System.Collections.Generic.Dictionary`2``0:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 T:System.Collections.Generic.SortedDictionary`2``0:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 T:System.Collections.Generic.SortedList`2``0:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 T:System.Collections.ObjectModel.KeyedCollection`2``0:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 T:System.Collections.ObjectModel.ReadOnlyDictionary`2``0:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 T:System.Tuple`8``7:notnull netstandard2.0/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 T:System.Collections.Concurrent.ConcurrentDictionary`2``0:notnull netstandard2.0/System.Collections.Concurrent.dll - net10.0/System.Collections.Concurrent.dll + net11.0/System.Collections.Concurrent.dll CP0021 T:System.Collections.Generic.Dictionary`2``0:notnull netstandard2.0/System.Collections.dll - net10.0/System.Collections.dll + net11.0/System.Collections.dll CP0021 T:System.Collections.Generic.SortedDictionary`2``0:notnull netstandard2.0/System.Collections.dll - net10.0/System.Collections.dll + net11.0/System.Collections.dll CP0021 T:System.Collections.Generic.SortedList`2``0:notnull netstandard2.0/System.Collections.dll - net10.0/System.Collections.dll + net11.0/System.Collections.dll CP0021 M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/System.Core.dll - net10.0/System.Core.dll + net11.0/System.Core.dll CP0021 M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})``1:notnull netstandard2.0/System.Core.dll - net10.0/System.Core.dll + net11.0/System.Core.dll CP0021 M:System.Linq.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/System.Core.dll - net10.0/System.Core.dll + net11.0/System.Core.dll CP0021 M:System.Linq.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2})``1:notnull netstandard2.0/System.Core.dll - net10.0/System.Core.dll + net11.0/System.Core.dll CP0021 M:System.Linq.ParallelEnumerable.ToDictionary``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/System.Core.dll - net10.0/System.Core.dll + net11.0/System.Core.dll CP0021 M:System.Linq.ParallelEnumerable.ToDictionary``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})``1:notnull netstandard2.0/System.Core.dll - net10.0/System.Core.dll + net11.0/System.Core.dll CP0021 M:System.Linq.ParallelEnumerable.ToDictionary``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/System.Core.dll - net10.0/System.Core.dll + net11.0/System.Core.dll CP0021 M:System.Linq.ParallelEnumerable.ToDictionary``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2})``1:notnull netstandard2.0/System.Core.dll - net10.0/System.Core.dll + net11.0/System.Core.dll CP0021 M:System.Linq.ParallelEnumerable.ToLookup``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/System.Core.dll - net10.0/System.Core.dll + net11.0/System.Core.dll CP0021 M:System.Linq.ParallelEnumerable.ToLookup``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})``1:notnull netstandard2.0/System.Core.dll - net10.0/System.Core.dll + net11.0/System.Core.dll CP0021 M:System.Linq.ParallelEnumerable.ToLookup``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/System.Core.dll - net10.0/System.Core.dll + net11.0/System.Core.dll CP0021 M:System.Linq.ParallelEnumerable.ToLookup``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2})``1:notnull netstandard2.0/System.Core.dll - net10.0/System.Core.dll + net11.0/System.Core.dll CP0021 T:System.Collections.Generic.SortedDictionary`2``0:notnull netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0021 T:System.Collections.Generic.SortedList`2``0:notnull netstandard2.0/System.dll - net10.0/System.dll + net11.0/System.dll CP0021 M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/System.Linq.dll - net10.0/System.Linq.dll + net11.0/System.Linq.dll CP0021 M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})``1:notnull netstandard2.0/System.Linq.dll - net10.0/System.Linq.dll + net11.0/System.Linq.dll CP0021 M:System.Linq.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/System.Linq.dll - net10.0/System.Linq.dll + net11.0/System.Linq.dll CP0021 M:System.Linq.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2})``1:notnull netstandard2.0/System.Linq.dll - net10.0/System.Linq.dll + net11.0/System.Linq.dll CP0021 M:System.Linq.ParallelEnumerable.ToDictionary``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/System.Linq.Parallel.dll - net10.0/System.Linq.Parallel.dll + net11.0/System.Linq.Parallel.dll CP0021 M:System.Linq.ParallelEnumerable.ToDictionary``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})``1:notnull netstandard2.0/System.Linq.Parallel.dll - net10.0/System.Linq.Parallel.dll + net11.0/System.Linq.Parallel.dll CP0021 M:System.Linq.ParallelEnumerable.ToDictionary``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/System.Linq.Parallel.dll - net10.0/System.Linq.Parallel.dll + net11.0/System.Linq.Parallel.dll CP0021 M:System.Linq.ParallelEnumerable.ToDictionary``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2})``1:notnull netstandard2.0/System.Linq.Parallel.dll - net10.0/System.Linq.Parallel.dll + net11.0/System.Linq.Parallel.dll CP0021 M:System.Linq.ParallelEnumerable.ToLookup``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/System.Linq.Parallel.dll - net10.0/System.Linq.Parallel.dll + net11.0/System.Linq.Parallel.dll CP0021 M:System.Linq.ParallelEnumerable.ToLookup``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})``1:notnull netstandard2.0/System.Linq.Parallel.dll - net10.0/System.Linq.Parallel.dll + net11.0/System.Linq.Parallel.dll CP0021 M:System.Linq.ParallelEnumerable.ToLookup``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.0/System.Linq.Parallel.dll - net10.0/System.Linq.Parallel.dll + net11.0/System.Linq.Parallel.dll CP0021 M:System.Linq.ParallelEnumerable.ToLookup``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2})``1:notnull netstandard2.0/System.Linq.Parallel.dll - net10.0/System.Linq.Parallel.dll + net11.0/System.Linq.Parallel.dll CP0021 T:System.Collections.ObjectModel.KeyedCollection`2``0:notnull netstandard2.0/System.ObjectModel.dll - net10.0/System.ObjectModel.dll + net11.0/System.ObjectModel.dll CP0021 T:System.Collections.ObjectModel.ReadOnlyDictionary`2``0:notnull netstandard2.0/System.ObjectModel.dll - net10.0/System.ObjectModel.dll + net11.0/System.ObjectModel.dll CP0021 T:System.Tuple`8``7:notnull netstandard2.0/System.Runtime.dll - net10.0/System.Runtime.dll + net11.0/System.Runtime.dll CP0021 M:System.Runtime.InteropServices.Marshal.CreateAggregatedObject``1(System.IntPtr,``0)``0:notnull netstandard2.0/System.Runtime.InteropServices.dll - net10.0/System.Runtime.InteropServices.dll + net11.0/System.Runtime.InteropServices.dll CP0021 M:System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate``1(``0)``0:notnull netstandard2.0/System.Runtime.InteropServices.dll - net10.0/System.Runtime.InteropServices.dll + net11.0/System.Runtime.InteropServices.dll \ No newline at end of file diff --git a/src/libraries/apicompat/ApiCompatBaseline.netstandard2.1.xml b/src/libraries/apicompat/ApiCompatBaseline.netstandard2.1.xml index b32deb0ed95446..af134b78c32182 100644 --- a/src/libraries/apicompat/ApiCompatBaseline.netstandard2.1.xml +++ b/src/libraries/apicompat/ApiCompatBaseline.netstandard2.1.xml @@ -5,1002 +5,1002 @@ CP0014 E:System.Diagnostics.Process.ErrorDataReceived:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 E:System.Diagnostics.Process.Exited:[T:System.ComponentModel.CategoryAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 E:System.Diagnostics.Process.OutputDataReceived:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 E:System.IO.FileSystemWatcher.Error:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 E:System.Timers.Timer.Elapsed:[T:System.ComponentModel.CategoryAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 M:System.Security.SecureString.AppendChar(System.Char):[T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 M:System.Security.SecureString.InsertAt(System.Int32,System.Char):[T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 M:System.Security.SecureString.RemoveAt(System.Int32):[T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 M:System.Security.SecureString.SetAt(System.Int32,System.Char):[T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.ComponentModel.BackgroundWorker.CancellationPending:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.ComponentModel.BackgroundWorker.IsBusy:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.ComponentModel.BackgroundWorker.WorkerReportsProgress:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.ComponentModel.BackgroundWorker.WorkerSupportsCancellation:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.ComponentModel.RunWorkerCompletedEventArgs.UserState:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.BasePriority:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.EnableRaisingEvents:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.EnableRaisingEvents:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.ExitCode:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.ExitCode:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.ExitTime:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.ExitTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.Handle:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.Handle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.HandleCount:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.HasExited:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.HasExited:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.Id:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.MachineName:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.MachineName:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.MainModule:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.MainModule:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.MainWindowHandle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.MainWindowTitle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.MaxWorkingSet:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.MinWorkingSet:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.Modules:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.Modules:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.NonpagedSystemMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.NonpagedSystemMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PagedMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PagedMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PagedSystemMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PagedSystemMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PeakPagedMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PeakPagedMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PeakVirtualMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PeakVirtualMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PeakWorkingSet:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PeakWorkingSet64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PriorityBoostEnabled:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PriorityClass:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PrivateMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PrivateMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.PrivilegedProcessorTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.ProcessName:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.ProcessorAffinity:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.Responding:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.SafeHandle:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.SafeHandle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.SessionId:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StandardError:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StandardError:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StandardInput:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StandardInput:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StandardOutput:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StandardOutput:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StartInfo:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StartInfo:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.StartTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.SynchronizingObject:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.SynchronizingObject:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.Threads:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.Threads:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.TotalProcessorTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.UserProcessorTime:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.VirtualMemorySize:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.VirtualMemorySize64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.WorkingSet:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.Process.WorkingSet64:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessModule.FileVersionInfo:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Arguments:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Arguments:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Arguments:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.CreateNoWindow:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.CreateNoWindow:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Domain:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Environment:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Environment:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Environment:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.EnvironmentVariables:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.EnvironmentVariables:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.EnvironmentVariables:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.ErrorDialog:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.ErrorDialog:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.ErrorDialogParentHandle:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.ErrorDialogParentHandle:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.FileName:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.FileName:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.FileName:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.LoadUserProfile:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.PasswordInClearText:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.PasswordInClearText:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardError:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardError:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.UserName:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.UseShellExecute:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.UseShellExecute:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Verb:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Verbs:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.Verbs:[T:System.ComponentModel.DesignerSerializationVisibilityAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.WindowStyle:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.WorkingDirectory:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.WorkingDirectory:[T:System.ComponentModel.NotifyParentPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessStartInfo.WorkingDirectory:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessThread.IdealProcessor:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Diagnostics.ProcessThread.ProcessorAffinity:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.EnableRaisingEvents:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.Filter:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.Filter:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.IncludeSubdirectories:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.InternalBufferSize:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.InternalBufferSize:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.NotifyFilter:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.Path:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.Path:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.Site:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.SynchronizingObject:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.IO.FileSystemWatcher.SynchronizingObject:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Timers.Timer.AutoReset:[T:System.ComponentModel.CategoryAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Timers.Timer.Enabled:[T:System.ComponentModel.CategoryAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Timers.Timer.Interval:[T:System.ComponentModel.CategoryAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Timers.Timer.Interval:[T:System.ComponentModel.SettingsBindableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 P:System.Timers.Timer.SynchronizingObject:[T:System.ComponentModel.BrowsableAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 T:System.ComponentModel.BackgroundWorker:[T:System.ComponentModel.DefaultEventAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 T:System.Diagnostics.Process:[T:System.ComponentModel.DefaultEventAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 T:System.Diagnostics.Process:[T:System.ComponentModel.DefaultPropertyAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0014 T:System.IO.FileSystemWatcher:[T:System.ComponentModel.DefaultEventAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0015 P:System.Timers.Timer.Interval:[T:System.ComponentModel.DefaultValueAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0015 T:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute:[T:System.AttributeUsageAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0015 T:System.Runtime.InteropServices.ManagedToNativeComInteropStubAttribute:[T:System.AttributeUsageAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0015 T:System.Xml.Serialization.XmlAnyAttributeAttribute:[T:System.AttributeUsageAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0015 T:System.Xml.Serialization.XmlNamespaceDeclarationsAttribute:[T:System.AttributeUsageAttribute] netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})``1:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2})``1:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.ParallelEnumerable.ToDictionary``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.ParallelEnumerable.ToDictionary``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})``1:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.ParallelEnumerable.ToDictionary``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.ParallelEnumerable.ToDictionary``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2})``1:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.ParallelEnumerable.ToLookup``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.ParallelEnumerable.ToLookup``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})``1:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.ParallelEnumerable.ToLookup``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})``1:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Linq.ParallelEnumerable.ToLookup``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2})``1:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Runtime.InteropServices.Marshal.CreateAggregatedObject``1(System.IntPtr,``0)``0:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 M:System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate``1(``0)``0:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 T:System.Collections.Concurrent.ConcurrentDictionary`2``0:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 T:System.Collections.Generic.Dictionary`2``0:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 T:System.Collections.Generic.SortedDictionary`2``0:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 T:System.Collections.Generic.SortedList`2``0:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 T:System.Collections.ObjectModel.KeyedCollection`2``0:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 T:System.Collections.ObjectModel.ReadOnlyDictionary`2``0:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll CP0021 T:System.Tuple`8``7:notnull netstandard2.1/netstandard.dll - net10.0/netstandard.dll + net11.0/netstandard.dll \ No newline at end of file diff --git a/src/mono/msbuild/apple/build/AppleBuild.LocalBuild.props b/src/mono/msbuild/apple/build/AppleBuild.LocalBuild.props index 221d9f34feea52..92668cf265fafe 100644 --- a/src/mono/msbuild/apple/build/AppleBuild.LocalBuild.props +++ b/src/mono/msbuild/apple/build/AppleBuild.LocalBuild.props @@ -22,9 +22,9 @@ - <_NetCoreAppCurrent>net10.0 + <_NetCoreAppCurrent>net11.0 $(_NetCoreAppCurrent) - <_NetCoreAppToolCurrent>net10.0 + <_NetCoreAppToolCurrent>net11.0 false diff --git a/src/mono/nuget/Microsoft.NET.Runtime.WebAssembly.Sdk/Sdk/AutoImport.props b/src/mono/nuget/Microsoft.NET.Runtime.WebAssembly.Sdk/Sdk/AutoImport.props index f2d45ad27a8e06..03dab43c0c232e 100644 --- a/src/mono/nuget/Microsoft.NET.Runtime.WebAssembly.Sdk/Sdk/AutoImport.props +++ b/src/mono/nuget/Microsoft.NET.Runtime.WebAssembly.Sdk/Sdk/AutoImport.props @@ -1,7 +1,7 @@ - net10.0 + net11.0 true diff --git a/src/mono/nuget/Microsoft.NET.Runtime.WebAssembly.Wasi.Sdk/Sdk/AutoImport.props b/src/mono/nuget/Microsoft.NET.Runtime.WebAssembly.Wasi.Sdk/Sdk/AutoImport.props index a31e36737e880b..6a9a05d7a3dbb0 100644 --- a/src/mono/nuget/Microsoft.NET.Runtime.WebAssembly.Wasi.Sdk/Sdk/AutoImport.props +++ b/src/mono/nuget/Microsoft.NET.Runtime.WebAssembly.Wasi.Sdk/Sdk/AutoImport.props @@ -1,7 +1,7 @@ - net10.0 + net11.0 true diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest.pkgproj b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest.pkgproj index 2997dc75ffa94e..3b0c91209bfbd6 100644 --- a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest.pkgproj +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest.pkgproj @@ -45,7 +45,7 @@ - <_WorkloadManifestValues Include="NetVersion" Value="net10" /> + <_WorkloadManifestValues Include="NetVersion" Value="net11" /> <_WorkloadManifestValues Include="WorkloadVersion" Value="$(PackageVersion)" /> <_WorkloadManifestValues Include="PackageVersion" Value="$(PackageVersion)" /> <_WorkloadManifestValues Include="PackageVersionNet9" Value="$(PackageVersionNet9)" Condition="'$(PackageVersionNet9)' != ''" /> diff --git a/src/mono/wasm/build/WasmApp.LocalBuild.props b/src/mono/wasm/build/WasmApp.LocalBuild.props index 2a313c41979029..608742da7e5b57 100644 --- a/src/mono/wasm/build/WasmApp.LocalBuild.props +++ b/src/mono/wasm/build/WasmApp.LocalBuild.props @@ -22,7 +22,7 @@ - <_NetCoreAppToolCurrent>net10.0 + <_NetCoreAppToolCurrent>net11.0 false true diff --git a/src/mono/wasm/templates/Microsoft.NET.Runtime.WebAssembly.Templates.csproj b/src/mono/wasm/templates/Microsoft.NET.Runtime.WebAssembly.Templates.csproj index 3a0957bcfbe060..b1bae872a5ba21 100644 --- a/src/mono/wasm/templates/Microsoft.NET.Runtime.WebAssembly.Templates.csproj +++ b/src/mono/wasm/templates/Microsoft.NET.Runtime.WebAssembly.Templates.csproj @@ -1,16 +1,16 @@ + $(NetCoreAppToolCurrent) + Template - Microsoft.NET.Runtime.WebAssembly.Templates.net10 + Microsoft.NET.Runtime.WebAssembly.Templates.net11 WebAssembly Templates Microsoft Templates to create WebAssembly projects. dotnet-new;templates - $(NetCoreAppToolCurrent) - true false content diff --git a/src/mono/wasm/templates/templates/browser/.template.config/template.json b/src/mono/wasm/templates/templates/browser/.template.config/template.json index aa939b87eb951f..bf63166031178d 100644 --- a/src/mono/wasm/templates/templates/browser/.template.config/template.json +++ b/src/mono/wasm/templates/templates/browser/.template.config/template.json @@ -5,7 +5,7 @@ "generatorVersions": "[1.0.0.0-*)", "groupIdentity": "WebAssembly.Browser", "precedence": 9000, - "identity": "WebAssembly.Browser.10.0", + "identity": "WebAssembly.Browser.11.0", "name": "WebAssembly Browser App", "description": "A project template for creating a .NET app that runs on WebAssembly in a browser", "shortName": "wasmbrowser", @@ -40,12 +40,12 @@ "datatype": "choice", "choices": [ { - "choice": "net10.0", - "description": "Target net10.0", - "displayName": ".NET 10.0" + "choice": "net11.0", + "description": "Target net11.0", + "displayName": ".NET 11.0" } ], - "defaultValue": "net10.0", + "defaultValue": "net11.0", "replaces": "netX.0", "displayName": "framework" } diff --git a/src/mono/wasm/templates/templates/console/.template.config/template.json b/src/mono/wasm/templates/templates/console/.template.config/template.json index c5372c82d13e9e..722734936e6d39 100644 --- a/src/mono/wasm/templates/templates/console/.template.config/template.json +++ b/src/mono/wasm/templates/templates/console/.template.config/template.json @@ -4,7 +4,7 @@ "classifications": [ "Web", "WebAssembly", "Console" ], "groupIdentity": "WebAssembly.Console", "precedence": 9000, - "identity": "WebAssembly.Console.10.0", + "identity": "WebAssembly.Console.11.0", "name": "WebAssembly Console App", "description": "A project template for creating a .NET app that runs on WebAssembly on Node JS or V8", "shortName": "wasmconsole", @@ -21,12 +21,12 @@ "datatype": "choice", "choices": [ { - "choice": "net10.0", - "description": "Target net10.0", - "displayName": ".NET 10.0" + "choice": "net11.0", + "description": "Target net11.0", + "displayName": ".NET 11.0" } ], - "defaultValue": "net10.0", + "defaultValue": "net11.0", "replaces": "netX.0", "displayName": "framework" } diff --git a/src/mono/wasm/templates/templates/wasi-console/.template.config/template.json b/src/mono/wasm/templates/templates/wasi-console/.template.config/template.json index c24adb95117742..43d64bf72dd66d 100644 --- a/src/mono/wasm/templates/templates/wasi-console/.template.config/template.json +++ b/src/mono/wasm/templates/templates/wasi-console/.template.config/template.json @@ -4,7 +4,7 @@ "classifications": [ "Wasi", "WasiConsole" ], "groupIdentity": "Wasi.Console", "precedence": 9000, - "identity": "Wasi.Console.10.0", + "identity": "Wasi.Console.11.0", "name": "Wasi Console App", "description": "A project template for creating a .NET app that runs on a WASI runtime", "shortName": "wasiconsole", @@ -21,12 +21,12 @@ "datatype": "choice", "choices": [ { - "choice": "net10.0", - "description": "Target net10.0", - "displayName": ".NET 10.0" + "choice": "net11.0", + "description": "Target net11.0", + "displayName": ".NET 11.0" } ], - "defaultValue": "net10.0", + "defaultValue": "net11.0", "replaces": "netX.0", "displayName": "framework" } diff --git a/src/native/package.json b/src/native/package.json index c33fc705b4ecb0..5f4d6f1f0cfbd5 100644 --- a/src/native/package.json +++ b/src/native/package.json @@ -12,8 +12,8 @@ "scripts": { "rollup:stub": "node rollup.stub.js", "rollup:cmake": "rollup -c --environment ", - "rollup:release": "rollup -c --environment Configuration:Release,ProductVersion:10.0.0-dev,ContinuousIntegrationBuild:false", - "rollup:debug": "rollup -c --environment Configuration:Debug,ProductVersion:10.0.0-dev,ContinuousIntegrationBuild:false", + "rollup:release": "rollup -c --environment Configuration:Release,ProductVersion:11.0.0-dev,ContinuousIntegrationBuild:false", + "rollup:debug": "rollup -c --environment Configuration:Debug,ProductVersion:11.0.0-dev,ContinuousIntegrationBuild:false", "lint": "eslint --no-color --max-warnings=0 \"./**/*.ts\" \"./**/*.js\"", "format": "eslint --fix \"./**/*.ts\" \"./*.js\"" }, diff --git a/src/tools/illink/src/linker/CompatibilitySuppressions.xml b/src/tools/illink/src/linker/CompatibilitySuppressions.xml index eba23205563f29..ea5cd7c17ab893 100644 --- a/src/tools/illink/src/linker/CompatibilitySuppressions.xml +++ b/src/tools/illink/src/linker/CompatibilitySuppressions.xml @@ -564,8 +564,6 @@ CP0001 T:Mono.Linker.Dataflow.TrimAnalysisGenericInstantiationAccessPattern - ref/net10.0/illink.dll - lib/net10.0/illink.dll CP0002 @@ -1538,14 +1536,10 @@ CP0002 M:Mono.Linker.LinkContext.get_DisableGeneratedCodeHeuristics - ref/net10.0/illink.dll - lib/net10.0/illink.dll CP0002 M:Mono.Linker.LinkContext.set_DisableGeneratedCodeHeuristics(System.Boolean) - ref/net10.0/illink.dll - lib/net10.0/illink.dll CP0008 From 1ef8eb3658a609a89e710eecadb649d708e528de Mon Sep 17 00:00:00 2001 From: "Eric St. John" Date: Tue, 2 Dec 2025 12:28:28 -0800 Subject: [PATCH 03/43] Temporarily use net10.0 pruning data on net11.0 --- Directory.Build.targets | 18 ++++++++++++++++++ .../ILCompiler.Reflection.ReadyToRun.csproj | 7 +------ 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/Directory.Build.targets b/Directory.Build.targets index d1c90653897e7d..061376bfee1b4b 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -209,4 +209,22 @@ + + + + true + 10.0 + + + + + + diff --git a/src/coreclr/tools/aot/ILCompiler.Reflection.ReadyToRun/ILCompiler.Reflection.ReadyToRun.csproj b/src/coreclr/tools/aot/ILCompiler.Reflection.ReadyToRun/ILCompiler.Reflection.ReadyToRun.csproj index 061cad8eb38812..68bba4009b6e65 100644 --- a/src/coreclr/tools/aot/ILCompiler.Reflection.ReadyToRun/ILCompiler.Reflection.ReadyToRun.csproj +++ b/src/coreclr/tools/aot/ILCompiler.Reflection.ReadyToRun/ILCompiler.Reflection.ReadyToRun.csproj @@ -20,12 +20,7 @@ This package provides a low-level ReadyToRun file format decoder. This package is experimental. ILCompiler.Reflection.ReadyToRun.Experimental - - - - - - + From 39781eda4b3ee657d976fea028e58a1f86ea7fe3 Mon Sep 17 00:00:00 2001 From: "Eric St. John" Date: Tue, 2 Dec 2025 13:02:18 -0800 Subject: [PATCH 04/43] Hardcode version for intellisense files --- eng/intellisense.targets | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eng/intellisense.targets b/eng/intellisense.targets index e53bf035e91367..c6ddd0aa4eb3ec 100644 --- a/eng/intellisense.targets +++ b/eng/intellisense.targets @@ -6,7 +6,8 @@ $([MSBuild]::NormalizeDirectory('$(NuGetPackageRoot)', 'microsoft.private.intellisense', '$(MicrosoftPrivateIntellisenseVersion)', 'IntellisenseFiles')) - $([MSBuild]::NormalizePath('$(IntellisensePackageXmlRootFolder)', 'net-$(NetCoreAppCurrentVersion)', '1033', '$(AssemblyName).xml')) + + $([MSBuild]::NormalizePath('$(IntellisensePackageXmlRootFolder)', 'net-10.0', '1033', '$(AssemblyName).xml')) $([MSBuild]::NormalizePath('$(IntellisensePackageXmlRootFolder)', 'net', '1033', '$(AssemblyName).xml')) $(IntellisensePackageXmlFilePathFromNetVersionFolder) $(IntellisensePackageXmlFilePathFromNetFolder) From 8d091b8dda53012936099e09cf7f8a913c43a836 Mon Sep 17 00:00:00 2001 From: "Eric St. John" Date: Tue, 2 Dec 2025 13:04:19 -0800 Subject: [PATCH 05/43] Make WasmSymbolicator target NetCoreAppMinimum --- src/mono/wasm/symbolicator/WasmSymbolicator.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mono/wasm/symbolicator/WasmSymbolicator.csproj b/src/mono/wasm/symbolicator/WasmSymbolicator.csproj index 45a2b5fefbc76b..3a7b67c435046b 100644 --- a/src/mono/wasm/symbolicator/WasmSymbolicator.csproj +++ b/src/mono/wasm/symbolicator/WasmSymbolicator.csproj @@ -2,10 +2,10 @@ - $(NetCoreAppPrevious) + $(NetCoreAppMinimum) Exe enable enable From 627265fd9bdd8ad8ccf09c25c964d8bfa1ab883d Mon Sep 17 00:00:00 2001 From: "Eric St. John" Date: Tue, 2 Dec 2025 14:28:24 -0800 Subject: [PATCH 06/43] Fixing more exclusive usage of NetCoreAppPrevious --- eng/testing/tests.wasm.targets | 2 +- .../Net/Prerequisites/LocalEchoServer.helix.targets | 4 ++-- .../tests/System/Net/Prerequisites/LocalEchoServer.props | 8 ++++---- .../Net/Prerequisites/NetCoreServer/NetCoreServer.csproj | 6 +++--- .../RemoteLoopServer/RemoteLoopServer.csproj | 6 +++--- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/eng/testing/tests.wasm.targets b/eng/testing/tests.wasm.targets index f0d99fa6d2872f..b8c96fe6c342b4 100644 --- a/eng/testing/tests.wasm.targets +++ b/eng/testing/tests.wasm.targets @@ -92,7 +92,7 @@ - + diff --git a/src/libraries/Common/tests/System/Net/Prerequisites/LocalEchoServer.helix.targets b/src/libraries/Common/tests/System/Net/Prerequisites/LocalEchoServer.helix.targets index 060ef3675de561..55473cdf7389d8 100644 --- a/src/libraries/Common/tests/System/Net/Prerequisites/LocalEchoServer.helix.targets +++ b/src/libraries/Common/tests/System/Net/Prerequisites/LocalEchoServer.helix.targets @@ -5,8 +5,8 @@ '$(Scenario)' == 'WasmTestOnFirefox')"> $(HelixExtensionTargets);_AddMiddlewarePayload - $([MSBuild]::NormalizeDirectory('$(ArtifactsDir)', 'bin', 'NetCoreServer', '$(Configuration)', '$(NetCoreAppPrevious)')) - $([MSBuild]::NormalizeDirectory('$(ArtifactsDir)', 'bin', 'RemoteLoopServer', '$(Configuration)', '$(NetCoreAppPrevious)')) + $([MSBuild]::NormalizeDirectory('$(ArtifactsDir)', 'bin', 'NetCoreServer', '$(Configuration)', '$(NetCoreAppMinimum)')) + $([MSBuild]::NormalizeDirectory('$(ArtifactsDir)', 'bin', 'RemoteLoopServer', '$(Configuration)', '$(NetCoreAppMinimum)')) diff --git a/src/libraries/Common/tests/System/Net/Prerequisites/LocalEchoServer.props b/src/libraries/Common/tests/System/Net/Prerequisites/LocalEchoServer.props index b6099056408490..5554b87d806459 100644 --- a/src/libraries/Common/tests/System/Net/Prerequisites/LocalEchoServer.props +++ b/src/libraries/Common/tests/System/Net/Prerequisites/LocalEchoServer.props @@ -1,17 +1,17 @@ - <_TargetFrameworkForXHarness>$(NetCoreAppPrevious) + <_TargetFrameworkForXHarness>$(NetCoreAppMinimum) $(MSBuildThisFileDirectory)LocalEchoServer.helix.targets <_TestEchoMiddleware Condition="'$(ContinuousIntegrationBuild)' == 'true' and '$(OS)' == 'Windows_NT'">%HELIX_CORRELATION_PAYLOAD%/xharness/TestEchoMiddleware <_TestEchoMiddleware Condition="'$(ContinuousIntegrationBuild)' == 'true' and '$(OS)' != 'Windows_NT'">$HELIX_CORRELATION_PAYLOAD/xharness/TestEchoMiddleware - <_TestEchoMiddleware Condition="'$(ContinuousIntegrationBuild)' != 'true'">$(ArtifactsDir)bin/NetCoreServer/$(Configuration)/$(NetCoreAppPrevious) + <_TestEchoMiddleware Condition="'$(ContinuousIntegrationBuild)' != 'true'">$(ArtifactsDir)bin/NetCoreServer/$(Configuration)/$(NetCoreAppMinimum) <_RemoteLoopMiddleware Condition="'$(ContinuousIntegrationBuild)' == 'true' and '$(OS)' == 'Windows_NT'">%HELIX_CORRELATION_PAYLOAD%/xharness/RemoteLoopMiddleware <_RemoteLoopMiddleware Condition="'$(ContinuousIntegrationBuild)' == 'true' and '$(OS)' != 'Windows_NT'">$HELIX_CORRELATION_PAYLOAD/xharness/RemoteLoopMiddleware - <_RemoteLoopMiddleware Condition="'$(ContinuousIntegrationBuild)' != 'true'">$(ArtifactsDir)bin/RemoteLoopServer/$(Configuration)/$(NetCoreAppPrevious) - + <_RemoteLoopMiddleware Condition="'$(ContinuousIntegrationBuild)' != 'true'">$(ArtifactsDir)bin/RemoteLoopServer/$(Configuration)/$(NetCoreAppMinimum) + $(WasmXHarnessArgs) --web-server-use-cors --web-server-use-https $(WasmXHarnessArgs) --set-web-server-http-env=DOTNET_TEST_WEBSOCKETHOST,DOTNET_TEST_HTTPHOST,DOTNET_TEST_REMOTE_LOOP_HOST $(WasmXHarnessArgs) --set-web-server-https-env=DOTNET_TEST_SECUREWEBSOCKETHOST,DOTNET_TEST_SECUREHTTPHOST,DOTNET_TEST_HTTP2HOST diff --git a/src/libraries/Common/tests/System/Net/Prerequisites/NetCoreServer/NetCoreServer.csproj b/src/libraries/Common/tests/System/Net/Prerequisites/NetCoreServer/NetCoreServer.csproj index 8780fd5f0aafa4..b0ef064a14b985 100644 --- a/src/libraries/Common/tests/System/Net/Prerequisites/NetCoreServer/NetCoreServer.csproj +++ b/src/libraries/Common/tests/System/Net/Prerequisites/NetCoreServer/NetCoreServer.csproj @@ -3,10 +3,10 @@ $(_TargetFrameworkForXHarness) - $(NetCoreAppPrevious) + $(NetCoreAppMinimum) InProcess Exe false diff --git a/src/libraries/Common/tests/System/Net/Prerequisites/RemoteLoopServer/RemoteLoopServer.csproj b/src/libraries/Common/tests/System/Net/Prerequisites/RemoteLoopServer/RemoteLoopServer.csproj index b8769e957b1580..f534a00fe33de3 100644 --- a/src/libraries/Common/tests/System/Net/Prerequisites/RemoteLoopServer/RemoteLoopServer.csproj +++ b/src/libraries/Common/tests/System/Net/Prerequisites/RemoteLoopServer/RemoteLoopServer.csproj @@ -3,10 +3,10 @@ $(_TargetFrameworkForXHarness) - $(NetCoreAppPrevious) + $(NetCoreAppMinimum) InProcess Exe false From 00d26f5ed3a3b4a89ac378429945ec8dd20dca56 Mon Sep 17 00:00:00 2001 From: "Eric St. John" Date: Tue, 2 Dec 2025 16:28:38 -0800 Subject: [PATCH 07/43] Fix a few APICompat issues after targeting net11.0 --- eng/packaging.targets | 5 ++ .../CompatibilitySuppressions.xml | 32 ++++++++++ ...System.Collections.Immutable.netcoreapp.cs | 5 ++ .../src/CompatibilitySuppressions.xml | 22 ------- .../src/CompatibilitySuppressions.xml | 24 ++++---- .../ref/System.Numerics.Tensors.netcore.cs | 2 +- .../src/CompatibilitySuppressions.xml | 18 ------ .../src/CompatibilitySuppressions.xml | 60 +++++++++++++++++++ ...iCompatBaseline.NetCoreAppLatestStable.xml | 6 ++ 9 files changed, 121 insertions(+), 53 deletions(-) create mode 100644 src/coreclr/System.Private.CoreLib/CompatibilitySuppressions.xml delete mode 100644 src/libraries/System.Collections.Immutable/src/CompatibilitySuppressions.xml diff --git a/eng/packaging.targets b/eng/packaging.targets index 2c7fe264f5e2ec..e5b1ee774dbbff 100644 --- a/eng/packaging.targets +++ b/eng/packaging.targets @@ -38,6 +38,11 @@ false + + + + + diff --git a/src/coreclr/System.Private.CoreLib/CompatibilitySuppressions.xml b/src/coreclr/System.Private.CoreLib/CompatibilitySuppressions.xml new file mode 100644 index 00000000000000..090777eb758ab1 --- /dev/null +++ b/src/coreclr/System.Private.CoreLib/CompatibilitySuppressions.xml @@ -0,0 +1,32 @@ + + + + + CP0001 + T:Internal.Console + + + CP0002 + F:System.Resources.ResourceManager.BaseNameField + + + CP0002 + F:System.Resources.ResourceSet.Reader + + + CP0002 + M:System.String.Trim(System.ReadOnlySpan{System.Char}) + + + CP0002 + M:System.String.TrimEnd(System.ReadOnlySpan{System.Char}) + + + CP0002 + M:System.String.TrimStart(System.ReadOnlySpan{System.Char}) + + + CP0008 + T:System.Collections.BitArray + + \ No newline at end of file diff --git a/src/libraries/System.Collections.Immutable/ref/System.Collections.Immutable.netcoreapp.cs b/src/libraries/System.Collections.Immutable/ref/System.Collections.Immutable.netcoreapp.cs index c419ecd91f2188..453d301fb280a2 100644 --- a/src/libraries/System.Collections.Immutable/ref/System.Collections.Immutable.netcoreapp.cs +++ b/src/libraries/System.Collections.Immutable/ref/System.Collections.Immutable.netcoreapp.cs @@ -9,6 +9,11 @@ namespace System.Collections.Frozen public abstract partial class FrozenSet : System.Collections.Generic.IReadOnlySet { } + + [System.Runtime.CompilerServices.CollectionBuilder(typeof(FrozenDictionary), nameof(FrozenDictionary.Create))] + public abstract partial class FrozenDictionary + { + } } namespace System.Collections.Immutable { diff --git a/src/libraries/System.Collections.Immutable/src/CompatibilitySuppressions.xml b/src/libraries/System.Collections.Immutable/src/CompatibilitySuppressions.xml deleted file mode 100644 index e99bbdd2ecf9b4..00000000000000 --- a/src/libraries/System.Collections.Immutable/src/CompatibilitySuppressions.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CP0016 - T:System.Collections.Frozen.FrozenDictionary`2:[T:System.Runtime.CompilerServices.CollectionBuilderAttribute] - ref/net10.0/System.Collections.Immutable.dll - lib/net10.0/System.Collections.Immutable.dll - - - CP0016 - T:System.Collections.Frozen.FrozenDictionary`2:[T:System.Runtime.CompilerServices.CollectionBuilderAttribute] - ref/net8.0/System.Collections.Immutable.dll - lib/net8.0/System.Collections.Immutable.dll - - - CP0016 - T:System.Collections.Frozen.FrozenDictionary`2:[T:System.Runtime.CompilerServices.CollectionBuilderAttribute] - ref/net9.0/System.Collections.Immutable.dll - lib/net9.0/System.Collections.Immutable.dll - - \ No newline at end of file diff --git a/src/libraries/System.IO.Pipes/src/CompatibilitySuppressions.xml b/src/libraries/System.IO.Pipes/src/CompatibilitySuppressions.xml index 6c5f95aabfb0b6..d9b6fb6b350cd6 100644 --- a/src/libraries/System.IO.Pipes/src/CompatibilitySuppressions.xml +++ b/src/libraries/System.IO.Pipes/src/CompatibilitySuppressions.xml @@ -4,37 +4,37 @@ CP0001 T:System.IO.Pipes.AnonymousPipeServerStreamAcl - ref/net10.0/System.IO.Pipes.dll - runtimes/win/lib/net10.0/System.IO.Pipes.dll + ref/net11.0/System.IO.Pipes.dll + runtimes/win/lib/net11.0/System.IO.Pipes.dll CP0001 T:System.IO.Pipes.NamedPipeServerStreamAcl - ref/net10.0/System.IO.Pipes.dll - runtimes/win/lib/net10.0/System.IO.Pipes.dll + ref/net11.0/System.IO.Pipes.dll + runtimes/win/lib/net11.0/System.IO.Pipes.dll CP0001 T:System.IO.Pipes.PipeAccessRule - ref/net10.0/System.IO.Pipes.dll - runtimes/win/lib/net10.0/System.IO.Pipes.dll + ref/net11.0/System.IO.Pipes.dll + runtimes/win/lib/net11.0/System.IO.Pipes.dll CP0001 T:System.IO.Pipes.PipeAuditRule - ref/net10.0/System.IO.Pipes.dll - runtimes/win/lib/net10.0/System.IO.Pipes.dll + ref/net11.0/System.IO.Pipes.dll + runtimes/win/lib/net11.0/System.IO.Pipes.dll CP0001 T:System.IO.Pipes.PipesAclExtensions - ref/net10.0/System.IO.Pipes.dll - runtimes/win/lib/net10.0/System.IO.Pipes.dll + ref/net11.0/System.IO.Pipes.dll + runtimes/win/lib/net11.0/System.IO.Pipes.dll CP0001 T:System.IO.Pipes.PipeSecurity - ref/net10.0/System.IO.Pipes.dll - runtimes/win/lib/net10.0/System.IO.Pipes.dll + ref/net11.0/System.IO.Pipes.dll + runtimes/win/lib/net11.0/System.IO.Pipes.dll \ No newline at end of file diff --git a/src/libraries/System.Numerics.Tensors/ref/System.Numerics.Tensors.netcore.cs b/src/libraries/System.Numerics.Tensors/ref/System.Numerics.Tensors.netcore.cs index 4847b33842bb4b..163f652b815da9 100644 --- a/src/libraries/System.Numerics.Tensors/ref/System.Numerics.Tensors.netcore.cs +++ b/src/libraries/System.Numerics.Tensors/ref/System.Numerics.Tensors.netcore.cs @@ -484,7 +484,7 @@ public static void BroadcastTo(this System.Numerics.Tensors.Tensor source, public static ref readonly System.Numerics.Tensors.TensorSpan Negate(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan x, in System.Numerics.Tensors.TensorSpan destination) where T : System.Numerics.IUnaryNegationOperators { throw null; } public static T Norm(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan x) where T : System.Numerics.IRootFunctions { throw null; } public static System.Numerics.Tensors.Tensor OnesComplement(in System.Numerics.Tensors.ReadOnlyTensorSpan x) where T : System.Numerics.IBitwiseOperators { throw null; } - public static ref readonly System.Numerics.Tensors.TensorSpan OnesComplement(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan y, in System.Numerics.Tensors.TensorSpan destination) where T : System.Numerics.IBitwiseOperators { throw null; } + public static ref readonly System.Numerics.Tensors.TensorSpan OnesComplement(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan x, in System.Numerics.Tensors.TensorSpan destination) where T : System.Numerics.IBitwiseOperators { throw null; } public static System.Numerics.Tensors.Tensor PermuteDimensions(this System.Numerics.Tensors.Tensor tensor, System.ReadOnlySpan dimensions) { throw null; } public static System.Numerics.Tensors.Tensor PopCount(in System.Numerics.Tensors.ReadOnlyTensorSpan x) where T : System.Numerics.IBinaryInteger { throw null; } public static ref readonly System.Numerics.Tensors.TensorSpan PopCount(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan y, in System.Numerics.Tensors.TensorSpan destination) where T : System.Numerics.IBinaryInteger { throw null; } diff --git a/src/libraries/System.Numerics.Tensors/src/CompatibilitySuppressions.xml b/src/libraries/System.Numerics.Tensors/src/CompatibilitySuppressions.xml index cbc50b64ff0de3..c936ddeeededc3 100644 --- a/src/libraries/System.Numerics.Tensors/src/CompatibilitySuppressions.xml +++ b/src/libraries/System.Numerics.Tensors/src/CompatibilitySuppressions.xml @@ -1163,24 +1163,6 @@ lib/net9.0/System.Numerics.Tensors.dll true - - CP0017 - M:System.Numerics.Tensors.Tensor.OnesComplement``1(System.Numerics.Tensors.ReadOnlyTensorSpan{``0}@,System.Numerics.Tensors.TensorSpan{``0}@)$0 - ref/net10.0/System.Numerics.Tensors.dll - lib/net10.0/System.Numerics.Tensors.dll - - - CP0017 - M:System.Numerics.Tensors.Tensor.OnesComplement``1(System.Numerics.Tensors.ReadOnlyTensorSpan{``0}@,System.Numerics.Tensors.TensorSpan{``0}@)$0 - ref/net8.0/System.Numerics.Tensors.dll - lib/net8.0/System.Numerics.Tensors.dll - - - CP0017 - M:System.Numerics.Tensors.Tensor.OnesComplement``1(System.Numerics.Tensors.ReadOnlyTensorSpan{``0}@,System.Numerics.Tensors.TensorSpan{``0}@)$0 - ref/net9.0/System.Numerics.Tensors.dll - lib/net9.0/System.Numerics.Tensors.dll - CP0021 M:System.Numerics.Tensors.Tensor.Average``1(System.Numerics.Tensors.ReadOnlyTensorSpan{``0}@)``0:T:System.Numerics.INumberBase{``0} diff --git a/src/libraries/System.Security.Permissions/src/CompatibilitySuppressions.xml b/src/libraries/System.Security.Permissions/src/CompatibilitySuppressions.xml index ea58cd3565d114..41cb9826afbd24 100644 --- a/src/libraries/System.Security.Permissions/src/CompatibilitySuppressions.xml +++ b/src/libraries/System.Security.Permissions/src/CompatibilitySuppressions.xml @@ -19,6 +19,30 @@ lib/netstandard2.0/System.Security.Permissions.dll lib/net462/System.Security.Permissions.dll + + CP0014 + F:System.Security.Permissions.SecurityAction.Deny:[T:System.ObsoleteAttribute] + lib/netstandard2.0/System.Security.Permissions.dll + lib/net10.0/System.Security.Permissions.dll + + + CP0014 + F:System.Security.Permissions.SecurityAction.RequestMinimum:[T:System.ObsoleteAttribute] + lib/netstandard2.0/System.Security.Permissions.dll + lib/net10.0/System.Security.Permissions.dll + + + CP0014 + F:System.Security.Permissions.SecurityAction.RequestOptional:[T:System.ObsoleteAttribute] + lib/netstandard2.0/System.Security.Permissions.dll + lib/net10.0/System.Security.Permissions.dll + + + CP0014 + F:System.Security.Permissions.SecurityAction.RequestRefuse:[T:System.ObsoleteAttribute] + lib/netstandard2.0/System.Security.Permissions.dll + lib/net10.0/System.Security.Permissions.dll + CP0014 M:System.Security.HostSecurityManager.ResolvePolicy(System.Security.Policy.Evidence):[T:System.ObsoleteAttribute] @@ -266,6 +290,42 @@ lib/netstandard2.0/System.Security.Permissions.dll true + + CP0015 + M:System.Security.Policy.Evidence.#ctor(System.Object[],System.Object[]):[T:System.ObsoleteAttribute] + lib/netstandard2.0/System.Security.Permissions.dll + lib/net10.0/System.Security.Permissions.dll + + + CP0015 + M:System.Security.Policy.Evidence.AddAssembly(System.Object):[T:System.ObsoleteAttribute] + lib/netstandard2.0/System.Security.Permissions.dll + lib/net10.0/System.Security.Permissions.dll + + + CP0015 + M:System.Security.Policy.Evidence.AddHost(System.Object):[T:System.ObsoleteAttribute] + lib/netstandard2.0/System.Security.Permissions.dll + lib/net10.0/System.Security.Permissions.dll + + + CP0015 + M:System.Security.Policy.Evidence.CopyTo(System.Array,System.Int32):[T:System.ObsoleteAttribute] + lib/netstandard2.0/System.Security.Permissions.dll + lib/net10.0/System.Security.Permissions.dll + + + CP0015 + M:System.Security.Policy.Evidence.GetEnumerator:[T:System.ObsoleteAttribute] + lib/netstandard2.0/System.Security.Permissions.dll + lib/net10.0/System.Security.Permissions.dll + + + CP0015 + P:System.Security.Policy.Evidence.Count:[T:System.ObsoleteAttribute] + lib/netstandard2.0/System.Security.Permissions.dll + lib/net10.0/System.Security.Permissions.dll + CP0015 F:System.Security.Permissions.ReflectionPermissionFlag.AllFlags:[T:System.ObsoleteAttribute] diff --git a/src/libraries/apicompat/ApiCompatBaseline.NetCoreAppLatestStable.xml b/src/libraries/apicompat/ApiCompatBaseline.NetCoreAppLatestStable.xml index 32ca2f65e8866d..c34164bf783cd0 100644 --- a/src/libraries/apicompat/ApiCompatBaseline.NetCoreAppLatestStable.xml +++ b/src/libraries/apicompat/ApiCompatBaseline.NetCoreAppLatestStable.xml @@ -1,4 +1,10 @@  + + CP0014 + T:System.Runtime.CompilerServices.AsyncHelpers:[T:System.Diagnostics.CodeAnalysis.ExperimentalAttribute] + net10.0/System.Runtime.dll + net11.0/System.Runtime.dll + \ No newline at end of file From fc67d16034085265a750e3643da082d598022bb9 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Wed, 3 Dec 2025 10:54:42 +0100 Subject: [PATCH 08/43] Remove DisablePackageBaselineValidation from newly 10.0 shipped packages --- .../System.Formats.Nrbf/src/System.Formats.Nrbf.csproj | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/libraries/System.Formats.Nrbf/src/System.Formats.Nrbf.csproj b/src/libraries/System.Formats.Nrbf/src/System.Formats.Nrbf.csproj index 75df3e54d48eae..056aa832e7d927 100644 --- a/src/libraries/System.Formats.Nrbf/src/System.Formats.Nrbf.csproj +++ b/src/libraries/System.Formats.Nrbf/src/System.Formats.Nrbf.csproj @@ -6,11 +6,6 @@ false true Provides a safe reader for .NET Remoting Binary Format (NRBF) payloads. - - - true From b3a13ee97fae9f2acb8f49e005e756f332709345 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Wed, 3 Dec 2025 15:47:15 +0100 Subject: [PATCH 09/43] Set NETCoreAppMaximumVersion --- src/installer/tests/Assets/Projects/Directory.Build.targets | 1 + 1 file changed, 1 insertion(+) diff --git a/src/installer/tests/Assets/Projects/Directory.Build.targets b/src/installer/tests/Assets/Projects/Directory.Build.targets index a1523bc1e38ea0..0091e7f44b89ed 100644 --- a/src/installer/tests/Assets/Projects/Directory.Build.targets +++ b/src/installer/tests/Assets/Projects/Directory.Build.targets @@ -5,6 +5,7 @@ false + $(NetCoreAppCurrentVersion) - - - - - $(NetCoreAppCurrent) - true - $(DefineConstants);SNT_NET8_TESTS - - - - - - - - - - - - - - TargetFramework=net8.0 - - - - From c8e1790cbefb1b093759d33946a6f3c68a8369a8 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Wed, 3 Dec 2025 12:34:34 -0600 Subject: [PATCH 11/43] Use 10.0.100 band version until we update to an 11 sdk --- eng/Versions.props | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eng/Versions.props b/eng/Versions.props index 49d3ab73b67090..d39d7162457937 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,7 +7,10 @@ 11 0 0 + + 10.0.100 9.0.3 8.0.$([MSBuild]::Add($([System.Version]::Parse('$(PackageVersionNet9)').Build),11)) 7.0.20 From 1eba5370ed39d25ec5d3fa9c6c68ca72a7a5ecd6 Mon Sep 17 00:00:00 2001 From: "Eric St. John" Date: Wed, 3 Dec 2025 16:05:01 -0800 Subject: [PATCH 12/43] Use net11 pruning data workaround in trimming tests --- Directory.Build.targets | 18 +----------------- eng/pruning.targets | 19 +++++++++++++++++++ eng/testing/linker/project.csproj.template | 1 + 3 files changed, 21 insertions(+), 17 deletions(-) create mode 100644 eng/pruning.targets diff --git a/Directory.Build.targets b/Directory.Build.targets index 061376bfee1b4b..d5a2643dfcbceb 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -210,21 +210,5 @@ - - - true - 10.0 - - - - - - + diff --git a/eng/pruning.targets b/eng/pruning.targets new file mode 100644 index 00000000000000..845e99f7e1bfee --- /dev/null +++ b/eng/pruning.targets @@ -0,0 +1,19 @@ + + + + true + 10.0 + + + + + + + diff --git a/eng/testing/linker/project.csproj.template b/eng/testing/linker/project.csproj.template index 7498d355dfcee5..f287589b6142e7 100644 --- a/eng/testing/linker/project.csproj.template +++ b/eng/testing/linker/project.csproj.template @@ -81,6 +81,7 @@ + From e366571f11d59a4d02cb8c089e1cb84423211a6e Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Wed, 3 Dec 2025 18:27:28 -0600 Subject: [PATCH 13/43] Rework workload manifest versions now that they are only used for testing --- eng/Versions.props | 48 +++++++++++++++++++++++++--------------------- 1 file changed, 26 insertions(+), 22 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index d39d7162457937..4fd5735a36ed27 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,11 +7,8 @@ 11 0 0 - - 10.0.100 - 9.0.3 + 10.0.0 + 9.0.$([MSBuild]::Add($([System.Version]::Parse('$(PackageVersionNet10)').Build),12)) 8.0.$([MSBuild]::Add($([System.Version]::Parse('$(PackageVersionNet9)').Build),11)) 7.0.20 6.0.36 @@ -20,9 +17,20 @@ false release - -$(PreReleaseVersionLabel) - -$(PreReleaseVersionLabel).$(PreReleaseVersionIteration) - $(SdkBandVersion)$(WorkloadVersionSuffix) + + $(MicrosoftDotNetApiCompatTaskPackageVersion) + $(NETCoreSdkVersion) + $([System.String]::Copy('$(SdkVersionForWorkloadTesting)').Split('.')[0]) + $(SdkMajorVersion).0.100 + true + -$([System.String]::Copy('$(SdkVersionForWorkloadTesting)').Split('-')[1]) + $(SdkBandVersion)$(SdkPreReleaseLabel) $(MajorVersion).$(MinorVersion).0.0 @@ -146,25 +154,21 @@ 10.0.0-preview-20251006.1 2.4.16 - - $(MicrosoftNETWorkloadEmscriptenCurrentManifest100100TransportVersion) - + + + $(MicrosoftDotNetApiCompatTaskPackageVersion) + 10.0.0 + $(runtimewinx64MicrosoftNETCoreRuntimeWasmNodeTransportPackageVersion) + + 3.1.56 + + 1.1.87-gba258badda 1.0.0-v3.14.0.5722 3.1.7 1.0.406601 - - - - 10.0.100-rc.2.25502.107 - 10.0.0-preview.7.25359.101 - $(runtimewinx64MicrosoftNETCoreRuntimeWasmNodeTransportPackageVersion) - - 3.1.56 + 5.0.2-dotnet.2811440 5.0.2-dotnet.2811440 From ab22a3b617926d994aa3224456351f0f6ada897d Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Wed, 3 Dec 2025 18:32:11 -0600 Subject: [PATCH 14/43] Remove added blank lines --- eng/Versions.props | 3 --- 1 file changed, 3 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index 4fd5735a36ed27..473c32e4f1f6a6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -154,21 +154,18 @@ 10.0.0-preview-20251006.1 2.4.16 - $(MicrosoftDotNetApiCompatTaskPackageVersion) 10.0.0 $(runtimewinx64MicrosoftNETCoreRuntimeWasmNodeTransportPackageVersion) 3.1.56 - 1.1.87-gba258badda 1.0.0-v3.14.0.5722 3.1.7 1.0.406601 - 5.0.2-dotnet.2811440 5.0.2-dotnet.2811440 From e4274c855b74a92435dd225d24a7f61e14c856be Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Wed, 3 Dec 2025 19:54:50 -0600 Subject: [PATCH 15/43] Check current framework version and fix conditions --- eng/Versions.props | 8 ++++---- ...t.NET.Workload.Mono.Toolchain.Current.Manifest.pkgproj | 5 +++-- .../WorkloadManifest.targets.in | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index 473c32e4f1f6a6..ef1021249a04a5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -22,14 +22,14 @@ We use $(MicrosoftDotNetApiCompatTaskPackageVersion) unless it lacks a prerelease version, then we use the SDK set in global.json to avoid problems with installing stable servicing versions that are not yet public. --> - $(MicrosoftDotNetApiCompatTaskPackageVersion) + $(MicrosoftDotNetApiCompatTaskPackageVersion) $(NETCoreSdkVersion) $([System.String]::Copy('$(SdkVersionForWorkloadTesting)').Split('.')[0]) $(SdkMajorVersion).0.100 true - -$([System.String]::Copy('$(SdkVersionForWorkloadTesting)').Split('-')[1]) + -$([System.String]::Copy('$(SdkVersionForWorkloadTesting)').Split('-')[1]) $(SdkBandVersion)$(SdkPreReleaseLabel) diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest.pkgproj b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest.pkgproj index 3b0c91209bfbd6..448b3ecf843cda 100644 --- a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest.pkgproj +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest.pkgproj @@ -46,10 +46,11 @@ <_WorkloadManifestValues Include="NetVersion" Value="net11" /> + <_WorkloadManifestValues Include="FrameworkVersionCurrent" Value="11.0" /> <_WorkloadManifestValues Include="WorkloadVersion" Value="$(PackageVersion)" /> <_WorkloadManifestValues Include="PackageVersion" Value="$(PackageVersion)" /> - <_WorkloadManifestValues Include="PackageVersionNet9" Value="$(PackageVersionNet9)" Condition="'$(PackageVersionNet9)' != ''" /> - <_WorkloadManifestValues Include="PackageVersionNet9" Value="$(PackageVersion)" Condition="'$(PackageVersionNet9)' == ''" /> + <_WorkloadManifestValues Include="PackageVersionNet10" Value="$(PackageVersionNet10)" /> + <_WorkloadManifestValues Include="PackageVersionNet9" Value="$(PackageVersionNet9)" /> <_WorkloadManifestValues Include="PackageVersionNet8" Value="$(PackageVersionNet8)" /> <_WorkloadManifestValues Include="PackageVersionNet7" Value="$(PackageVersionNet7)" /> <_WorkloadManifestValues Include="PackageVersionNet6" Value="$(PackageVersionNet6)" /> diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest/WorkloadManifest.targets.in b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest/WorkloadManifest.targets.in index 1bdbee059b653c..5489a6ac560db6 100644 --- a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest/WorkloadManifest.targets.in +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest/WorkloadManifest.targets.in @@ -7,7 +7,7 @@ <_RuntimePackInWorkloadVersion7>${PackageVersionNet7} <_RuntimePackInWorkloadVersion6>${PackageVersionNet6} - true + true + true true true true @@ -36,7 +38,8 @@ true - $(WasmNativeWorkload10) + true + true $(WasmNativeWorkload9) $(WasmNativeWorkload8) $(WasmNativeWorkload7) diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest.pkgproj b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest.pkgproj new file mode 100644 index 00000000000000..6235409b44ef0a --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest.pkgproj @@ -0,0 +1,63 @@ + + + + + Internal toolchain package not meant for direct consumption. Please do not reference directly. + + + + + + + + Microsoft.NET.Workload.Mono.ToolChain.net10.Manifest-$(SdkBandVersionForWorkload_FromRuntimeVersions) + + + + $(IntermediateOutputPath)WorkloadManifest.json + $(IntermediateOutputPath)WorkloadManifest.targets + + + + + + + + + + data/localize + + + + + + + + PackageVersion=$(PackageVersion); + + + + <_WorkloadManifestValues Include="WorkloadVersion" Value="$(PackageVersion)" /> + <_WorkloadManifestValues Include="PackageVersionNet10" Value="$(PackageVersionNet10)" /> + <_WorkloadManifestValues Include="NetCoreAppCurrent" Value="$(NetCoreAppCurrent)" /> + <_WorkloadManifestValues Include="EmscriptenVersion" Value="$(MicrosoftNETRuntimeEmscriptenVersion)" /> + + + + + + + + + + + + diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/WorkloadManifest.json.in b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/WorkloadManifest.json.in new file mode 100644 index 00000000000000..aeacb7bcec35f7 --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/WorkloadManifest.json.in @@ -0,0 +1,476 @@ +{ + "version": "${WorkloadVersion}", + "depends-on": { + "Microsoft.NET.Workload.Emscripten.net10": "${EmscriptenVersion}" + }, + "workloads": { + "wasm-tools-net10": { + "description": ".NET WebAssembly build tools for net10.0", + "packs": [ + "Microsoft.NET.Runtime.WebAssembly.Sdk.net10", + "Microsoft.NET.Sdk.WebAssembly.Pack.net10", + "Microsoft.NETCore.App.Runtime.Mono.net10.browser-wasm", + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.browser-wasm" + ], + "extends": [ "microsoft-net-runtime-mono-tooling-net10", "microsoft-net-sdk-emscripten-net10" ], + "platforms": [ "win-x64", "win-arm64", "linux-x64", "linux-arm64", "linux-musl-x64", "linux-musl-arm64", "osx-x64", "osx-arm64" ] + }, + "wasm-experimental-net10": { + "description": ".NET WebAssembly experimental tooling for net10.0", + "packs": [ + "Microsoft.NET.Runtime.WebAssembly.Templates.net10", + "Microsoft.NETCore.App.Runtime.Mono.multithread.net10.browser-wasm" + ], + "extends": [ "wasm-tools-net10" ], + "platforms": [ "win-x64", "win-arm64", "linux-x64", "linux-arm64", "linux-musl-x64", "linux-musl-arm64", "osx-x64", "osx-arm64" ] + }, + "wasi-experimental-net10": { + "description": ".NET WASI experimental tooing for for net10.0", + "packs": [ + "Microsoft.NET.Runtime.WebAssembly.Wasi.Sdk.net10", + "Microsoft.NETCore.App.Runtime.Mono.net10.wasi-wasm", + "Microsoft.NET.Runtime.WebAssembly.Templates.net10", + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.wasi-wasm" + ], + "extends": [ "microsoft-net-runtime-mono-tooling-net10" ], + "platforms": [ "win-x64", "win-arm64", "linux-x64", "linux-arm64", "linux-musl-x64", "linux-musl-arm64", "osx-x64", "osx-arm64" ] + }, + "mobile-librarybuilder-net10": { + "description": "Mobile SDK for building a self-contained .NET native library in net10.0", + "packs": [ + "Microsoft.NET.Runtime.LibraryBuilder.Sdk.net10" + ], + "extends": [ "microsoft-net-runtime-android-aot-net10", "microsoft-net-runtime-ios-net10", "microsoft-net-runtime-maccatalyst-net10", "microsoft-net-runtime-tvos-net10" ], + "platforms": [ "win-x64", "win-arm64", "osx-x64", "osx-arm64" ] + }, + "microsoft-net-runtime-android-net10": { + "abstract": true, + "description": "Android Mono Runtime", + "packs": [ + "Microsoft.NETCore.App.Runtime.Mono.net10.android-arm", + "Microsoft.NETCore.App.Runtime.Mono.net10.android-arm64", + "Microsoft.NETCore.App.Runtime.Mono.net10.android-x64", + "Microsoft.NETCore.App.Runtime.Mono.net10.android-x86" + ], + "extends": [ "microsoft-net-runtime-mono-tooling-net10" ], + "platforms": [ "win-x64", "win-arm64", "linux-x64", "linux-arm64", "osx-x64", "osx-arm64" ] + }, + "microsoft-net-runtime-android-aot-net10": { + "abstract": true, + "description": "Android Mono AOT Workload", + "packs": [ + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.android-x86", + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.android-x64", + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.android-arm", + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.android-arm64" + ], + "extends": [ "microsoft-net-runtime-android-net10" ], + "platforms": [ "win-x64", "win-arm64", "linux-x64", "linux-arm64", "osx-x64", "osx-arm64" ] + }, + "microsoft-net-runtime-ios-net10": { + "abstract": true, + "description": "iOS Mono Runtime and AOT Workload", + "packs": [ + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.ios-arm64", + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.iossimulator-arm64", + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.iossimulator-x64" + ], + "extends": [ "runtimes-ios-net10" ], + "platforms": [ "win-x64", "win-arm64", "osx-arm64", "osx-x64" ] + }, + "runtimes-ios-net10": { + "abstract": true, + "description": "iOS Mono Runtime Packs", + "packs": [ + "Microsoft.NETCore.App.Runtime.Mono.net10.ios-arm64", + "Microsoft.NETCore.App.Runtime.Mono.net10.iossimulator-arm64", + "Microsoft.NETCore.App.Runtime.Mono.net10.iossimulator-x64" + ], + "extends": [ "microsoft-net-runtime-mono-tooling-net10" ], + "platforms": [ "win-x64", "win-arm64", "osx-arm64", "osx-x64" ] + }, + "microsoft-net-runtime-maccatalyst-net10": { + "abstract": true, + "description": "MacCatalyst Mono Runtime and AOT Workload", + "packs": [ + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.maccatalyst-arm64", + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.maccatalyst-x64" + ], + "extends": [ "runtimes-maccatalyst-net10" ], + "platforms": [ "win-x64", "win-arm64", "osx-arm64", "osx-x64" ] + }, + "runtimes-maccatalyst-net10": { + "abstract": true, + "description": "MacCatalyst Mono Runtime Packs", + "packs": [ + "Microsoft.NETCore.App.Runtime.Mono.net10.maccatalyst-arm64", + "Microsoft.NETCore.App.Runtime.Mono.net10.maccatalyst-x64" + ], + "extends": [ "microsoft-net-runtime-mono-tooling-net10" ], + "platforms": [ "win-x64", "win-arm64", "osx-arm64", "osx-x64" ] + }, + "microsoft-net-runtime-macos-net10": { + "abstract": true, + "description": "MacOS CoreCLR and Mono Runtime Workload", + "packs": [ + "Microsoft.NETCore.App.Runtime.Mono.net10.osx-arm64", + "Microsoft.NETCore.App.Runtime.Mono.net10.osx-x64", + "Microsoft.NETCore.App.Runtime.net10.osx-arm64", + "Microsoft.NETCore.App.Runtime.net10.osx-x64" + ], + "extends": [ "microsoft-net-runtime-mono-tooling-net10" ], + "platforms": [ "osx-arm64", "osx-x64" ] + }, + "microsoft-net-runtime-tvos-net10": { + "abstract": true, + "description": "tvOS Mono Runtime and AOT Workload", + "packs": [ + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.tvos-arm64", + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.tvossimulator-arm64", + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.tvossimulator-x64" + ], + "extends": [ "runtimes-tvos-net10" ], + "platforms": [ "win-x64", "win-arm64", "osx-arm64", "osx-x64" ] + }, + "runtimes-tvos-net10": { + "abstract": true, + "description": "tvOS Mono Runtime Packs", + "packs": [ + "Microsoft.NETCore.App.Runtime.Mono.net10.tvos-arm64", + "Microsoft.NETCore.App.Runtime.Mono.net10.tvossimulator-arm64", + "Microsoft.NETCore.App.Runtime.Mono.net10.tvossimulator-x64" + ], + "extends": [ "microsoft-net-runtime-mono-tooling-net10" ], + "platforms": [ "win-x64", "win-arm64", "osx-arm64", "osx-x64" ] + }, + "microsoft-net-runtime-mono-tooling-net10": { + "abstract": true, + "description": "Shared native build tooling for Mono runtime", + "packs": [ + "Microsoft.NET.Runtime.MonoAOTCompiler.Task.net10", + "Microsoft.NET.Runtime.MonoTargets.Sdk.net10" + ] + } + }, + "packs": { + "Microsoft.NET.Runtime.MonoAOTCompiler.Task.net10": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NET.Runtime.MonoAOTCompiler.Task" + } + }, + "Microsoft.NET.Runtime.MonoTargets.Sdk.net10": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NET.Runtime.MonoTargets.Sdk" + } + }, + "Microsoft.NET.Runtime.LibraryBuilder.Sdk.net10": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NET.Runtime.LibraryBuilder.Sdk" + } + }, + "Microsoft.NET.Runtime.WebAssembly.Sdk.net10": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NET.Runtime.WebAssembly.Sdk" + } + }, + "Microsoft.NET.Sdk.WebAssembly.Pack.net10": { + "kind": "library", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NET.Sdk.WebAssembly.Pack" + } + }, + "Microsoft.NET.Runtime.WebAssembly.Wasi.Sdk.net10": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NET.Runtime.WebAssembly.Wasi.Sdk" + } + }, + "Microsoft.NET.Runtime.WebAssembly.Templates.net10": { + "kind": "template", + "version": "${PackageVersionNet10}" + }, + "Microsoft.NETCore.App.Runtime.Mono.net10.android-arm": { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.android-arm" + } + }, + "Microsoft.NETCore.App.Runtime.Mono.net10.android-arm64": { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.android-arm64" + } + }, + "Microsoft.NETCore.App.Runtime.Mono.net10.android-x64": { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.android-x64" + } + }, + "Microsoft.NETCore.App.Runtime.Mono.net10.android-x86": { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.android-x86" + } + }, + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.android-x86": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "win-x64": "Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-x86", + "win-arm64": "Microsoft.NETCore.App.Runtime.AOT.win-arm64.Cross.android-x86", + "linux-x64": "Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-x86", + "linux-arm64": "Microsoft.NETCore.App.Runtime.AOT.linux-arm64.Cross.android-x86", + "osx-x64": "Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-x86", + "osx-arm64": "Microsoft.NETCore.App.Runtime.AOT.osx-arm64.Cross.android-x86" + } + }, + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.android-x64": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "win-x64": "Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-x64", + "win-arm64": "Microsoft.NETCore.App.Runtime.AOT.win-arm64.Cross.android-x64", + "linux-x64": "Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-x64", + "linux-arm64": "Microsoft.NETCore.App.Runtime.AOT.linux-arm64.Cross.android-x64", + "osx-x64": "Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-x64", + "osx-arm64": "Microsoft.NETCore.App.Runtime.AOT.osx-arm64.Cross.android-x64" + } + }, + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.android-arm": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "win-x64": "Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-arm", + "win-arm64": "Microsoft.NETCore.App.Runtime.AOT.win-arm64.Cross.android-arm", + "linux-x64": "Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-arm", + "linux-arm64": "Microsoft.NETCore.App.Runtime.AOT.linux-arm64.Cross.android-arm", + "osx-x64": "Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-arm", + "osx-arm64": "Microsoft.NETCore.App.Runtime.AOT.osx-arm64.Cross.android-arm" + } + }, + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.android-arm64": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "win-x64": "Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-arm64", + "win-arm64": "Microsoft.NETCore.App.Runtime.AOT.win-arm64.Cross.android-arm64", + "linux-x64": "Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.android-arm64", + "linux-arm64": "Microsoft.NETCore.App.Runtime.AOT.linux-arm64.Cross.android-arm64", + "osx-x64": "Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.android-arm64", + "osx-arm64": "Microsoft.NETCore.App.Runtime.AOT.osx-arm64.Cross.android-arm64" + } + }, + "Microsoft.NETCore.App.Runtime.Mono.net10.maccatalyst-arm64": { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.maccatalyst-arm64" + } + }, + "Microsoft.NETCore.App.Runtime.Mono.net10.maccatalyst-x64": { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.maccatalyst-x64" + } + }, + "Microsoft.NETCore.App.Runtime.Mono.net10.osx-arm64": { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.osx-arm64" + } + }, + "Microsoft.NETCore.App.Runtime.Mono.net10.osx-x64": { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.osx-x64" + } + }, + "Microsoft.NETCore.App.Runtime.net10.osx-arm64": { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.osx-arm64" + } + }, + "Microsoft.NETCore.App.Runtime.net10.osx-x64": { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.osx-x64" + } + }, + "Microsoft.NETCore.App.Runtime.Mono.net10.ios-arm64" : { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.ios-arm64" + } + }, + "Microsoft.NETCore.App.Runtime.Mono.net10.iossimulator-arm64" : { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.iossimulator-arm64" + } + }, + "Microsoft.NETCore.App.Runtime.Mono.net10.iossimulator-x64" : { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.iossimulator-x64" + } + }, + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.tvos-arm64": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "osx-arm64": "Microsoft.NETCore.App.Runtime.AOT.osx-arm64.Cross.tvos-arm64", + "osx-x64": "Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.tvos-arm64" + } + }, + "Microsoft.NETCore.App.Runtime.Mono.net10.tvos-arm64" : { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.tvos-arm64" + } + }, + "Microsoft.NETCore.App.Runtime.Mono.net10.tvossimulator-arm64" : { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.tvossimulator-arm64" + } + }, + "Microsoft.NETCore.App.Runtime.Mono.net10.tvossimulator-x64" : { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.tvossimulator-x64" + } + }, + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.maccatalyst-arm64": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "osx-arm64": "Microsoft.NETCore.App.Runtime.AOT.osx-arm64.Cross.maccatalyst-arm64", + "osx-x64": "Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.maccatalyst-arm64" + } + }, + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.maccatalyst-x64": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "osx-arm64": "Microsoft.NETCore.App.Runtime.AOT.osx-arm64.Cross.maccatalyst-x64", + "osx-x64": "Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.maccatalyst-x64" + } + }, + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.tvossimulator-arm64": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "osx-arm64": "Microsoft.NETCore.App.Runtime.AOT.osx-arm64.Cross.tvossimulator-arm64", + "osx-x64": "Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.tvossimulator-arm64" + } + }, + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.tvossimulator-x64": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "osx-arm64": "Microsoft.NETCore.App.Runtime.AOT.osx-arm64.Cross.tvossimulator-x64", + "osx-x64": "Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.tvossimulator-x64" + } + }, + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.ios-arm64": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "osx-x64": "Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.ios-arm64", + "osx-arm64": "Microsoft.NETCore.App.Runtime.AOT.osx-arm64.Cross.ios-arm64" + } + }, + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.iossimulator-arm64": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "osx-arm64": "Microsoft.NETCore.App.Runtime.AOT.osx-arm64.Cross.iossimulator-arm64", + "osx-x64": "Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-arm64" + } + }, + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.iossimulator-x64": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "osx-arm64": "Microsoft.NETCore.App.Runtime.AOT.osx-arm64.Cross.iossimulator-x64", + "osx-x64": "Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.iossimulator-x64" + } + }, + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.browser-wasm": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "win-x64": "Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.browser-wasm", + "win-arm64": "Microsoft.NETCore.App.Runtime.AOT.win-arm64.Cross.browser-wasm", + "linux-x64": "Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.browser-wasm", + "linux-arm64": "Microsoft.NETCore.App.Runtime.AOT.linux-arm64.Cross.browser-wasm", + "linux-musl-x64": "Microsoft.NETCore.App.Runtime.AOT.linux-musl-x64.Cross.browser-wasm", + "linux-musl-arm64": "Microsoft.NETCore.App.Runtime.AOT.linux-musl-arm64.Cross.browser-wasm", + "osx-x64": "Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.browser-wasm", + "osx-arm64": "Microsoft.NETCore.App.Runtime.AOT.osx-arm64.Cross.browser-wasm" + } + }, + "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.wasi-wasm": { + "kind": "Sdk", + "version": "${PackageVersionNet10}", + "alias-to": { + "win-x64": "Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.wasi-wasm", + "win-arm64": "Microsoft.NETCore.App.Runtime.AOT.win-arm64.Cross.wasi-wasm", + "linux-x64": "Microsoft.NETCore.App.Runtime.AOT.linux-x64.Cross.wasi-wasm", + "linux-arm64": "Microsoft.NETCore.App.Runtime.AOT.linux-arm64.Cross.wasi-wasm", + "linux-musl-x64": "Microsoft.NETCore.App.Runtime.AOT.linux-musl-x64.Cross.wasi-wasm", + "linux-musl-arm64": "Microsoft.NETCore.App.Runtime.AOT.linux-musl-arm64.Cross.wasi-wasm", + "osx-x64": "Microsoft.NETCore.App.Runtime.AOT.osx-x64.Cross.wasi-wasm", + "osx-arm64": "Microsoft.NETCore.App.Runtime.AOT.osx-arm64.Cross.wasi-wasm" + } + }, + "Microsoft.NETCore.App.Runtime.Mono.net10.browser-wasm" : { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.browser-wasm" + } + }, + "Microsoft.NETCore.App.Runtime.Mono.multithread.net10.browser-wasm" : { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.multithread.browser-wasm" + } + }, + "Microsoft.NETCore.App.Runtime.Mono.net10.wasi-wasm" : { + "kind": "framework", + "version": "${PackageVersionNet10}", + "alias-to": { + "any": "Microsoft.NETCore.App.Runtime.Mono.wasi-wasm" + } + } + } +} diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/WorkloadManifest.targets.in b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/WorkloadManifest.targets.in new file mode 100644 index 00000000000000..17137925bef722 --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/WorkloadManifest.targets.in @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_MonoWorkloadRuntimePackPackageVersion>$(_RuntimePackInWorkloadVersion10) + <_KnownWebAssemblySdkPackVersion>$(_RuntimePackInWorkloadVersion10) + + + + + + %(RuntimePackRuntimeIdentifiers);wasi-wasm + + $(_MonoWorkloadRuntimePackPackageVersion) + + Microsoft.NETCore.App.Runtime.Mono.multithread.**RID** + + + $(_MonoWorkloadRuntimePackPackageVersion) + + + $(_KnownWebAssemblySdkPackVersion) + + + + + diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.cs.json b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.cs.json new file mode 100644 index 00000000000000..17cc61feb895f3 --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.cs.json @@ -0,0 +1,4 @@ +{ + "workloads/wasm-tools-net10/description": ".NET WebAssembly build tools for .NET 10.0", + "workloads/wasm-experimental-net10/description": ".NET WebAssembly experimental tooling for .NET 10.0" +} diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.de.json b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.de.json new file mode 100644 index 00000000000000..17cc61feb895f3 --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.de.json @@ -0,0 +1,4 @@ +{ + "workloads/wasm-tools-net10/description": ".NET WebAssembly build tools for .NET 10.0", + "workloads/wasm-experimental-net10/description": ".NET WebAssembly experimental tooling for .NET 10.0" +} diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.en.json b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.en.json new file mode 100644 index 00000000000000..17cc61feb895f3 --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.en.json @@ -0,0 +1,4 @@ +{ + "workloads/wasm-tools-net10/description": ".NET WebAssembly build tools for .NET 10.0", + "workloads/wasm-experimental-net10/description": ".NET WebAssembly experimental tooling for .NET 10.0" +} diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.es.json b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.es.json new file mode 100644 index 00000000000000..17cc61feb895f3 --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.es.json @@ -0,0 +1,4 @@ +{ + "workloads/wasm-tools-net10/description": ".NET WebAssembly build tools for .NET 10.0", + "workloads/wasm-experimental-net10/description": ".NET WebAssembly experimental tooling for .NET 10.0" +} diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.fr.json b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.fr.json new file mode 100644 index 00000000000000..17cc61feb895f3 --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.fr.json @@ -0,0 +1,4 @@ +{ + "workloads/wasm-tools-net10/description": ".NET WebAssembly build tools for .NET 10.0", + "workloads/wasm-experimental-net10/description": ".NET WebAssembly experimental tooling for .NET 10.0" +} diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.it.json b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.it.json new file mode 100644 index 00000000000000..17cc61feb895f3 --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.it.json @@ -0,0 +1,4 @@ +{ + "workloads/wasm-tools-net10/description": ".NET WebAssembly build tools for .NET 10.0", + "workloads/wasm-experimental-net10/description": ".NET WebAssembly experimental tooling for .NET 10.0" +} diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.ja.json b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.ja.json new file mode 100644 index 00000000000000..17cc61feb895f3 --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.ja.json @@ -0,0 +1,4 @@ +{ + "workloads/wasm-tools-net10/description": ".NET WebAssembly build tools for .NET 10.0", + "workloads/wasm-experimental-net10/description": ".NET WebAssembly experimental tooling for .NET 10.0" +} diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.ko.json b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.ko.json new file mode 100644 index 00000000000000..17cc61feb895f3 --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.ko.json @@ -0,0 +1,4 @@ +{ + "workloads/wasm-tools-net10/description": ".NET WebAssembly build tools for .NET 10.0", + "workloads/wasm-experimental-net10/description": ".NET WebAssembly experimental tooling for .NET 10.0" +} diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.pl.json b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.pl.json new file mode 100644 index 00000000000000..17cc61feb895f3 --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.pl.json @@ -0,0 +1,4 @@ +{ + "workloads/wasm-tools-net10/description": ".NET WebAssembly build tools for .NET 10.0", + "workloads/wasm-experimental-net10/description": ".NET WebAssembly experimental tooling for .NET 10.0" +} diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.pt-BR.json b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.pt-BR.json new file mode 100644 index 00000000000000..17cc61feb895f3 --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.pt-BR.json @@ -0,0 +1,4 @@ +{ + "workloads/wasm-tools-net10/description": ".NET WebAssembly build tools for .NET 10.0", + "workloads/wasm-experimental-net10/description": ".NET WebAssembly experimental tooling for .NET 10.0" +} diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.ru.json b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.ru.json new file mode 100644 index 00000000000000..17cc61feb895f3 --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.ru.json @@ -0,0 +1,4 @@ +{ + "workloads/wasm-tools-net10/description": ".NET WebAssembly build tools for .NET 10.0", + "workloads/wasm-experimental-net10/description": ".NET WebAssembly experimental tooling for .NET 10.0" +} diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.tr.json b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.tr.json new file mode 100644 index 00000000000000..17cc61feb895f3 --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.tr.json @@ -0,0 +1,4 @@ +{ + "workloads/wasm-tools-net10/description": ".NET WebAssembly build tools for .NET 10.0", + "workloads/wasm-experimental-net10/description": ".NET WebAssembly experimental tooling for .NET 10.0" +} diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.zh-Hans.json b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.zh-Hans.json new file mode 100644 index 00000000000000..17cc61feb895f3 --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.zh-Hans.json @@ -0,0 +1,4 @@ +{ + "workloads/wasm-tools-net10/description": ".NET WebAssembly build tools for .NET 10.0", + "workloads/wasm-experimental-net10/description": ".NET WebAssembly experimental tooling for .NET 10.0" +} diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.zh-Hant.json b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.zh-Hant.json new file mode 100644 index 00000000000000..17cc61feb895f3 --- /dev/null +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/localize/WorkloadManifest.zh-Hant.json @@ -0,0 +1,4 @@ +{ + "workloads/wasm-tools-net10/description": ".NET WebAssembly build tools for .NET 10.0", + "workloads/wasm-experimental-net10/description": ".NET WebAssembly experimental tooling for .NET 10.0" +} From 9d6e038ae9b4b3daa52e445161dddec9817f643f Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Wed, 3 Dec 2025 20:49:52 -0600 Subject: [PATCH 17/43] Parse global.json to get the base sdk version if NETCoreSdkVersion is not set --- eng/Versions.props | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/eng/Versions.props b/eng/Versions.props index ef1021249a04a5..1091b4f2a63eed 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -22,6 +22,10 @@ We use $(MicrosoftDotNetApiCompatTaskPackageVersion) unless it lacks a prerelease version, then we use the SDK set in global.json to avoid problems with installing stable servicing versions that are not yet public. --> + + <_GlobalJsonContent Condition="'$(NETCoreSdkVersion)' == ''">$([System.IO.File]::ReadAllText('$(MSBuildThisFileDirectory)../global.json')) + <_GlobalJsonSdkVersion Condition="'$(NETCoreSdkVersion)' == '' and '$(_GlobalJsonContent)' != ''">$([System.Text.RegularExpressions.Regex]::Match($(_GlobalJsonContent), '"version"\s*:\s*"([^"]+)"').Groups[1].Value) + $(_GlobalJsonSdkVersion) $(MicrosoftDotNetApiCompatTaskPackageVersion) From cd256c6df8ef8b00eb62b1d2f7a331863d31b2c6 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Wed, 3 Dec 2025 21:11:10 -0600 Subject: [PATCH 18/43] Make the regex parsing json a little more robust --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 1091b4f2a63eed..2c41249935cba1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -24,7 +24,7 @@ that are not yet public. --> <_GlobalJsonContent Condition="'$(NETCoreSdkVersion)' == ''">$([System.IO.File]::ReadAllText('$(MSBuildThisFileDirectory)../global.json')) - <_GlobalJsonSdkVersion Condition="'$(NETCoreSdkVersion)' == '' and '$(_GlobalJsonContent)' != ''">$([System.Text.RegularExpressions.Regex]::Match($(_GlobalJsonContent), '"version"\s*:\s*"([^"]+)"').Groups[1].Value) + <_GlobalJsonSdkVersion Condition="'$(NETCoreSdkVersion)' == '' and '$(_GlobalJsonContent)' != ''">$([System.Text.RegularExpressions.Regex]::Match($(_GlobalJsonContent), '"sdk"\s*:\s*\{[^\}]*"version"\s*:\s*"([^"]+)"', System.Text.RegularExpressions.RegexOptions.Singleline).Groups[1].Value) $(_GlobalJsonSdkVersion) Date: Wed, 3 Dec 2025 21:32:42 -0600 Subject: [PATCH 20/43] Remove unused darc dependency on transport manifest package --- eng/Version.Details.xml | 4 ---- eng/pipelines/common/xplat-setup.yml | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0ba1fb5912f558..90ad1bc1ffa0f3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -49,10 +49,6 @@ https://github.com/dotnet/dotnet e545239117919cda700be149a2e9a032374fc284 - - https://github.com/dotnet/dotnet - e545239117919cda700be149a2e9a032374fc284 - diff --git a/eng/pipelines/common/xplat-setup.yml b/eng/pipelines/common/xplat-setup.yml index 8a6f93b097b6c3..c814d724ff3510 100644 --- a/eng/pipelines/common/xplat-setup.yml +++ b/eng/pipelines/common/xplat-setup.yml @@ -118,7 +118,7 @@ jobs: - ${{ if eq(parameters.archType, 'wasm') }}: - name: wasmDarcDependenciesChanged value: $[ or( - eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.Microsoft_NET_Workload_Emscripten_Current_Manifest-10_0_100_Transport'], true), + eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.Microsoft_DotNet_ApiCompat_Task'], true), eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.Microsoft_DotNet_Build_Tasks_Workloads'], true), eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.System_Runtime_TimeZoneData'], true), eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.Microsoft_Net_Compilers_Toolset'], true), From 373ad7f825f168dfadab13f1660d21d581910c57 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Wed, 3 Dec 2025 23:08:00 -0600 Subject: [PATCH 21/43] Fix sdkbandversion computation --- eng/Versions.props | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index 2c41249935cba1..535abd46d87404 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -32,9 +32,9 @@ $(NETCoreSdkVersion) $([System.String]::Copy('$(SdkVersionForWorkloadTesting)').Split('.')[0]) $(SdkMajorVersion).0.100 - true - -$([System.String]::Copy('$(SdkVersionForWorkloadTesting)').Split('-')[1]) - $(SdkBandVersion)$(SdkPreReleaseLabel) + $([System.Text.RegularExpressions.Regex]::Match($(SdkVersionForWorkloadTesting), '-(?!rtm|servicing)(.+)\.[^.]+\.[^.]+$').Groups[1].Value) + $(SdkBandVersion)-$(SdkPreReleaseLabel) + $(SdkBandVersion) $(MajorVersion).$(MinorVersion).0.0 From 5836b97144424e9bf3188dd375fe8b927a756944 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Wed, 3 Dec 2025 23:16:20 -0600 Subject: [PATCH 22/43] Make WasmNativeWorkloadAvailable follow the same pattern for net10/11 --- .../WorkloadManifest.targets.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest/WorkloadManifest.targets.in b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest/WorkloadManifest.targets.in index febc322518bfad..e50a7dac19aea9 100644 --- a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest/WorkloadManifest.targets.in +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest/WorkloadManifest.targets.in @@ -38,8 +38,8 @@ true - true - true + $(WasmNativeWorkload11) + $(WasmNativeWorkload10) $(WasmNativeWorkload9) $(WasmNativeWorkload8) $(WasmNativeWorkload7) From f25ba1ea4a4a3cc76fa324139a0beb85e6d6d1c0 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Thu, 4 Dec 2025 08:57:16 -0600 Subject: [PATCH 23/43] Add back transport version and use it for the sdk version computation --- eng/Version.Details.xml | 4 ++++ eng/Versions.props | 24 +++++++++++------------- eng/pipelines/common/xplat-setup.yml | 2 +- 3 files changed, 16 insertions(+), 14 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 90ad1bc1ffa0f3..0ba1fb5912f558 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -49,6 +49,10 @@ https://github.com/dotnet/dotnet e545239117919cda700be149a2e9a032374fc284 + + https://github.com/dotnet/dotnet + e545239117919cda700be149a2e9a032374fc284 + diff --git a/eng/Versions.props b/eng/Versions.props index 535abd46d87404..14900e482a0aaa 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -18,23 +18,21 @@ false release - - <_GlobalJsonContent Condition="'$(NETCoreSdkVersion)' == ''">$([System.IO.File]::ReadAllText('$(MSBuildThisFileDirectory)../global.json')) - <_GlobalJsonSdkVersion Condition="'$(NETCoreSdkVersion)' == '' and '$(_GlobalJsonContent)' != ''">$([System.Text.RegularExpressions.Regex]::Match($(_GlobalJsonContent), '"sdk"\s*:\s*\{[^\}]*"version"\s*:\s*"([^"]+)"', System.Text.RegularExpressions.RegexOptions.Singleline).Groups[1].Value) - $(_GlobalJsonSdkVersion) - $(MicrosoftDotNetApiCompatTaskPackageVersion) - $(NETCoreSdkVersion) + The published manifests are built in dotnet/sdk so these values are for testing purposes only. + We use $(MicrosoftNETWorkloadEmscriptenCurrentManifest100100TransportVersion) unless it is lower + than the sdk version specified in global.json + --> + + <_GlobalJsonContent>$([System.IO.File]::ReadAllText('$(MSBuildThisFileDirectory)../global.json')) + <_GlobalJsonSdkVersion Condition="'$(_GlobalJsonContent)' != ''">$([System.Text.RegularExpressions.Regex]::Match($(_GlobalJsonContent), '"sdk"\s*:\s*\{[^\}]*"version"\s*:\s*"([^"]+)"', System.Text.RegularExpressions.RegexOptions.Singleline).Groups[1].Value) + <_DotnetSdkVersion>$(MicrosoftNETWorkloadEmscriptenCurrentManifest100100TransportVersion) + $(_DotnetSdkVersion) + $(_GlobalJsonSdkVersion) $([System.String]::Copy('$(SdkVersionForWorkloadTesting)').Split('.')[0]) $(SdkMajorVersion).0.100 $([System.Text.RegularExpressions.Regex]::Match($(SdkVersionForWorkloadTesting), '-(?!rtm|servicing)(.+)\.[^.]+\.[^.]+$').Groups[1].Value) - $(SdkBandVersion)-$(SdkPreReleaseLabel) $(SdkBandVersion) + $(SdkBandVersion)-$(SdkPreReleaseLabel) $(MajorVersion).$(MinorVersion).0.0 diff --git a/eng/pipelines/common/xplat-setup.yml b/eng/pipelines/common/xplat-setup.yml index c814d724ff3510..8a6f93b097b6c3 100644 --- a/eng/pipelines/common/xplat-setup.yml +++ b/eng/pipelines/common/xplat-setup.yml @@ -118,7 +118,7 @@ jobs: - ${{ if eq(parameters.archType, 'wasm') }}: - name: wasmDarcDependenciesChanged value: $[ or( - eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.Microsoft_DotNet_ApiCompat_Task'], true), + eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.Microsoft_NET_Workload_Emscripten_Current_Manifest-10_0_100_Transport'], true), eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.Microsoft_DotNet_Build_Tasks_Workloads'], true), eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.System_Runtime_TimeZoneData'], true), eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.Microsoft_Net_Compilers_Toolset'], true), From bd4820f17323b9d9200be39739cff3f1bbd705d3 Mon Sep 17 00:00:00 2001 From: "Eric St. John" Date: Thu, 4 Dec 2025 11:17:04 -0800 Subject: [PATCH 24/43] Update test resources with latest assembly version --- .../System.Resources.Extensions.Tests.csproj | 8 ++++++-- .../tests/TestData.resources | Bin 8184 -> 8184 bytes 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/libraries/System.Resources.Extensions/tests/System.Resources.Extensions.Tests.csproj b/src/libraries/System.Resources.Extensions/tests/System.Resources.Extensions.Tests.csproj index 5b4819e102073c..c4fe3a5a1dbafc 100644 --- a/src/libraries/System.Resources.Extensions/tests/System.Resources.Extensions.Tests.csproj +++ b/src/libraries/System.Resources.Extensions/tests/System.Resources.Extensions.Tests.csproj @@ -52,11 +52,15 @@ $(TargetDir)%(Class)%(Identity).exception.txt - $(NetCoreAppCurrentTestHostPath)dotnet exec --runtimeconfig $(TargetDir)$(TargetName).runtimeconfig.json Microsoft.DotNet.RemoteExecutor.dll $(AssemblyName) %(Class) %(Identity) %(ExceptionFile) %(Parameters) + $(NetCoreAppCurrentTestHostPath)dotnet exec --runtimeconfig $(TargetDir)$(TargetName).runtimeconfig.json --depsfile $(TargetDir)$(TargetName).deps.json Microsoft.DotNet.RemoteExecutor.dll $(AssemblyName) %(Class) %(Identity) %(ExceptionFile) %(Parameters) - + + + + + diff --git a/src/libraries/System.Resources.Extensions/tests/TestData.resources b/src/libraries/System.Resources.Extensions/tests/TestData.resources index 879b51485938a82172d7f0befc7aa8ab9c8f1866..4b45bcff8a5d394c7e2029a565f274e067c94000 100644 GIT binary patch delta 18 acmexi|HFR6Rc1!R$&JDqoBuKYk_G@%qX Date: Thu, 4 Dec 2025 14:26:25 -0800 Subject: [PATCH 25/43] Fix ILLink.RoslynAnalyzer.Tests --- .../test/ILLink.RoslynAnalyzer.Tests/TestCaseCompilation.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/tools/illink/test/ILLink.RoslynAnalyzer.Tests/TestCaseCompilation.cs b/src/tools/illink/test/ILLink.RoslynAnalyzer.Tests/TestCaseCompilation.cs index 16e4c6d992114c..6f4974aa1c3d39 100644 --- a/src/tools/illink/test/ILLink.RoslynAnalyzer.Tests/TestCaseCompilation.cs +++ b/src/tools/illink/test/ILLink.RoslynAnalyzer.Tests/TestCaseCompilation.cs @@ -67,7 +67,11 @@ public static (CompilationWithAnalyzers Compilation, SemanticModel SemanticModel specificDiagnosticOptions: new Dictionary { // Allow the polyfilled DynamicallyAccessedMembersAttribute to take precedence over the one in corelib. - { "CS0436", ReportDiagnostic.Suppress } + { "CS0436", ReportDiagnostic.Suppress }, + // Suppress assembly reference version mismatch warnings. The linker test assemblies are built against + // NetCoreAppToolCurrent, but during test execution we recompile individual test files against the live + // libraries along with a reference to one of the already-built linker test assemblies. + { "CS1701", ReportDiagnostic.Suppress } })); var analyzerOptions = new AnalyzerOptions( additionalFiles: additionalFiles?.ToImmutableArray() ?? ImmutableArray.Empty, From bb8c015f26f58d1de21c694e15952992fe8d762d Mon Sep 17 00:00:00 2001 From: Steve Pfister Date: Thu, 4 Dec 2025 18:30:45 -0500 Subject: [PATCH 26/43] Don't append tfm to output path for mscordaccore_universal --- Directory.Build.props | 2 +- .../cdac/mscordaccore_universal/mscordaccore_universal.csproj | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 2bdf2df55753b8..7c3b8f4429eb67 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -178,7 +178,7 @@ $([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', '$(TargetRid).$(HostConfiguration)', 'corehost')) - $([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'mscordaccore_universal', '$(Configuration)', '$(NetCoreAppCurrent)', '$(PortableTargetRid)', 'publish')) + $([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'mscordaccore_universal', '$(Configuration)', '$(PortableTargetRid)', 'publish')) diff --git a/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj b/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj index dd127583c1592b..be8a076af86c5b 100644 --- a/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj +++ b/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj @@ -10,6 +10,9 @@ false true false + false + false + true From 6041bb70d3f9e8d10b19b50673ca1173043e70d8 Mon Sep 17 00:00:00 2001 From: Sven Boemer Date: Thu, 4 Dec 2025 16:06:55 -0800 Subject: [PATCH 27/43] Also CS1702 --- .../test/ILLink.RoslynAnalyzer.Tests/TestCaseCompilation.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tools/illink/test/ILLink.RoslynAnalyzer.Tests/TestCaseCompilation.cs b/src/tools/illink/test/ILLink.RoslynAnalyzer.Tests/TestCaseCompilation.cs index 6f4974aa1c3d39..94e829fc71ee1b 100644 --- a/src/tools/illink/test/ILLink.RoslynAnalyzer.Tests/TestCaseCompilation.cs +++ b/src/tools/illink/test/ILLink.RoslynAnalyzer.Tests/TestCaseCompilation.cs @@ -71,7 +71,8 @@ public static (CompilationWithAnalyzers Compilation, SemanticModel SemanticModel // Suppress assembly reference version mismatch warnings. The linker test assemblies are built against // NetCoreAppToolCurrent, but during test execution we recompile individual test files against the live // libraries along with a reference to one of the already-built linker test assemblies. - { "CS1701", ReportDiagnostic.Suppress } + { "CS1701", ReportDiagnostic.Suppress }, + { "CS1702", ReportDiagnostic.Suppress } })); var analyzerOptions = new AnalyzerOptions( additionalFiles: additionalFiles?.ToImmutableArray() ?? ImmutableArray.Empty, From 3ff42c69f9491ad9c43c0800726aa59c0a7b67cb Mon Sep 17 00:00:00 2001 From: "Eric St. John" Date: Thu, 4 Dec 2025 18:19:25 -0800 Subject: [PATCH 28/43] Use AnyHaveMetadataValue rather than comparing to empty Workaround https://github.com/dotnet/msbuild/issues/12877 --- eng/targetingpacks.targets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/targetingpacks.targets b/eng/targetingpacks.targets index e98c834fff8782..a1018381262f72 100644 --- a/eng/targetingpacks.targets +++ b/eng/targetingpacks.targets @@ -56,7 +56,7 @@ RuntimePackNamePatterns="$(LocalFrameworkOverrideName).Runtime.Mono.**RID**" RuntimePackRuntimeIdentifiers="linux-arm;linux-arm64;linux-musl-arm64;linux-musl-x64;linux-x64;osx-x64;linux-riscv64;linux-musl-riscv64;linux-loongarch64;linux-musl-loongarch64;rhel.6-x64;win-arm64;win-x64;win-x86;linux-musl-arm;osx-arm64;linux-s390x;linux-bionic-arm;linux-bionic-arm64;linux-bionic-x64;linux-bionic-x86;browser-wasm;ios-arm64;ios-arm;iossimulator-arm64;iossimulator-x64;iossimulator-x86;tvos-arm64;tvossimulator-arm64;tvossimulator-x64;maccatalyst-x64;maccatalyst-arm64;android-arm64;android-arm;android-x64;android-x86" RuntimePackLabels="Mono" - Condition="'$(UseLocalTargetingRuntimePack)' == 'true' and ('@(KnownRuntimePack)' == '' or @(KnownRuntimePack->WithMetadataValue('Identity', 'Microsoft.NETCore.App')->WithMetadataValue('RuntimePackLabels', 'Mono')->WithMetadataValue('TargetFramework', '$(NetCoreAppCurrent)')) == '')" /> + Condition="'$(UseLocalTargetingRuntimePack)' == 'true' and ('@(KnownRuntimePack)' == '' or '@(KnownRuntimePack->WithMetadataValue('Identity', 'Microsoft.NETCore.App')->WithMetadataValue('RuntimePackLabels', 'Mono')->AnyHaveMetadataValue('TargetFramework', '$(NetCoreAppCurrent)'))' != 'true')" /> + Condition="'$(UseLocalTargetingRuntimePack)' == 'true' and ('@(KnownRuntimePack)' == '' or '@(KnownRuntimePack->WithMetadataValue('Identity', 'Microsoft.NETCore.App')->WithMetadataValue('RuntimePackLabels', 'NativeAOT')->AnyHaveMetadataValue('TargetFramework', '$(NetCoreAppCurrent)'))' != 'true')" /> Date: Fri, 5 Dec 2025 09:02:42 -0800 Subject: [PATCH 29/43] Fix pruning error in installer tests --- src/installer/tests/Assets/Projects/Directory.Build.targets | 1 + 1 file changed, 1 insertion(+) diff --git a/src/installer/tests/Assets/Projects/Directory.Build.targets b/src/installer/tests/Assets/Projects/Directory.Build.targets index e83a44b684bb36..958885653537bb 100644 --- a/src/installer/tests/Assets/Projects/Directory.Build.targets +++ b/src/installer/tests/Assets/Projects/Directory.Build.targets @@ -1,5 +1,6 @@ + From be0b33a5551baed37d2fa45cbdc8d1dae22db814 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Fri, 5 Dec 2025 14:03:14 -0600 Subject: [PATCH 30/43] Install more bits --- eng/testing/workloads-testing.targets | 6 +++--- .../Sdk/WorkloadTesting.Core.targets | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/eng/testing/workloads-testing.targets b/eng/testing/workloads-testing.targets index 4c21756db44e40..3eced5cd4f9dbe 100644 --- a/eng/testing/workloads-testing.targets +++ b/eng/testing/workloads-testing.targets @@ -8,9 +8,9 @@ $([MSBuild]::NormalizeDirectory($(ArtifactsDir), 'packages', $(Configuration), 'Shipping')) $(_DotNetInstallScriptPath) -i $(_SdkWithNoWorkloadPath) -v latest -q daily --channel 10.0 + >$(_DotNetInstallScriptPath) -i $(_SdkWithNoWorkloadPath) -v latest -q daily --channel 11.0 $(_DotNetInstallScriptPath) -InstallDir $(_SdkWithNoWorkloadPath) -Quality daily -Channel 10.0 + >$(_DotNetInstallScriptPath) -InstallDir $(_SdkWithNoWorkloadPath) -Quality daily -Channel 11.0 $(SdkBandVersionForWorkload_FromRuntimeVersions) @@ -18,7 +18,7 @@ - + diff --git a/src/mono/nuget/Microsoft.NET.Runtime.WorkloadTesting.Internal/Sdk/WorkloadTesting.Core.targets b/src/mono/nuget/Microsoft.NET.Runtime.WorkloadTesting.Internal/Sdk/WorkloadTesting.Core.targets index 768e1cd44ec780..550672aa417d8a 100755 --- a/src/mono/nuget/Microsoft.NET.Runtime.WorkloadTesting.Internal/Sdk/WorkloadTesting.Core.targets +++ b/src/mono/nuget/Microsoft.NET.Runtime.WorkloadTesting.Internal/Sdk/WorkloadTesting.Core.targets @@ -110,7 +110,7 @@ - $(SdkBandVersion)$([System.Text.RegularExpressions.Regex]::Match($(_DotNetVersionOutput), `-(?!rtm)[A-z]*[\.]*\d*`)) + $(SdkBandVersion)$([System.Text.RegularExpressions.Regex]::Match($(_DotNetVersionOutput), `-(?!rtm|release)[A-z]*[\.]*\d*`)) $(SdkBandVersionForWorkload_ComputedFromInstaller) $(VersionBandForSdkManifestsDir) From 2c47780217807931239c872ceb123667c85ced78 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Fri, 5 Dec 2025 14:23:57 -0600 Subject: [PATCH 31/43] Do more workload tests --- eng/testing/workloads-browser.targets | 10 ++++++++-- eng/testing/workloads-testing.targets | 5 +++-- eng/testing/workloads-wasi.targets | 7 +++++++ 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/eng/testing/workloads-browser.targets b/eng/testing/workloads-browser.targets index ad279f9f506223..4bb3ddb7502fdf 100644 --- a/eng/testing/workloads-browser.targets +++ b/eng/testing/workloads-browser.targets @@ -14,6 +14,11 @@ Variant="latest" Version="$(PackageVersionForWorkloadManifests)" /> + + + - - + + diff --git a/eng/testing/workloads-testing.targets b/eng/testing/workloads-testing.targets index 3eced5cd4f9dbe..25b53de8d15d64 100644 --- a/eng/testing/workloads-testing.targets +++ b/eng/testing/workloads-testing.targets @@ -7,6 +7,7 @@ $([MSBuild]::NormalizeDirectory($(ArtifactsDir), 'packages', $(Configuration), 'Shipping')) + $(_DotNetInstallScriptPath) -i $(_SdkWithNoWorkloadPath) -v latest -q daily --channel 11.0 - + diff --git a/eng/testing/workloads-wasi.targets b/eng/testing/workloads-wasi.targets index 1fa46bc733adda..e3e26167a563dc 100644 --- a/eng/testing/workloads-wasi.targets +++ b/eng/testing/workloads-wasi.targets @@ -14,6 +14,12 @@ Variant="latest" Version="$(PackageVersionForWorkloadManifests)" /> + + + From 55cb705d1004e4d05bef07df2487e280a426db18 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Fri, 5 Dec 2025 19:19:02 -0600 Subject: [PATCH 32/43] Add missing project --- src/mono/nuget/manifest-packages.proj | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mono/nuget/manifest-packages.proj b/src/mono/nuget/manifest-packages.proj index c617ca8af03c78..d2c487a75870ae 100644 --- a/src/mono/nuget/manifest-packages.proj +++ b/src/mono/nuget/manifest-packages.proj @@ -5,5 +5,6 @@ + From bc7eaa9e0089a63f062bc6ffe336524e21dad1bc Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Fri, 5 Dec 2025 19:30:57 -0600 Subject: [PATCH 33/43] add bootstrap patch --- src/native/managed/cdac/Directory.Build.props | 6 ++++++ .../mscordaccore_universal/mscordaccore_universal.csproj | 2 ++ 2 files changed, 8 insertions(+) diff --git a/src/native/managed/cdac/Directory.Build.props b/src/native/managed/cdac/Directory.Build.props index 41402cb0183fb6..b5e064ecd0765b 100644 --- a/src/native/managed/cdac/Directory.Build.props +++ b/src/native/managed/cdac/Directory.Build.props @@ -1,5 +1,11 @@ + + + false + true + + <_Parameter1>NETCDAC0001 diff --git a/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj b/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj index be8a076af86c5b..151da64cb85918 100644 --- a/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj +++ b/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj @@ -2,7 +2,9 @@ $(LibPrefix)$(MSBuildProjectName) + $(NetCoreAppToolCurrent) + $(NetCoreAppCurrent) Microsoft.Diagnostics.DataContractReader enable true From e3f90347356efa9f3e9e5537962fde455b5e72ac Mon Sep 17 00:00:00 2001 From: Steve Pfister Date: Sat, 6 Dec 2025 11:20:01 -0500 Subject: [PATCH 34/43] Make sure cdac uses local runtime packs --- src/native/managed/Directory.Build.props | 8 ++++++-- src/native/managed/cdac/Directory.Build.props | 1 + .../mscordaccore_universal/mscordaccore_universal.csproj | 4 ---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/src/native/managed/Directory.Build.props b/src/native/managed/Directory.Build.props index a431ff1b38fd64..05195ea77984f1 100644 --- a/src/native/managed/Directory.Build.props +++ b/src/native/managed/Directory.Build.props @@ -1,4 +1,8 @@ - - + + + + + true + diff --git a/src/native/managed/cdac/Directory.Build.props b/src/native/managed/cdac/Directory.Build.props index b5e064ecd0765b..b8fb4646ebd854 100644 --- a/src/native/managed/cdac/Directory.Build.props +++ b/src/native/managed/cdac/Directory.Build.props @@ -2,6 +2,7 @@ + false false true diff --git a/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj b/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj index 151da64cb85918..7e50e343626b7e 100644 --- a/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj +++ b/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj @@ -4,7 +4,6 @@ $(LibPrefix)$(MSBuildProjectName) $(NetCoreAppToolCurrent) - $(NetCoreAppCurrent) Microsoft.Diagnostics.DataContractReader enable true @@ -12,9 +11,6 @@ false true false - false - false - true From f57d1d6065fff85e35f41e8b4d7d507512d72f71 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Sat, 6 Dec 2025 12:46:07 -0600 Subject: [PATCH 35/43] Temporarily satisfy emscripten net10 sdk with current issue to track the work is https://github.com/dotnet/runtime/issues/122264 --- .../WorkloadManifest.json.in | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/WorkloadManifest.json.in b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/WorkloadManifest.json.in index aeacb7bcec35f7..09f31428e75586 100644 --- a/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/WorkloadManifest.json.in +++ b/src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.net10.Manifest/WorkloadManifest.json.in @@ -1,8 +1,5 @@ { "version": "${WorkloadVersion}", - "depends-on": { - "Microsoft.NET.Workload.Emscripten.net10": "${EmscriptenVersion}" - }, "workloads": { "wasm-tools-net10": { "description": ".NET WebAssembly build tools for net10.0", @@ -12,7 +9,7 @@ "Microsoft.NETCore.App.Runtime.Mono.net10.browser-wasm", "Microsoft.NETCore.App.Runtime.AOT.Cross.net10.browser-wasm" ], - "extends": [ "microsoft-net-runtime-mono-tooling-net10", "microsoft-net-sdk-emscripten-net10" ], + "extends": [ "microsoft-net-runtime-mono-tooling-net10", "microsoft-net-sdk-emscripten" ], "platforms": [ "win-x64", "win-arm64", "linux-x64", "linux-arm64", "linux-musl-x64", "linux-musl-arm64", "osx-x64", "osx-arm64" ] }, "wasm-experimental-net10": { From dd05bb942fc73278990a60e6334eb0b2408017e6 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Sat, 6 Dec 2025 15:21:36 -0600 Subject: [PATCH 36/43] Bump wbts targetframework --- .../testassets/BlazorBasicTestApp/App/BlazorBasicTestApp.csproj | 2 +- .../RazorClassLibrary/RazorClassLibrary.csproj | 2 +- src/mono/wasm/testassets/LibraryMode/LibraryMode.csproj | 2 +- .../LibraryWithResources/LibraryWithResources.csproj | 2 +- .../testassets/WasmBasicTestApp/App/WasmBasicTestApp.csproj | 2 +- src/mono/wasm/testassets/WasmBasicTestApp/Json/Json.csproj | 2 +- .../testassets/WasmBasicTestApp/LazyLibrary/LazyLibrary.csproj | 2 +- .../wasm/testassets/WasmBasicTestApp/Library/Library.csproj | 2 +- .../WasmBasicTestApp/ResourceLibrary/ResourceLibrary.csproj | 2 +- .../WasmOnAspNetCore/AspNetCoreServer/AspNetCoreServer.csproj | 2 +- .../WasmOnAspNetCore/BlazorClient/BlazorClient.csproj | 2 +- src/mono/wasm/testassets/WasmOnAspNetCore/Shared/Shared.csproj | 2 +- .../WasmOnAspNetCore/WasmBrowserClient/WasmBrowserClient.csproj | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/mono/wasm/testassets/BlazorBasicTestApp/App/BlazorBasicTestApp.csproj b/src/mono/wasm/testassets/BlazorBasicTestApp/App/BlazorBasicTestApp.csproj index a76fd751306417..f24c344837e088 100644 --- a/src/mono/wasm/testassets/BlazorBasicTestApp/App/BlazorBasicTestApp.csproj +++ b/src/mono/wasm/testassets/BlazorBasicTestApp/App/BlazorBasicTestApp.csproj @@ -1,7 +1,7 @@ - net10.0 + net11.0 enable enable true diff --git a/src/mono/wasm/testassets/BlazorBasicTestApp/RazorClassLibrary/RazorClassLibrary.csproj b/src/mono/wasm/testassets/BlazorBasicTestApp/RazorClassLibrary/RazorClassLibrary.csproj index 7d785ff3dc4f8a..a6bcd3f2e3c845 100644 --- a/src/mono/wasm/testassets/BlazorBasicTestApp/RazorClassLibrary/RazorClassLibrary.csproj +++ b/src/mono/wasm/testassets/BlazorBasicTestApp/RazorClassLibrary/RazorClassLibrary.csproj @@ -1,7 +1,7 @@ - net10.0 + net11.0 enable enable diff --git a/src/mono/wasm/testassets/LibraryMode/LibraryMode.csproj b/src/mono/wasm/testassets/LibraryMode/LibraryMode.csproj index ad30fa250b5293..b7be9e23a9341f 100644 --- a/src/mono/wasm/testassets/LibraryMode/LibraryMode.csproj +++ b/src/mono/wasm/testassets/LibraryMode/LibraryMode.csproj @@ -1,7 +1,7 @@ browser-wasm - net10.0 + net11.0 true Library true diff --git a/src/mono/wasm/testassets/SatelliteAssemblyFromProjectRef/LibraryWithResources/LibraryWithResources.csproj b/src/mono/wasm/testassets/SatelliteAssemblyFromProjectRef/LibraryWithResources/LibraryWithResources.csproj index 555ae434a707e3..bdef8eb1c34af5 100644 --- a/src/mono/wasm/testassets/SatelliteAssemblyFromProjectRef/LibraryWithResources/LibraryWithResources.csproj +++ b/src/mono/wasm/testassets/SatelliteAssemblyFromProjectRef/LibraryWithResources/LibraryWithResources.csproj @@ -1,5 +1,5 @@ - net10.0 + net11.0 diff --git a/src/mono/wasm/testassets/WasmBasicTestApp/App/WasmBasicTestApp.csproj b/src/mono/wasm/testassets/WasmBasicTestApp/App/WasmBasicTestApp.csproj index 25a77d37e5b0e5..fdb57ced730a1b 100644 --- a/src/mono/wasm/testassets/WasmBasicTestApp/App/WasmBasicTestApp.csproj +++ b/src/mono/wasm/testassets/WasmBasicTestApp/App/WasmBasicTestApp.csproj @@ -1,6 +1,6 @@ - net10.0 + net11.0 browser-wasm Exe true diff --git a/src/mono/wasm/testassets/WasmBasicTestApp/Json/Json.csproj b/src/mono/wasm/testassets/WasmBasicTestApp/Json/Json.csproj index f3b9c89cb1f648..90023a5e01d4df 100644 --- a/src/mono/wasm/testassets/WasmBasicTestApp/Json/Json.csproj +++ b/src/mono/wasm/testassets/WasmBasicTestApp/Json/Json.csproj @@ -1,7 +1,7 @@ - net10.0 + net11.0 Library true diff --git a/src/mono/wasm/testassets/WasmBasicTestApp/LazyLibrary/LazyLibrary.csproj b/src/mono/wasm/testassets/WasmBasicTestApp/LazyLibrary/LazyLibrary.csproj index 7861a9e9795585..0e42ce3d859a52 100644 --- a/src/mono/wasm/testassets/WasmBasicTestApp/LazyLibrary/LazyLibrary.csproj +++ b/src/mono/wasm/testassets/WasmBasicTestApp/LazyLibrary/LazyLibrary.csproj @@ -1,6 +1,6 @@ - net10.0 + net11.0 browser-wasm Library true diff --git a/src/mono/wasm/testassets/WasmBasicTestApp/Library/Library.csproj b/src/mono/wasm/testassets/WasmBasicTestApp/Library/Library.csproj index a3006ce340b772..9a4419fdc08de5 100644 --- a/src/mono/wasm/testassets/WasmBasicTestApp/Library/Library.csproj +++ b/src/mono/wasm/testassets/WasmBasicTestApp/Library/Library.csproj @@ -1,6 +1,6 @@ - net10.0 + net11.0 Library true diff --git a/src/mono/wasm/testassets/WasmBasicTestApp/ResourceLibrary/ResourceLibrary.csproj b/src/mono/wasm/testassets/WasmBasicTestApp/ResourceLibrary/ResourceLibrary.csproj index a3006ce340b772..9a4419fdc08de5 100644 --- a/src/mono/wasm/testassets/WasmBasicTestApp/ResourceLibrary/ResourceLibrary.csproj +++ b/src/mono/wasm/testassets/WasmBasicTestApp/ResourceLibrary/ResourceLibrary.csproj @@ -1,6 +1,6 @@ - net10.0 + net11.0 Library true diff --git a/src/mono/wasm/testassets/WasmOnAspNetCore/AspNetCoreServer/AspNetCoreServer.csproj b/src/mono/wasm/testassets/WasmOnAspNetCore/AspNetCoreServer/AspNetCoreServer.csproj index 7b1b4ec3d34d98..51f3643678090b 100644 --- a/src/mono/wasm/testassets/WasmOnAspNetCore/AspNetCoreServer/AspNetCoreServer.csproj +++ b/src/mono/wasm/testassets/WasmOnAspNetCore/AspNetCoreServer/AspNetCoreServer.csproj @@ -1,7 +1,7 @@ - net10.0 + net11.0 enable enable true diff --git a/src/mono/wasm/testassets/WasmOnAspNetCore/BlazorClient/BlazorClient.csproj b/src/mono/wasm/testassets/WasmOnAspNetCore/BlazorClient/BlazorClient.csproj index c2919105fcafaa..d96cb98376fb1a 100644 --- a/src/mono/wasm/testassets/WasmOnAspNetCore/BlazorClient/BlazorClient.csproj +++ b/src/mono/wasm/testassets/WasmOnAspNetCore/BlazorClient/BlazorClient.csproj @@ -1,7 +1,7 @@ - net10.0 + net11.0 enable enable true diff --git a/src/mono/wasm/testassets/WasmOnAspNetCore/Shared/Shared.csproj b/src/mono/wasm/testassets/WasmOnAspNetCore/Shared/Shared.csproj index 8c2bce70138411..bdd2f496f16709 100644 --- a/src/mono/wasm/testassets/WasmOnAspNetCore/Shared/Shared.csproj +++ b/src/mono/wasm/testassets/WasmOnAspNetCore/Shared/Shared.csproj @@ -1,7 +1,7 @@ - net10.0 + net11.0 Library true enable diff --git a/src/mono/wasm/testassets/WasmOnAspNetCore/WasmBrowserClient/WasmBrowserClient.csproj b/src/mono/wasm/testassets/WasmOnAspNetCore/WasmBrowserClient/WasmBrowserClient.csproj index 969fbdd238a035..5b7de67e2154d5 100644 --- a/src/mono/wasm/testassets/WasmOnAspNetCore/WasmBrowserClient/WasmBrowserClient.csproj +++ b/src/mono/wasm/testassets/WasmOnAspNetCore/WasmBrowserClient/WasmBrowserClient.csproj @@ -1,6 +1,6 @@ - net10.0 + net11.0 browser-wasm Exe true From bfe29afb6bbb85d3b763e72818a9f0bd182f051d Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Sat, 6 Dec 2025 15:23:02 -0600 Subject: [PATCH 37/43] Update src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj Co-authored-by: Adeel Mujahid <3840695+am11@users.noreply.github.com> --- .../cdac/mscordaccore_universal/mscordaccore_universal.csproj | 1 - 1 file changed, 1 deletion(-) diff --git a/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj b/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj index 7e50e343626b7e..dd127583c1592b 100644 --- a/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj +++ b/src/native/managed/cdac/mscordaccore_universal/mscordaccore_universal.csproj @@ -2,7 +2,6 @@ $(LibPrefix)$(MSBuildProjectName) - $(NetCoreAppToolCurrent) Microsoft.Diagnostics.DataContractReader enable From c3d3ccc47113c8e7295590033bd8f2c8c5c0a4b4 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Sat, 6 Dec 2025 17:56:52 -0600 Subject: [PATCH 38/43] Undo reading version from environment because it breaks in major version upgrades It is tempting to read the version from an environment variable, but this breaks scenarios where we do a major version upgrade (e.g., net10.0 to net11.0) because we may be running the test build from an older runtime. --- src/mono/wasi/Wasi.Build.Tests/BuildTestBase.cs | 7 ++++--- src/mono/wasm/Wasm.Build.Tests/BuildTestBase.cs | 11 ++++++----- .../Wasm.Build.Tests/NonWasmTemplateBuildTests.cs | 7 ++++--- 3 files changed, 14 insertions(+), 11 deletions(-) diff --git a/src/mono/wasi/Wasi.Build.Tests/BuildTestBase.cs b/src/mono/wasi/Wasi.Build.Tests/BuildTestBase.cs index 2dbc48098d5378..d377575adf8303 100644 --- a/src/mono/wasi/Wasi.Build.Tests/BuildTestBase.cs +++ b/src/mono/wasi/Wasi.Build.Tests/BuildTestBase.cs @@ -26,7 +26,8 @@ namespace Wasm.Build.Tests { public abstract class BuildTestBase : IClassFixture, IDisposable { - public static readonly string DefaultTargetFramework = $"net{Environment.Version.Major}.0"; + private const int TargetMajorVersion = 11; + public static readonly string DefaultTargetFramework = $"net{TargetMajorVersion}.0"; protected static readonly bool s_skipProjectCleanup; protected static readonly string s_xharnessRunnerCommand; protected string? _projectDir; @@ -36,7 +37,7 @@ public abstract class BuildTestBase : IClassFixture? ExtraBuildEnvironmentVariables = null ); - + public record AssertBundleOptions( BuildProjectOptions BuildOptions, bool ExpectSymbolsFile = true, diff --git a/src/mono/wasm/Wasm.Build.Tests/BuildTestBase.cs b/src/mono/wasm/Wasm.Build.Tests/BuildTestBase.cs index 4155c5fbfe1d8b..da799cc48a326b 100644 --- a/src/mono/wasm/Wasm.Build.Tests/BuildTestBase.cs +++ b/src/mono/wasm/Wasm.Build.Tests/BuildTestBase.cs @@ -26,11 +26,12 @@ namespace Wasm.Build.Tests { public abstract class BuildTestBase : IClassFixture, IDisposable { - public static readonly string DefaultTargetFramework = $"net{Environment.Version.Major}.0"; - public static readonly string PreviousTargetFramework = $"net{Environment.Version.Major - 1}.0"; - public static readonly string Previous2TargetFramework = $"net{Environment.Version.Major - 2}.0"; - public static readonly string DefaultTargetFrameworkForBlazor = $"net{Environment.Version.Major}.0"; - public static readonly string TargetFrameworkForTasks = $"net{Environment.Version.Major}.0"; + private const int TargetMajorVersion = 11; /* net11 */ + public static readonly string DefaultTargetFramework = $"net{TargetMajorVersion}.0"; + public static readonly string PreviousTargetFramework = $"net{TargetMajorVersion - 1}.0"; + public static readonly string Previous2TargetFramework = $"net{TargetMajorVersion - 2}.0"; + public static readonly string DefaultTargetFrameworkForBlazor = $"net{TargetMajorVersion}.0"; + public static readonly string TargetFrameworkForTasks = $"net{TargetMajorVersion}.0"; private const string DefaultEnvironmentLocale = "en-US"; protected static readonly string s_unicodeChars = "\u9FC0\u8712\u679B\u906B\u486B\u7149"; protected static readonly bool s_skipProjectCleanup; diff --git a/src/mono/wasm/Wasm.Build.Tests/NonWasmTemplateBuildTests.cs b/src/mono/wasm/Wasm.Build.Tests/NonWasmTemplateBuildTests.cs index c6e0134797e771..43908657cc8c74 100644 --- a/src/mono/wasm/Wasm.Build.Tests/NonWasmTemplateBuildTests.cs +++ b/src/mono/wasm/Wasm.Build.Tests/NonWasmTemplateBuildTests.cs @@ -25,9 +25,10 @@ public NonWasmTemplateBuildTests(ITestOutputHelper output, SharedBuildPerTestCla // TFM=DefaultTargetFramework // // This is useful for the case when we are on latest TFM, but sdk, and packages - // are really the previous version . - private static readonly string s_latestTargetFramework = $"net{Environment.Version.Major}.0"; - private static readonly string s_previousTargetFramework = $"net{Environment.Version.Major - 1}.0"; + // are really the previous version. + private static readonly int TargetMajorVersion = 11; /* net11 */ + private static readonly string s_latestTargetFramework = $"net{TargetMajorVersion}.0"; + private static readonly string s_previousTargetFramework = $"net{TargetMajorVersion - 1}.0"; private static string s_directoryBuildTargetsForPreviousTFM = $$""" From 6745d926b55cd1fe0b9578144094a0281b16ad15 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Sat, 6 Dec 2025 19:31:50 -0600 Subject: [PATCH 39/43] More fixes --- src/mono/wasi/Wasi.Build.Tests/BuildTestBase.cs | 2 +- src/mono/wasi/Wasi.Build.Tests/Wasi.Build.Tests.csproj | 5 ++++- src/mono/wasm/Wasm.Build.Tests/NonWasmTemplateBuildTests.cs | 2 +- src/mono/wasm/Wasm.Build.Tests/Wasm.Build.Tests.csproj | 4 +++- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/mono/wasi/Wasi.Build.Tests/BuildTestBase.cs b/src/mono/wasi/Wasi.Build.Tests/BuildTestBase.cs index d377575adf8303..366068ad8ac342 100644 --- a/src/mono/wasi/Wasi.Build.Tests/BuildTestBase.cs +++ b/src/mono/wasi/Wasi.Build.Tests/BuildTestBase.cs @@ -37,7 +37,7 @@ public abstract class BuildTestBase : IClassFixture$(PackageVersion) - <_RuntimePackVersions Include="$(_RuntimePackCurrentVersion)" EnvVarName="RUNTIME_PACK_VER10" /> + <_RuntimePackVersions Include="$(_RuntimePackCurrentVersion)" EnvVarName="RUNTIME_PACK_VER11" /> + + <_RuntimePackVersions Include="$(PackageVersionNet10)" EnvVarName="RUNTIME_PACK_VER10" Condition="'$(PackageVersionNet10)' != ''" /> + <_RuntimePackVersions Include="$(_RuntimePackCurrentVersion)" EnvVarName="RUNTIME_PACK_VER10" Condition="'$(PackageVersionNet10)' == ''" /> <_RuntimePackVersions Include="$(PackageVersionNet9)" EnvVarName="RUNTIME_PACK_VER9" Condition="'$(PackageVersionNet9)' != ''" /> <_RuntimePackVersions Include="$(_RuntimePackCurrentVersion)" EnvVarName="RUNTIME_PACK_VER9" Condition="'$(PackageVersionNet9)' == ''" /> diff --git a/src/mono/wasm/Wasm.Build.Tests/NonWasmTemplateBuildTests.cs b/src/mono/wasm/Wasm.Build.Tests/NonWasmTemplateBuildTests.cs index 43908657cc8c74..7ec8febbf36790 100644 --- a/src/mono/wasm/Wasm.Build.Tests/NonWasmTemplateBuildTests.cs +++ b/src/mono/wasm/Wasm.Build.Tests/NonWasmTemplateBuildTests.cs @@ -26,7 +26,7 @@ public NonWasmTemplateBuildTests(ITestOutputHelper output, SharedBuildPerTestCla // // This is useful for the case when we are on latest TFM, but sdk, and packages // are really the previous version. - private static readonly int TargetMajorVersion = 11; /* net11 */ + private const int TargetMajorVersion = 11; /* net11 */ private static readonly string s_latestTargetFramework = $"net{TargetMajorVersion}.0"; private static readonly string s_previousTargetFramework = $"net{TargetMajorVersion - 1}.0"; private static string s_directoryBuildTargetsForPreviousTFM = diff --git a/src/mono/wasm/Wasm.Build.Tests/Wasm.Build.Tests.csproj b/src/mono/wasm/Wasm.Build.Tests/Wasm.Build.Tests.csproj index 34652d3793d233..f6881d20fece0b 100644 --- a/src/mono/wasm/Wasm.Build.Tests/Wasm.Build.Tests.csproj +++ b/src/mono/wasm/Wasm.Build.Tests/Wasm.Build.Tests.csproj @@ -143,8 +143,10 @@ <_RuntimePackCurrentVersion Condition="'$(DotNetFinalVersionKind)' == ''">$(PackageVersion) - <_RuntimePackVersions Include="$(_RuntimePackCurrentVersion)" EnvVarName="RUNTIME_PACK_VER10" /> + <_RuntimePackVersions Include="$(_RuntimePackCurrentVersion)" EnvVarName="RUNTIME_PACK_VER11" /> + <_RuntimePackVersions Include="$(PackageVersionNet10)" EnvVarName="RUNTIME_PACK_VER10" Condition="'$(PackageVersionNet10)' != ''" /> + <_RuntimePackVersions Include="$(_RuntimePackCurrentVersion)" EnvVarName="RUNTIME_PACK_VER10" Condition="'$(PackageVersionNet10)' == ''" /> <_RuntimePackVersions Include="$(PackageVersionNet9)" EnvVarName="RUNTIME_PACK_VER9" Condition="'$(PackageVersionNet9)' != ''" /> <_RuntimePackVersions Include="$(_RuntimePackCurrentVersion)" EnvVarName="RUNTIME_PACK_VER9" Condition="'$(PackageVersionNet9)' == ''" /> <_RuntimePackVersions Include="$(PackageVersionNet8)" EnvVarName="RUNTIME_PACK_VER8" Condition="'$(PackageVersionNet8)' != ''" /> From 95d9c0b9b226eb6238f8e08a534b408bcc0472bd Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Sat, 6 Dec 2025 19:53:20 -0600 Subject: [PATCH 40/43] Add placeholder for next bump --- src/mono/wasi/Wasi.Build.Tests/Wasi.Build.Tests.csproj | 1 + src/mono/wasm/Wasm.Build.Tests/Wasm.Build.Tests.csproj | 1 + 2 files changed, 2 insertions(+) diff --git a/src/mono/wasi/Wasi.Build.Tests/Wasi.Build.Tests.csproj b/src/mono/wasi/Wasi.Build.Tests/Wasi.Build.Tests.csproj index c927ad7da4fb3d..03acddf43183d0 100644 --- a/src/mono/wasi/Wasi.Build.Tests/Wasi.Build.Tests.csproj +++ b/src/mono/wasi/Wasi.Build.Tests/Wasi.Build.Tests.csproj @@ -102,6 +102,7 @@ <_RuntimePackCurrentVersion Condition="'$(DotNetFinalVersionKind)' == ''">$(PackageVersion) + <_RuntimePackVersions Include="$(_RuntimePackCurrentVersion)" EnvVarName="RUNTIME_PACK_VER11" /> <_RuntimePackVersions Include="$(PackageVersionNet10)" EnvVarName="RUNTIME_PACK_VER10" Condition="'$(PackageVersionNet10)' != ''" /> diff --git a/src/mono/wasm/Wasm.Build.Tests/Wasm.Build.Tests.csproj b/src/mono/wasm/Wasm.Build.Tests/Wasm.Build.Tests.csproj index f6881d20fece0b..812ad3661831bd 100644 --- a/src/mono/wasm/Wasm.Build.Tests/Wasm.Build.Tests.csproj +++ b/src/mono/wasm/Wasm.Build.Tests/Wasm.Build.Tests.csproj @@ -143,6 +143,7 @@ <_RuntimePackCurrentVersion Condition="'$(DotNetFinalVersionKind)' == ''">$(PackageVersion) + <_RuntimePackVersions Include="$(_RuntimePackCurrentVersion)" EnvVarName="RUNTIME_PACK_VER11" /> <_RuntimePackVersions Include="$(PackageVersionNet10)" EnvVarName="RUNTIME_PACK_VER10" Condition="'$(PackageVersionNet10)' != ''" /> From 9760663ab24ba719001edd45bb8eeb8d2a51bbb5 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Sat, 6 Dec 2025 21:50:10 -0600 Subject: [PATCH 41/43] bump the output dir --- .../build/Microsoft.NET.Sdk.WebAssembly.Browser.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/Microsoft.NET.Sdk.WebAssembly.Browser.targets b/src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/Microsoft.NET.Sdk.WebAssembly.Browser.targets index bad785110dabbf..e70e1c27c44773 100644 --- a/src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/Microsoft.NET.Sdk.WebAssembly.Browser.targets +++ b/src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/Microsoft.NET.Sdk.WebAssembly.Browser.targets @@ -56,7 +56,7 @@ Copyright (c) .NET Foundation. All rights reserved. <_WebAssemblySdkToolsDirectory Condition="'$(_WebAssemblySdkToolsDirectory)'==''">$(MSBuildThisFileDirectory)..\tools\ - <_WebAssemblySdkTasksTFM Condition=" '$(MSBuildRuntimeType)' == 'Core'">net10.0 + <_WebAssemblySdkTasksTFM Condition=" '$(MSBuildRuntimeType)' == 'Core'">net11.0 <_WebAssemblySdkTasksTFM Condition=" '$(MSBuildRuntimeType)' != 'Core'">net472 <_WebAssemblySdkTasksAssembly Condition="'$(_WebAssemblySdkTasksAssembly)' == ''">$(_WebAssemblySdkToolsDirectory)\$(_WebAssemblySdkTasksTFM)\Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.dll From ad06fec8a900bb6f9017bba6f0b9c9f14575ebd5 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Sat, 6 Dec 2025 23:15:41 -0600 Subject: [PATCH 42/43] Try something --- .../build/Microsoft.NET.Sdk.WebAssembly.Browser.targets | 2 +- src/mono/wasm/Wasm.Build.Tests/BuildTestBase.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/Microsoft.NET.Sdk.WebAssembly.Browser.targets b/src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/Microsoft.NET.Sdk.WebAssembly.Browser.targets index e70e1c27c44773..bad785110dabbf 100644 --- a/src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/Microsoft.NET.Sdk.WebAssembly.Browser.targets +++ b/src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/build/Microsoft.NET.Sdk.WebAssembly.Browser.targets @@ -56,7 +56,7 @@ Copyright (c) .NET Foundation. All rights reserved. <_WebAssemblySdkToolsDirectory Condition="'$(_WebAssemblySdkToolsDirectory)'==''">$(MSBuildThisFileDirectory)..\tools\ - <_WebAssemblySdkTasksTFM Condition=" '$(MSBuildRuntimeType)' == 'Core'">net11.0 + <_WebAssemblySdkTasksTFM Condition=" '$(MSBuildRuntimeType)' == 'Core'">net10.0 <_WebAssemblySdkTasksTFM Condition=" '$(MSBuildRuntimeType)' != 'Core'">net472 <_WebAssemblySdkTasksAssembly Condition="'$(_WebAssemblySdkTasksAssembly)' == ''">$(_WebAssemblySdkToolsDirectory)\$(_WebAssemblySdkTasksTFM)\Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.dll diff --git a/src/mono/wasm/Wasm.Build.Tests/BuildTestBase.cs b/src/mono/wasm/Wasm.Build.Tests/BuildTestBase.cs index da799cc48a326b..7ea453436f3920 100644 --- a/src/mono/wasm/Wasm.Build.Tests/BuildTestBase.cs +++ b/src/mono/wasm/Wasm.Build.Tests/BuildTestBase.cs @@ -31,7 +31,7 @@ public abstract class BuildTestBase : IClassFixture Date: Sun, 7 Dec 2025 01:48:31 -0600 Subject: [PATCH 43/43] Force framework for blazor template app --- src/mono/wasm/Wasm.Build.Tests/Blazor/AppsettingsTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mono/wasm/Wasm.Build.Tests/Blazor/AppsettingsTests.cs b/src/mono/wasm/Wasm.Build.Tests/Blazor/AppsettingsTests.cs index fa47fc4b458717..b7cf5832c291dc 100644 --- a/src/mono/wasm/Wasm.Build.Tests/Blazor/AppsettingsTests.cs +++ b/src/mono/wasm/Wasm.Build.Tests/Blazor/AppsettingsTests.cs @@ -23,7 +23,7 @@ public AppsettingsTests(ITestOutputHelper output, SharedBuildPerTestClassFixture public async Task FileInVfs() { Configuration config = Configuration.Debug; - ProjectInfo info = CreateWasmTemplateProject(Template.BlazorWasm, config, aot: false, "blazor"); + ProjectInfo info = CreateWasmTemplateProject(Template.BlazorWasm, config, aot: false, "blazor", addFrameworkArg: true); UpdateHomePage(); string projectDirectory = Path.GetDirectoryName(info.ProjectFilePath)!; File.WriteAllText(Path.Combine(projectDirectory, "wwwroot", "appsettings.json"), $"{{ \"Id\": \"{info.ProjectName}\" }}");