diff --git a/eng/common/templates/jobs/source-build.yml b/eng/common/templates/jobs/source-build.yml
index 00aa98eb3..7c240e654 100644
--- a/eng/common/templates/jobs/source-build.yml
+++ b/eng/common/templates/jobs/source-build.yml
@@ -14,7 +14,7 @@ parameters:
# This is the default platform provided by Arcade, intended for use by a managed-only repo.
defaultManagedPlatform:
name: 'Managed'
- container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:centos-7-3e800f1-20190501005343'
+ container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:centos-7'
# Defines the platforms on which to run build jobs. One job is created for each platform, and the
# object in this array is sent to the job template as 'platform'. If no platforms are specified,
diff --git a/src/SourceBuild/Arcade/eng/common/templates/job/source-build-build-tarball.yml b/src/SourceBuild/Arcade/eng/common/templates/job/source-build-build-tarball.yml
index 9ae170d1c..2c7900e09 100644
--- a/src/SourceBuild/Arcade/eng/common/templates/job/source-build-build-tarball.yml
+++ b/src/SourceBuild/Arcade/eng/common/templates/job/source-build-build-tarball.yml
@@ -85,7 +85,7 @@ jobs:
- ${{ if ne(parameters.excludeSdkContentTests, 'true') }}:
- download: ${{ parameters.installerBuildResourceId }}
artifact: BlobArtifacts
- patterns: '**/dotnet-sdk-+([0-9]).+([0-9]).+([0-9])?(-@(preview|rc|rtm)*)-linux-${{ parameters.architecture }}.tar.gz'
+ patterns: '**/dotnet-sdk-+([0-9]).+([0-9]).+([0-9])?(-@(preview|rc|rtm)*)-linux*-${{ parameters.architecture }}.tar.gz'
displayName: Download MSFT sdk Tarball
- ${{ if eq(parameters.usePreviousArtifacts, 'true') }}:
@@ -156,7 +156,12 @@ jobs:
if [[ '${{ parameters.excludeSdkContentTests}}' != 'true' ]]; then
dockerVolumeArgs+=" -v $(PIPELINE.WORKSPACE)/${{ parameters.installerBuildResourceId }}/BlobArtifacts/:/BlobArtifacts"
- msftSdkTarballName=$(find "$(PIPELINE.WORKSPACE)/${{ parameters.installerBuildResourceId }}/BlobArtifacts/" -name "dotnet-sdk-*-linux-${{ parameters.architecture }}.tar.gz" -exec basename {} \;)
+ platform="linux"
+ docker run --rm $(_Container) /bin/sh -c "cat /etc/os-release | grep -q alpine"
+ if [[ $? == 0 ]]; then
+ platform="$platform-musl"
+ fi
+ msftSdkTarballName=$(find "$(PIPELINE.WORKSPACE)/${{ parameters.installerBuildResourceId }}/BlobArtifacts/" -name "dotnet-sdk-*-$platform-${{ parameters.architecture }}.tar.gz" -exec basename {} \;)
dockerEnvArgs+=" -e SMOKE_TESTS_MSFT_SDK_TARBALL_PATH=/BlobArtifacts/$msftSdkTarballName"
fi
diff --git a/src/SourceBuild/Arcade/eng/common/templates/job/source-build-create-tarball.yml b/src/SourceBuild/Arcade/eng/common/templates/job/source-build-create-tarball.yml
index ac6d73016..347f61cf8 100644
--- a/src/SourceBuild/Arcade/eng/common/templates/job/source-build-create-tarball.yml
+++ b/src/SourceBuild/Arcade/eng/common/templates/job/source-build-create-tarball.yml
@@ -2,7 +2,7 @@
jobs:
- job: Source_Build_Create_Tarball
- container: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-33-20210222183538-031e7d2
+ container: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-38
displayName: Source-Build Create Tarball
pool:
${{ if eq(variables['System.TeamProject'], 'public') }}:
diff --git a/src/SourceBuild/Arcade/eng/common/templates/job/source-build-run-tarball-build.yml b/src/SourceBuild/Arcade/eng/common/templates/job/source-build-run-tarball-build.yml
index 2d2c0b757..cc3d6ce1e 100644
--- a/src/SourceBuild/Arcade/eng/common/templates/job/source-build-run-tarball-build.yml
+++ b/src/SourceBuild/Arcade/eng/common/templates/job/source-build-run-tarball-build.yml
@@ -9,13 +9,12 @@ parameters:
# The following parameters aren't expected to be passed in rather they are used for encapsulation
# -----------------------------------------------------------------------------------------------
- centOS7Container: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-7-source-build-20210714125450-5d87b80
- centOS8Container: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-8-source-build-20211118190102-9355e7b
+ alpine317Container: mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.17
+ centOS7Container: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-7-source-build
centOSStream9Container: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream9-20220107135047-4cd394c
- debian9Container: mcr.microsoft.com/dotnet-buildtools/prereqs:debian-stretch-20211001171226-047508b
- debian9Arm64Container: mcr.microsoft.com/dotnet-buildtools/prereqs:debian-9-arm64v8-20220405201138-a251961
- fedora38Container: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-38-20230609193134-47458d2
- ubuntu1804Container: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-20210924170306-047508b
+ debian11Arm64Container: mcr.microsoft.com/dotnet-buildtools/prereqs:debian-11-arm64v8
+ fedora38Container: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-38
+ ubuntu1804Container: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04
poolInternalAmd64:
name: NetCore1ESPool-Svc-Internal
demands: ImageOverride -equals Build.Ubuntu.1804.Amd64
@@ -37,6 +36,11 @@ jobs:
excludeSdkContentTests: true
installerBuildResourceId: ${{ parameters.installerBuildResourceId }}
matrix:
+ Alpine317-Offline:
+ _BootstrapPrep: true
+ _Container: ${{ parameters.alpine317Container }}
+ _ExcludeOmniSharpTests: true
+ _RunOnline: false
CentOS7-Online:
_BootstrapPrep: false
_Container: ${{ parameters.centOS7Container }}
@@ -50,12 +54,6 @@ jobs:
_EnablePoison: false
_ExcludeOmniSharpTests: true
_RunOnline: false
- CentOS8-Offline:
- _BootstrapPrep: false
- _Container: ${{ parameters.centOS8Container }}
- _EnablePoison: false
- _ExcludeOmniSharpTests: false
- _RunOnline: false
CentOSStream9-Offline:
_BootstrapPrep: false
_Container: ${{ parameters.centOSStream9Container }}
@@ -91,9 +89,9 @@ jobs:
dependsOn: ${{ parameters.dependsOn }}
installerBuildResourceId: ${{ parameters.installerBuildResourceId }}
matrix:
- Debian9-Offline:
+ Debian11-Offline:
_BootstrapPrep: true
- _Container: ${{ parameters.debian9Arm64Container }}
+ _Container: ${{ parameters.debian11Arm64Container }}
_EnablePoison: false
_ExcludeOmniSharpTests: false
_RunOnline: false
diff --git a/src/SourceBuild/tarball/content/eng/pipelines/security-partners-dotnet.yml b/src/SourceBuild/tarball/content/eng/pipelines/security-partners-dotnet.yml
deleted file mode 100644
index 73dd514c5..000000000
--- a/src/SourceBuild/tarball/content/eng/pipelines/security-partners-dotnet.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-trigger: none
-
-variables:
-- name: cfsNPMWarnLevel
- value: none
-
-- name: cfsNugetWarnLevel
- value: none
-
-- name: myGetWarnLevel
- value: none
-
-- name: NuGetSecurityAnalysisWarningLevel
- value: none
-
-jobs:
-- template: ../../src/installer/src/SourceBuild/Arcade/eng/common/templates/job/source-build-build-tarball.yml
- parameters:
- architecture: x64
- excludeSdkContentTests: true
- matrix:
- Ubuntu1804-Offline:
- _BootstrapPrep: false
- _Container: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-20210924170306-047508b
- _EnablePoison: false
- _ExcludeOmniSharpTests: false
- _RunOnline: false
- name: Build_Tarball_x64
- pool:
- name: NetCore1ESPool-Svc-Internal
- demands: ImageOverride -equals Build.Ubuntu.1804.Amd64
diff --git a/src/SourceBuild/tarball/content/test/Microsoft.DotNet.SourceBuild.SmokeTests/XmlDocTests.cs b/src/SourceBuild/tarball/content/test/Microsoft.DotNet.SourceBuild.SmokeTests/XmlDocTests.cs
deleted file mode 100644
index f8f4f2c8b..000000000
--- a/src/SourceBuild/tarball/content/test/Microsoft.DotNet.SourceBuild.SmokeTests/XmlDocTests.cs
+++ /dev/null
@@ -1,48 +0,0 @@
-// Licensed to the .NET Foundation under one or more agreements.
-// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
-
-using System.Collections.Generic;
-using System.IO;
-using System.Linq;
-using Xunit;
-using Xunit.Abstractions;
-
-namespace Microsoft.DotNet.SourceBuild.SmokeTests;
-
-public class XmlDocTests : SmokeTests
-{
- public XmlDocTests(ITestOutputHelper outputHelper) : base(outputHelper) { }
-
- ///
- /// Verifies every targeting pack assembly has a xml doc file.
- /// There are exceptions which are specified in baselines/XmlDocIgnore.*.txt.
- ///
- // Re-enable when fixing https://github.com/dotnet/source-build/issues/3660
- //[Fact]
- public void VerifyTargetingPacksHaveDoc()
- {
- List missingXmlDoc = new();
-
- string targetingPacksDirectory = Path.Combine(Config.DotNetDirectory, "packs");
- foreach (string targetingPackAssembly in Directory.EnumerateFiles(targetingPacksDirectory, "*.dll", SearchOption.AllDirectories))
- {
- if (targetingPackAssembly.EndsWith("resources.dll"))
- {
- continue;
- }
-
- string xmlFile = Path.ChangeExtension(targetingPackAssembly, ".xml");
- if (!File.Exists(xmlFile))
- {
- string pathWithoutPacksPrefix = xmlFile[(targetingPacksDirectory.Length + 1)..];
- string[] pathParts = pathWithoutPacksPrefix.Split(Path.DirectorySeparatorChar);
- string pathWithoutVersion = string.Join(Path.DirectorySeparatorChar, pathParts.Take(1).Concat(pathParts.Skip(2)));
- pathWithoutVersion = BaselineHelper.RemoveNetTfmPaths(pathWithoutVersion);
- missingXmlDoc.Add(pathWithoutVersion);
- }
- }
-
- BaselineHelper.CompareEntries("MissingXmlDoc.txt", missingXmlDoc.OrderBy(entry => entry));
- }
-}
diff --git a/src/SourceBuild/tarball/content/test/Microsoft.DotNet.SourceBuild.SmokeTests/assets/baselines/MissingXmlDoc.txt b/src/SourceBuild/tarball/content/test/Microsoft.DotNet.SourceBuild.SmokeTests/assets/baselines/MissingXmlDoc.txt
deleted file mode 100644
index 38f80e186..000000000
--- a/src/SourceBuild/tarball/content/test/Microsoft.DotNet.SourceBuild.SmokeTests/assets/baselines/MissingXmlDoc.txt
+++ /dev/null
@@ -1,175 +0,0 @@
-Microsoft.AspNetCore.App.Ref/analyzers/dotnet/cs/Microsoft.AspNetCore.App.Analyzers.xml
-Microsoft.AspNetCore.App.Ref/analyzers/dotnet/cs/Microsoft.AspNetCore.App.CodeFixes.xml
-Microsoft.AspNetCore.App.Ref/analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.xml
-Microsoft.NETCore.App.Ref/analyzers/dotnet/cs/System.Text.Json.SourceGeneration.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/Microsoft.VisualBasic.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/mscorlib.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.AppContext.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Buffers.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.ComponentModel.DataAnnotations.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Configuration.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Core.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Data.DataSetExtensions.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Data.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Diagnostics.Debug.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Diagnostics.Tools.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Drawing.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Dynamic.Runtime.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Globalization.Calendars.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Globalization.Extensions.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Globalization.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.IO.Compression.Brotli.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.IO.Compression.FileSystem.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.IO.FileSystem.Primitives.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.IO.FileSystem.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.IO.UnmanagedMemoryStream.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.IO.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Net.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Numerics.Vectors.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Numerics.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Reflection.Extensions.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Reflection.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Resources.Reader.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Resources.ResourceManager.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Runtime.Extensions.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Runtime.Handles.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Runtime.Serialization.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Security.Principal.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Security.SecureString.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Security.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.ServiceModel.Web.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.ServiceProcess.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Text.Encoding.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Threading.Tasks.Extensions.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Threading.Tasks.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Threading.Timer.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Transactions.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.ValueTuple.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Web.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Windows.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Xml.Linq.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Xml.Serialization.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Xml.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/System.Xml.XmlDocument.xml
-Microsoft.NETCore.App.Ref/ref/netx.y/WindowsBase.xml
-NETStandard.Library.Ref/ref/netstandard2.1/Microsoft.Win32.Primitives.xml
-NETStandard.Library.Ref/ref/netstandard2.1/mscorlib.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.AppContext.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Buffers.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Collections.Concurrent.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Collections.NonGeneric.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Collections.Specialized.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Collections.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.ComponentModel.Composition.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.ComponentModel.EventBasedAsync.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.ComponentModel.Primitives.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.ComponentModel.TypeConverter.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.ComponentModel.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Console.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Core.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Data.Common.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Data.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Diagnostics.Contracts.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Diagnostics.Debug.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Diagnostics.FileVersionInfo.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Diagnostics.Process.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Diagnostics.StackTrace.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Diagnostics.TextWriterTraceListener.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Diagnostics.Tools.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Diagnostics.TraceSource.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Diagnostics.Tracing.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Drawing.Primitives.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Drawing.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Dynamic.Runtime.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Globalization.Calendars.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Globalization.Extensions.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Globalization.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.IO.Compression.FileSystem.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.IO.Compression.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.IO.Compression.ZipFile.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.IO.FileSystem.DriveInfo.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.IO.FileSystem.Primitives.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.IO.FileSystem.Watcher.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.IO.FileSystem.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.IO.IsolatedStorage.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.IO.MemoryMappedFiles.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.IO.Pipes.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.IO.UnmanagedMemoryStream.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.IO.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Linq.Expressions.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Linq.Parallel.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Linq.Queryable.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Linq.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Memory.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Net.Http.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Net.NameResolution.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Net.NetworkInformation.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Net.Ping.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Net.Primitives.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Net.Requests.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Net.Security.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Net.Sockets.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Net.WebHeaderCollection.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Net.WebSockets.Client.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Net.WebSockets.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Net.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Numerics.Vectors.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Numerics.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.ObjectModel.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Reflection.DispatchProxy.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Reflection.Emit.ILGeneration.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Reflection.Emit.Lightweight.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Reflection.Emit.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Reflection.Extensions.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Reflection.Primitives.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Reflection.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Resources.Reader.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Resources.ResourceManager.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Resources.Writer.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Runtime.CompilerServices.VisualC.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Runtime.Extensions.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Runtime.Handles.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Runtime.InteropServices.RuntimeInformation.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Runtime.InteropServices.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Runtime.Numerics.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Runtime.Serialization.Formatters.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Runtime.Serialization.Json.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Runtime.Serialization.Primitives.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Runtime.Serialization.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Runtime.Serialization.Xml.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Runtime.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Security.Claims.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Security.Cryptography.Algorithms.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Security.Cryptography.Csp.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Security.Cryptography.Encoding.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Security.Cryptography.Primitives.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Security.Cryptography.X509Certificates.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Security.Principal.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Security.SecureString.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.ServiceModel.Web.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Text.Encoding.Extensions.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Text.Encoding.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Text.RegularExpressions.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Threading.Overlapped.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Threading.Tasks.Extensions.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Threading.Tasks.Parallel.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Threading.Tasks.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Threading.Thread.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Threading.ThreadPool.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Threading.Timer.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Threading.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Transactions.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.ValueTuple.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Web.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Windows.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Xml.Linq.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Xml.ReaderWriter.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Xml.Serialization.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Xml.XDocument.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Xml.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Xml.XmlDocument.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Xml.XmlSerializer.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Xml.XPath.XDocument.xml
-NETStandard.Library.Ref/ref/netstandard2.1/System.Xml.XPath.xml