├── .azuredevops └── dependabot.yml ├── .config ├── CredScanSuppressions.json └── tsaoptions.json ├── .devcontainer ├── devcontainer.json ├── init-toolset.sh └── init.sh ├── .editorconfig ├── .gitattributes ├── .github ├── copilot-instructions.md ├── labeler.yml └── workflows │ ├── backport.yml │ └── labeler.yml ├── .gitignore ├── .gitmodules ├── CODE-OF-CONDUCT.md ├── CODEOWNERS ├── CodeQL.yml ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE.txt ├── NuGet.config ├── README.md ├── azure-pipelines ├── builds │ ├── ci-public.yml │ ├── ci-unofficial.yml │ ├── ci.yml │ ├── cleanup-unreferenced-packages.yml │ └── vmr-build-pr.yml └── templates │ ├── stages │ └── build.yml │ └── variables │ └── common.yml ├── clean.sh ├── docs └── known_generator_issues.md ├── eng ├── Build.props ├── CredScanSuppressions.json ├── ManualNuspec.targets ├── Version.Details.props ├── Version.Details.xml ├── Versions.props ├── common │ ├── BuildConfiguration │ │ └── build-configuration.json │ ├── CIBuild.cmd │ ├── PSScriptAnalyzerSettings.psd1 │ ├── README.md │ ├── SetupNugetSources.ps1 │ ├── SetupNugetSources.sh │ ├── build.cmd │ ├── build.ps1 │ ├── build.sh │ ├── cibuild.sh │ ├── core-templates │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── cleanup-microbuild.yml │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── install-microbuild-impl.yml │ │ │ ├── install-microbuild.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1-publish.yml │ │ └── variables │ │ │ └── pool-providers.yml │ ├── cross │ │ ├── arm │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── arm64 │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── armel │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── build-android-rootfs.sh │ │ ├── build-rootfs.sh │ │ ├── install-debs.py │ │ ├── riscv64 │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── tizen-build-rootfs.sh │ │ ├── tizen-fetch.sh │ │ └── toolchain.cmake │ ├── darc-init.ps1 │ ├── darc-init.sh │ ├── dotnet-install.cmd │ ├── dotnet-install.ps1 │ ├── dotnet-install.sh │ ├── dotnet.cmd │ ├── dotnet.ps1 │ ├── dotnet.sh │ ├── enable-cross-org-publishing.ps1 │ ├── generate-locproject.ps1 │ ├── generate-sbom-prep.ps1 │ ├── generate-sbom-prep.sh │ ├── helixpublish.proj │ ├── init-tools-native.cmd │ ├── init-tools-native.ps1 │ ├── init-tools-native.sh │ ├── internal-feed-operations.ps1 │ ├── internal-feed-operations.sh │ ├── internal │ │ ├── Directory.Build.props │ │ ├── NuGet.config │ │ └── Tools.csproj │ ├── loc │ │ └── P22DotNetHtmlLocalization.lss │ ├── msbuild.ps1 │ ├── msbuild.sh │ ├── native │ │ ├── CommonLibrary.psm1 │ │ ├── common-library.sh │ │ ├── init-compiler.sh │ │ ├── init-distro-rid.sh │ │ ├── init-os-and-arch.sh │ │ ├── install-cmake-test.sh │ │ ├── install-cmake.sh │ │ ├── install-dependencies.sh │ │ └── install-tool.ps1 │ ├── pipeline-logging-functions.ps1 │ ├── pipeline-logging-functions.sh │ ├── post-build │ │ ├── check-channel-consistency.ps1 │ │ ├── nuget-validation.ps1 │ │ ├── nuget-verification.ps1 │ │ ├── publish-using-darc.ps1 │ │ ├── redact-logs.ps1 │ │ ├── sourcelink-validation.ps1 │ │ └── symbols-validation.ps1 │ ├── retain-build.ps1 │ ├── sdk-task.ps1 │ ├── sdk-task.sh │ ├── sdl │ │ ├── NuGet.config │ │ ├── configure-sdl-tool.ps1 │ │ ├── execute-all-sdl-tools.ps1 │ │ ├── extract-artifact-archives.ps1 │ │ ├── extract-artifact-packages.ps1 │ │ ├── init-sdl.ps1 │ │ ├── packages.config │ │ ├── run-sdl.ps1 │ │ ├── sdl.ps1 │ │ └── trim-assets-version.ps1 │ ├── template-guidance.md │ ├── templates-official │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1-publish.yml │ │ └── variables │ │ │ ├── pool-providers.yml │ │ │ └── sdl-variables.yml │ ├── templates │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ ├── source-build.yml │ │ │ ├── source-index-stage1-publish.yml │ │ │ └── vmr-sync.yml │ │ ├── variables │ │ │ └── pool-providers.yml │ │ └── vmr-build-pr.yml │ ├── tools.ps1 │ ├── tools.sh │ ├── vmr-sync.ps1 │ └── vmr-sync.sh ├── generate.ps1 └── tasks │ └── Microsoft.DotNet.SourceBuild.Tasks.XPlat │ ├── AddSourceToNuGetConfig.cs │ ├── Microsoft.DotNet.SourceBuild.Tasks.XPlat.csproj │ └── UpdateJson.cs ├── es-metadata.yml ├── generate.cmd ├── generate.sh ├── global.json ├── src ├── SourceBuildAssemblyMetdata.cs ├── externalPackages │ ├── externalPackages.proj │ ├── keys │ │ ├── Newtonsoft.Json.snk │ │ ├── README.md │ │ └── vs-solutionpersistence.snk │ ├── patches │ │ ├── MSBuildLocator │ │ │ ├── 0001-Eliminate-prebuilts.patch │ │ │ ├── 0002-Update-tfm.patch │ │ │ └── 0003-Remove-MicroBuild-signing.patch │ │ ├── application-insights │ │ │ ├── 0001-Eliminate-prebuilts.patch │ │ │ └── 0002-Update-System.Diagnostics.DiagnosticSource-to-elimin.patch │ │ ├── azure-activedirectory-identitymodel-extensions-for-dotnet │ │ │ └── 0001-fix-for-source-build.patch │ │ ├── extract-patches.ps1 │ │ ├── extract-patches.sh │ │ ├── humanizer │ │ │ └── 0001-Tfm-updates-and-eliminate-prebuilts.patch │ │ ├── newtonsoft-json │ │ │ └── 0001-Newtonsoft.Json-project-updates.patch │ │ ├── spectre-console │ │ │ └── 0001-Remove-PolySharp.patch │ │ └── vs-solutionpersistence │ │ │ └── 0001-Compile-with-C-language-version-13.patch │ ├── projects │ │ ├── Directory.Build.props │ │ ├── Directory.Build.targets │ │ ├── MSBuildLocator.proj │ │ ├── application-insights.proj │ │ ├── azure-activedirectory-identitymodel-extensions-for-dotnet.proj │ │ ├── cssparser.proj │ │ ├── docker-creds-provider.proj │ │ ├── humanizer.proj │ │ ├── newtonsoft-json.proj │ │ ├── spectre-console.proj │ │ └── vs-solutionpersistence.proj │ └── src │ │ ├── Directory.Build.props │ │ └── Directory.Build.targets ├── packageSourceGenerator │ ├── DefaultGenApiDocIds.txt │ ├── GenerateSourceProjectTemplate.xml │ ├── LicenseHeader.txt │ ├── PackageProjectTemplate.xml │ ├── PackageSourceGenerator.proj │ └── PackageSourceGeneratorTask │ │ ├── GenerateProject.cs │ │ ├── GetPackageItems.cs │ │ ├── PackageSourceGeneratorTask.csproj │ │ ├── RewriteNuspec.cs │ │ ├── SharedMetadata.cs │ │ ├── StrongNameData.cs │ │ └── TargetFrameworkRegexFilter.cs ├── referencePackages │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── common │ │ ├── IsExternalInit.cs │ │ └── RequiredModifierAttributes.cs │ ├── referencePackages.proj │ └── src │ │ ├── microsoft.bcl.asyncinterfaces │ │ ├── 6.0.0 │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.6.0.0.csproj │ │ │ ├── lib │ │ │ │ ├── netstandard2.0 │ │ │ │ │ └── Microsoft.Bcl.AsyncInterfaces.cs │ │ │ │ └── netstandard2.1 │ │ │ │ │ └── Microsoft.Bcl.AsyncInterfaces.cs │ │ │ └── microsoft.bcl.asyncinterfaces.nuspec │ │ ├── 8.0.0 │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.8.0.0.csproj │ │ │ ├── lib │ │ │ │ ├── netstandard2.0 │ │ │ │ │ └── Microsoft.Bcl.AsyncInterfaces.cs │ │ │ │ └── netstandard2.1 │ │ │ │ │ └── Microsoft.Bcl.AsyncInterfaces.cs │ │ │ └── microsoft.bcl.asyncinterfaces.nuspec │ │ └── 9.0.8 │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.9.0.8.csproj │ │ │ ├── lib │ │ │ ├── netstandard2.0 │ │ │ │ └── Microsoft.Bcl.AsyncInterfaces.cs │ │ │ └── netstandard2.1 │ │ │ │ └── Microsoft.Bcl.AsyncInterfaces.cs │ │ │ └── microsoft.bcl.asyncinterfaces.nuspec │ │ ├── microsoft.bcl.hashcode │ │ └── 6.0.0 │ │ │ ├── Microsoft.Bcl.HashCode.6.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── Microsoft.Bcl.HashCode.cs │ │ │ ├── netstandard2.0 │ │ │ │ └── Microsoft.Bcl.HashCode.cs │ │ │ └── netstandard2.1 │ │ │ │ └── Microsoft.Bcl.HashCode.cs │ │ │ └── microsoft.bcl.hashcode.nuspec │ │ ├── microsoft.build.framework │ │ ├── 17.11.48 │ │ │ ├── Microsoft.Build.Framework.17.11.48.csproj │ │ │ ├── microsoft.build.framework.nuspec │ │ │ └── ref │ │ │ │ ├── net8.0 │ │ │ │ └── Microsoft.Build.Framework.cs │ │ │ │ └── netstandard2.0 │ │ │ │ └── Microsoft.Build.Framework.cs │ │ └── 17.8.3 │ │ │ ├── Microsoft.Build.Framework.17.8.3.csproj │ │ │ ├── microsoft.build.framework.nuspec │ │ │ └── ref │ │ │ ├── net8.0 │ │ │ └── Microsoft.Build.Framework.cs │ │ │ └── netstandard2.0 │ │ │ └── Microsoft.Build.Framework.cs │ │ ├── microsoft.build.tasks.core │ │ └── 17.11.48 │ │ │ ├── Microsoft.Build.Tasks.Core.17.11.48.csproj │ │ │ ├── microsoft.build.tasks.core.nuspec │ │ │ └── ref │ │ │ ├── net8.0 │ │ │ └── Microsoft.Build.Tasks.Core.cs │ │ │ └── netstandard2.0 │ │ │ └── Microsoft.Build.Tasks.Core.cs │ │ ├── microsoft.build.utilities.core │ │ ├── 17.11.48 │ │ │ ├── Microsoft.Build.Utilities.Core.17.11.48.csproj │ │ │ ├── microsoft.build.utilities.core.nuspec │ │ │ └── ref │ │ │ │ ├── net8.0 │ │ │ │ └── Microsoft.Build.Utilities.Core.cs │ │ │ │ └── netstandard2.0 │ │ │ │ └── Microsoft.Build.Utilities.Core.cs │ │ └── 17.8.3 │ │ │ ├── Customizations.props │ │ │ ├── Microsoft.Build.Utilities.Core.17.8.3.csproj │ │ │ ├── microsoft.build.utilities.core.nuspec │ │ │ └── ref │ │ │ ├── net8.0 │ │ │ └── Microsoft.Build.Utilities.Core.cs │ │ │ └── netstandard2.0 │ │ │ └── Microsoft.Build.Utilities.Core.cs │ │ ├── microsoft.build │ │ └── 17.11.48 │ │ │ ├── Customizations.cs │ │ │ ├── Microsoft.Build.17.11.48.csproj │ │ │ ├── microsoft.build.nuspec │ │ │ └── ref │ │ │ └── net8.0 │ │ │ └── Microsoft.Build.cs │ │ ├── microsoft.codeanalysis.common │ │ └── 4.12.0 │ │ │ ├── Customizations.props │ │ │ ├── Microsoft.CodeAnalysis.Common.4.12.0.csproj │ │ │ ├── lib │ │ │ ├── net7.0 │ │ │ │ └── Microsoft.CodeAnalysis.cs │ │ │ ├── net8.0 │ │ │ │ └── Microsoft.CodeAnalysis.cs │ │ │ └── netstandard2.0 │ │ │ │ └── Microsoft.CodeAnalysis.cs │ │ │ └── microsoft.codeanalysis.common.nuspec │ │ ├── microsoft.csharp │ │ └── 4.7.0 │ │ │ ├── Microsoft.CSharp.4.7.0.csproj │ │ │ ├── microsoft.csharp.nuspec │ │ │ └── ref │ │ │ └── netstandard2.0 │ │ │ └── Microsoft.CSharp.cs │ │ ├── microsoft.extensions.dependencyinjection.abstractions │ │ └── 9.0.8 │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.9.0.8.csproj │ │ │ ├── lib │ │ │ ├── net8.0 │ │ │ │ └── Microsoft.Extensions.DependencyInjection.Abstractions.cs │ │ │ ├── net9.0 │ │ │ │ └── Microsoft.Extensions.DependencyInjection.Abstractions.cs │ │ │ ├── netstandard2.0 │ │ │ │ └── Microsoft.Extensions.DependencyInjection.Abstractions.cs │ │ │ └── netstandard2.1 │ │ │ │ └── Microsoft.Extensions.DependencyInjection.Abstractions.cs │ │ │ └── microsoft.extensions.dependencyinjection.abstractions.nuspec │ │ ├── microsoft.extensions.dependencymodel │ │ └── 6.0.0 │ │ │ ├── Microsoft.Extensions.DependencyModel.6.0.0.csproj │ │ │ ├── lib │ │ │ └── netstandard2.0 │ │ │ │ └── Microsoft.Extensions.DependencyModel.cs │ │ │ └── microsoft.extensions.dependencymodel.nuspec │ │ ├── microsoft.extensions.fileproviders.abstractions │ │ └── 6.0.0 │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.6.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── Microsoft.Extensions.FileProviders.Abstractions.cs │ │ │ └── netstandard2.0 │ │ │ │ └── Microsoft.Extensions.FileProviders.Abstractions.cs │ │ │ └── microsoft.extensions.fileproviders.abstractions.nuspec │ │ ├── microsoft.extensions.filesystemglobbing │ │ └── 6.0.0 │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.6.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── Microsoft.Extensions.FileSystemGlobbing.cs │ │ │ └── netstandard2.0 │ │ │ │ └── Microsoft.Extensions.FileSystemGlobbing.cs │ │ │ └── microsoft.extensions.filesystemglobbing.nuspec │ │ ├── microsoft.extensions.logging.abstractions │ │ └── 9.0.8 │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.9.0.8.csproj │ │ │ ├── lib │ │ │ ├── net8.0 │ │ │ │ └── Microsoft.Extensions.Logging.Abstractions.cs │ │ │ ├── net9.0 │ │ │ │ └── Microsoft.Extensions.Logging.Abstractions.cs │ │ │ └── netstandard2.0 │ │ │ │ └── Microsoft.Extensions.Logging.Abstractions.cs │ │ │ └── microsoft.extensions.logging.abstractions.nuspec │ │ ├── microsoft.extensions.primitives │ │ └── 6.0.0 │ │ │ ├── Microsoft.Extensions.Primitives.6.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── Microsoft.Extensions.Primitives.cs │ │ │ └── netstandard2.0 │ │ │ │ └── Microsoft.Extensions.Primitives.cs │ │ │ └── microsoft.extensions.primitives.nuspec │ │ ├── microsoft.net.stringtools │ │ ├── 17.11.48 │ │ │ ├── Microsoft.NET.StringTools.17.11.48.csproj │ │ │ ├── microsoft.net.stringtools.nuspec │ │ │ └── ref │ │ │ │ ├── net8.0 │ │ │ │ └── Microsoft.NET.StringTools.cs │ │ │ │ └── netstandard2.0 │ │ │ │ └── Microsoft.NET.StringTools.cs │ │ └── 17.8.3 │ │ │ ├── Microsoft.NET.StringTools.17.8.3.csproj │ │ │ ├── microsoft.net.stringtools.nuspec │ │ │ └── ref │ │ │ ├── net8.0 │ │ │ └── Microsoft.NET.StringTools.cs │ │ │ └── netstandard2.0 │ │ │ └── Microsoft.NET.StringTools.cs │ │ ├── microsoft.visualbasic │ │ └── 10.3.0 │ │ │ ├── Microsoft.VisualBasic.10.3.0.csproj │ │ │ ├── microsoft.visualbasic.nuspec │ │ │ └── ref │ │ │ └── netstandard2.0 │ │ │ └── Microsoft.VisualBasic.cs │ │ ├── microsoft.win32.registry │ │ └── 5.0.0 │ │ │ ├── Microsoft.Win32.Registry.5.0.0.csproj │ │ │ ├── microsoft.win32.registry.nuspec │ │ │ └── ref │ │ │ └── netstandard2.0 │ │ │ └── Microsoft.Win32.Registry.cs │ │ ├── microsoft.win32.systemevents │ │ └── 7.0.0 │ │ │ ├── Microsoft.Win32.SystemEvents.7.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── Microsoft.Win32.SystemEvents.cs │ │ │ ├── net7.0 │ │ │ │ └── Microsoft.Win32.SystemEvents.cs │ │ │ └── netstandard2.0 │ │ │ │ └── Microsoft.Win32.SystemEvents.cs │ │ │ └── microsoft.win32.systemevents.nuspec │ │ ├── nuget.commands │ │ ├── 6.13.2 │ │ │ ├── NuGet.Commands.6.13.2.csproj │ │ │ ├── lib │ │ │ │ ├── net8.0 │ │ │ │ │ └── NuGet.Commands.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── NuGet.Commands.cs │ │ │ └── nuget.commands.nuspec │ │ └── 6.14.0 │ │ │ ├── NuGet.Commands.6.14.0.csproj │ │ │ ├── lib │ │ │ ├── net8.0 │ │ │ │ └── NuGet.Commands.cs │ │ │ └── netstandard2.0 │ │ │ │ └── NuGet.Commands.cs │ │ │ └── nuget.commands.nuspec │ │ ├── nuget.common │ │ ├── 6.13.2 │ │ │ ├── NuGet.Common.6.13.2.csproj │ │ │ ├── lib │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── NuGet.Common.cs │ │ │ └── nuget.common.nuspec │ │ └── 6.14.0 │ │ │ ├── NuGet.Common.6.14.0.csproj │ │ │ ├── lib │ │ │ └── netstandard2.0 │ │ │ │ └── NuGet.Common.cs │ │ │ └── nuget.common.nuspec │ │ ├── nuget.configuration │ │ ├── 6.13.2 │ │ │ ├── Customizations.props │ │ │ ├── NuGet.Configuration.6.13.2.csproj │ │ │ ├── lib │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── NuGet.Configuration.cs │ │ │ └── nuget.configuration.nuspec │ │ └── 6.14.0 │ │ │ ├── Customizations.props │ │ │ ├── NuGet.Configuration.6.14.0.csproj │ │ │ ├── lib │ │ │ └── netstandard2.0 │ │ │ │ └── NuGet.Configuration.cs │ │ │ └── nuget.configuration.nuspec │ │ ├── nuget.credentials │ │ ├── 6.13.2 │ │ │ ├── NuGet.Credentials.6.13.2.csproj │ │ │ ├── lib │ │ │ │ ├── net8.0 │ │ │ │ │ └── NuGet.Credentials.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── NuGet.Credentials.cs │ │ │ └── nuget.credentials.nuspec │ │ └── 6.14.0 │ │ │ ├── NuGet.Credentials.6.14.0.csproj │ │ │ ├── lib │ │ │ ├── net8.0 │ │ │ │ └── NuGet.Credentials.cs │ │ │ └── netstandard2.0 │ │ │ │ └── NuGet.Credentials.cs │ │ │ └── nuget.credentials.nuspec │ │ ├── nuget.dependencyresolver.core │ │ ├── 6.13.2 │ │ │ ├── NuGet.DependencyResolver.Core.6.13.2.csproj │ │ │ ├── lib │ │ │ │ ├── net8.0 │ │ │ │ │ └── NuGet.DependencyResolver.Core.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── NuGet.DependencyResolver.Core.cs │ │ │ └── nuget.dependencyresolver.core.nuspec │ │ └── 6.14.0 │ │ │ ├── NuGet.DependencyResolver.Core.6.14.0.csproj │ │ │ ├── lib │ │ │ ├── net8.0 │ │ │ │ └── NuGet.DependencyResolver.Core.cs │ │ │ └── netstandard2.0 │ │ │ │ └── NuGet.DependencyResolver.Core.cs │ │ │ └── nuget.dependencyresolver.core.nuspec │ │ ├── nuget.frameworks │ │ ├── 6.13.2 │ │ │ ├── NuGet.Frameworks.6.13.2.csproj │ │ │ ├── lib │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── NuGet.Frameworks.cs │ │ │ └── nuget.frameworks.nuspec │ │ └── 6.14.0 │ │ │ ├── NuGet.Frameworks.6.14.0.csproj │ │ │ ├── lib │ │ │ └── netstandard2.0 │ │ │ │ └── NuGet.Frameworks.cs │ │ │ └── nuget.frameworks.nuspec │ │ ├── nuget.librarymodel │ │ ├── 6.13.2 │ │ │ ├── Customizations.props │ │ │ ├── NuGet.LibraryModel.6.13.2.csproj │ │ │ ├── lib │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── NuGet.LibraryModel.cs │ │ │ └── nuget.librarymodel.nuspec │ │ └── 6.14.0 │ │ │ ├── Customizations.props │ │ │ ├── NuGet.LibraryModel.6.14.0.csproj │ │ │ ├── lib │ │ │ └── netstandard2.0 │ │ │ │ └── NuGet.LibraryModel.cs │ │ │ └── nuget.librarymodel.nuspec │ │ ├── nuget.packaging │ │ ├── 6.13.2 │ │ │ ├── Customizations.props │ │ │ ├── NuGet.Packaging.6.13.2.csproj │ │ │ ├── lib │ │ │ │ ├── net8.0 │ │ │ │ │ └── NuGet.Packaging.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── NuGet.Packaging.cs │ │ │ └── nuget.packaging.nuspec │ │ └── 6.14.0 │ │ │ ├── Customizations.props │ │ │ ├── NuGet.Packaging.6.14.0.csproj │ │ │ ├── lib │ │ │ ├── net8.0 │ │ │ │ └── NuGet.Packaging.cs │ │ │ └── netstandard2.0 │ │ │ │ └── NuGet.Packaging.cs │ │ │ └── nuget.packaging.nuspec │ │ ├── nuget.projectmodel │ │ ├── 6.13.2 │ │ │ ├── Customizations.props │ │ │ ├── NuGet.ProjectModel.6.13.2.csproj │ │ │ ├── lib │ │ │ │ ├── net8.0 │ │ │ │ │ └── NuGet.ProjectModel.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── NuGet.ProjectModel.cs │ │ │ └── nuget.projectmodel.nuspec │ │ └── 6.14.0 │ │ │ ├── Customizations.props │ │ │ ├── NuGet.ProjectModel.6.14.0.csproj │ │ │ ├── lib │ │ │ ├── net8.0 │ │ │ │ └── NuGet.ProjectModel.cs │ │ │ └── netstandard2.0 │ │ │ │ └── NuGet.ProjectModel.cs │ │ │ └── nuget.projectmodel.nuspec │ │ ├── nuget.protocol │ │ ├── 6.13.2 │ │ │ ├── NuGet.Protocol.6.13.2.csproj │ │ │ ├── lib │ │ │ │ ├── net8.0 │ │ │ │ │ └── NuGet.Protocol.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── NuGet.Protocol.cs │ │ │ └── nuget.protocol.nuspec │ │ └── 6.14.0 │ │ │ ├── NuGet.Protocol.6.14.0.csproj │ │ │ ├── lib │ │ │ ├── net8.0 │ │ │ │ └── NuGet.Protocol.cs │ │ │ └── netstandard2.0 │ │ │ │ └── NuGet.Protocol.cs │ │ │ └── nuget.protocol.nuspec │ │ ├── nuget.versioning │ │ ├── 6.13.2 │ │ │ ├── NuGet.Versioning.6.13.2.csproj │ │ │ ├── lib │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── NuGet.Versioning.cs │ │ │ └── nuget.versioning.nuspec │ │ └── 6.14.0 │ │ │ ├── NuGet.Versioning.6.14.0.csproj │ │ │ ├── lib │ │ │ └── netstandard2.0 │ │ │ │ └── NuGet.Versioning.cs │ │ │ └── nuget.versioning.nuspec │ │ ├── system.buffers │ │ ├── 4.5.1 │ │ │ ├── System.Buffers.4.5.1.csproj │ │ │ ├── ref │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Buffers.cs │ │ │ └── system.buffers.nuspec │ │ └── 4.6.1 │ │ │ ├── System.Buffers.4.6.1.csproj │ │ │ ├── lib │ │ │ ├── netstandard2.0 │ │ │ │ └── System.Buffers.cs │ │ │ └── netstandard2.1 │ │ │ │ └── _._ │ │ │ └── system.buffers.nuspec │ │ ├── system.codedom │ │ └── 8.0.0 │ │ │ ├── System.CodeDom.8.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.CodeDom.cs │ │ │ ├── net7.0 │ │ │ │ └── System.CodeDom.cs │ │ │ ├── net8.0 │ │ │ │ └── System.CodeDom.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.CodeDom.cs │ │ │ └── system.codedom.nuspec │ │ ├── system.collections.immutable │ │ ├── 7.0.0 │ │ │ ├── System.Collections.Immutable.7.0.0.csproj │ │ │ ├── lib │ │ │ │ ├── net6.0 │ │ │ │ │ └── System.Collections.Immutable.cs │ │ │ │ ├── net7.0 │ │ │ │ │ └── System.Collections.Immutable.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Collections.Immutable.cs │ │ │ └── system.collections.immutable.nuspec │ │ ├── 8.0.0 │ │ │ ├── Customizations.cs │ │ │ ├── System.Collections.Immutable.8.0.0.csproj │ │ │ ├── lib │ │ │ │ ├── net6.0 │ │ │ │ │ └── System.Collections.Immutable.cs │ │ │ │ ├── net7.0 │ │ │ │ │ └── System.Collections.Immutable.cs │ │ │ │ ├── net8.0 │ │ │ │ │ └── System.Collections.Immutable.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Collections.Immutable.cs │ │ │ └── system.collections.immutable.nuspec │ │ └── 9.0.0 │ │ │ ├── System.Collections.Immutable.9.0.0.csproj │ │ │ ├── lib │ │ │ ├── net8.0 │ │ │ │ └── System.Collections.Immutable.cs │ │ │ ├── net9.0 │ │ │ │ └── System.Collections.Immutable.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.Collections.Immutable.cs │ │ │ └── system.collections.immutable.nuspec │ │ ├── system.componentmodel.annotations │ │ └── 5.0.0 │ │ │ ├── System.ComponentModel.Annotations.5.0.0.csproj │ │ │ ├── ref │ │ │ ├── netstandard2.0 │ │ │ │ └── System.ComponentModel.Annotations.cs │ │ │ └── netstandard2.1 │ │ │ │ └── System.ComponentModel.Annotations.cs │ │ │ └── system.componentmodel.annotations.nuspec │ │ ├── system.configuration.configurationmanager │ │ ├── 7.0.0 │ │ │ ├── System.Configuration.ConfigurationManager.7.0.0.csproj │ │ │ ├── lib │ │ │ │ ├── net6.0 │ │ │ │ │ └── System.Configuration.ConfigurationManager.cs │ │ │ │ ├── net7.0 │ │ │ │ │ └── System.Configuration.ConfigurationManager.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Configuration.ConfigurationManager.cs │ │ │ └── system.configuration.configurationmanager.nuspec │ │ └── 8.0.0 │ │ │ ├── Customizations.cs │ │ │ ├── System.Configuration.ConfigurationManager.8.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Configuration.ConfigurationManager.cs │ │ │ ├── net7.0 │ │ │ │ └── System.Configuration.ConfigurationManager.cs │ │ │ ├── net8.0 │ │ │ │ └── System.Configuration.ConfigurationManager.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.Configuration.ConfigurationManager.cs │ │ │ └── system.configuration.configurationmanager.nuspec │ │ ├── system.diagnostics.diagnosticsource │ │ ├── 8.0.0 │ │ │ ├── Customizations.props │ │ │ ├── System.Diagnostics.DiagnosticSource.8.0.0.csproj │ │ │ ├── lib │ │ │ │ ├── net6.0 │ │ │ │ │ └── System.Diagnostics.DiagnosticSource.cs │ │ │ │ ├── net7.0 │ │ │ │ │ └── System.Diagnostics.DiagnosticSource.cs │ │ │ │ ├── net8.0 │ │ │ │ │ └── System.Diagnostics.DiagnosticSource.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Diagnostics.DiagnosticSource.cs │ │ │ └── system.diagnostics.diagnosticsource.nuspec │ │ └── 9.0.8 │ │ │ ├── Customizations.props │ │ │ ├── System.Diagnostics.DiagnosticSource.9.0.8.csproj │ │ │ ├── lib │ │ │ ├── net8.0 │ │ │ │ └── System.Diagnostics.DiagnosticSource.cs │ │ │ ├── net9.0 │ │ │ │ └── System.Diagnostics.DiagnosticSource.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.Diagnostics.DiagnosticSource.cs │ │ │ └── system.diagnostics.diagnosticsource.nuspec │ │ ├── system.diagnostics.eventlog │ │ ├── 7.0.0 │ │ │ ├── System.Diagnostics.EventLog.7.0.0.csproj │ │ │ ├── lib │ │ │ │ ├── net6.0 │ │ │ │ │ └── System.Diagnostics.EventLog.cs │ │ │ │ ├── net7.0 │ │ │ │ │ └── System.Diagnostics.EventLog.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Diagnostics.EventLog.cs │ │ │ └── system.diagnostics.eventlog.nuspec │ │ └── 8.0.0 │ │ │ ├── System.Diagnostics.EventLog.8.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Diagnostics.EventLog.cs │ │ │ ├── net7.0 │ │ │ │ └── System.Diagnostics.EventLog.cs │ │ │ ├── net8.0 │ │ │ │ └── System.Diagnostics.EventLog.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.Diagnostics.EventLog.cs │ │ │ └── system.diagnostics.eventlog.nuspec │ │ ├── system.drawing.common │ │ └── 7.0.0 │ │ │ ├── System.Drawing.Common.7.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Drawing.Common.cs │ │ │ ├── net7.0 │ │ │ │ └── System.Drawing.Common.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.Drawing.Common.cs │ │ │ └── system.drawing.common.nuspec │ │ ├── system.formats.asn1 │ │ ├── 6.0.0 │ │ │ ├── System.Formats.Asn1.6.0.0.csproj │ │ │ ├── lib │ │ │ │ ├── net6.0 │ │ │ │ │ └── System.Formats.Asn1.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Formats.Asn1.cs │ │ │ └── system.formats.asn1.nuspec │ │ ├── 8.0.0 │ │ │ ├── System.Formats.Asn1.8.0.0.csproj │ │ │ ├── lib │ │ │ │ ├── net6.0 │ │ │ │ │ └── System.Formats.Asn1.cs │ │ │ │ ├── net7.0 │ │ │ │ │ └── System.Formats.Asn1.cs │ │ │ │ ├── net8.0 │ │ │ │ │ └── System.Formats.Asn1.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Formats.Asn1.cs │ │ │ └── system.formats.asn1.nuspec │ │ └── 8.0.1 │ │ │ ├── System.Formats.Asn1.8.0.1.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Formats.Asn1.cs │ │ │ ├── net7.0 │ │ │ │ └── System.Formats.Asn1.cs │ │ │ ├── net8.0 │ │ │ │ └── System.Formats.Asn1.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.Formats.Asn1.cs │ │ │ └── system.formats.asn1.nuspec │ │ ├── system.io.filesystem.accesscontrol │ │ └── 5.0.0 │ │ │ ├── System.IO.FileSystem.AccessControl.5.0.0.csproj │ │ │ ├── ref │ │ │ └── netstandard2.0 │ │ │ │ └── System.IO.FileSystem.AccessControl.cs │ │ │ └── system.io.filesystem.accesscontrol.nuspec │ │ ├── system.memory │ │ ├── 4.5.4 │ │ │ ├── System.Memory.4.5.4.csproj │ │ │ ├── lib │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Memory.cs │ │ │ └── system.memory.nuspec │ │ ├── 4.5.5 │ │ │ ├── System.Memory.4.5.5.csproj │ │ │ ├── lib │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Memory.cs │ │ │ └── system.memory.nuspec │ │ └── 4.6.3 │ │ │ ├── System.Memory.4.6.3.csproj │ │ │ ├── lib │ │ │ ├── netstandard2.0 │ │ │ │ └── System.Memory.cs │ │ │ └── netstandard2.1 │ │ │ │ └── _._ │ │ │ └── system.memory.nuspec │ │ ├── system.numerics.vectors │ │ ├── 4.4.0 │ │ │ ├── System.Numerics.Vectors.4.4.0.csproj │ │ │ ├── ref │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Numerics.Vectors.cs │ │ │ └── system.numerics.vectors.nuspec │ │ ├── 4.5.0 │ │ │ ├── System.Numerics.Vectors.4.5.0.csproj │ │ │ ├── ref │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Numerics.Vectors.cs │ │ │ └── system.numerics.vectors.nuspec │ │ └── 4.6.1 │ │ │ ├── System.Numerics.Vectors.4.6.1.csproj │ │ │ ├── lib │ │ │ ├── netstandard2.0 │ │ │ │ └── System.Numerics.Vectors.cs │ │ │ └── netstandard2.1 │ │ │ │ └── _._ │ │ │ └── system.numerics.vectors.nuspec │ │ ├── system.reflection.emit.ilgeneration │ │ └── 4.7.0 │ │ │ ├── System.Reflection.Emit.ILGeneration.4.7.0.csproj │ │ │ ├── ref │ │ │ ├── netstandard2.0 │ │ │ │ └── System.Reflection.Emit.ILGeneration.cs │ │ │ └── netstandard2.1 │ │ │ │ └── _._ │ │ │ └── system.reflection.emit.ilgeneration.nuspec │ │ ├── system.reflection.emit │ │ └── 4.7.0 │ │ │ ├── System.Reflection.Emit.4.7.0.csproj │ │ │ ├── ref │ │ │ ├── netstandard2.0 │ │ │ │ └── System.Reflection.Emit.cs │ │ │ └── netstandard2.1 │ │ │ │ └── _._ │ │ │ └── system.reflection.emit.nuspec │ │ ├── system.reflection.metadata │ │ └── 8.0.0 │ │ │ ├── System.Reflection.Metadata.8.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Reflection.Metadata.cs │ │ │ ├── net7.0 │ │ │ │ └── System.Reflection.Metadata.cs │ │ │ ├── net8.0 │ │ │ │ └── System.Reflection.Metadata.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.Reflection.Metadata.cs │ │ │ └── system.reflection.metadata.nuspec │ │ ├── system.reflection.metadataloadcontext │ │ └── 8.0.0 │ │ │ ├── System.Reflection.MetadataLoadContext.8.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Reflection.MetadataLoadContext.cs │ │ │ ├── net7.0 │ │ │ │ └── System.Reflection.MetadataLoadContext.cs │ │ │ ├── net8.0 │ │ │ │ └── System.Reflection.MetadataLoadContext.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.Reflection.MetadataLoadContext.cs │ │ │ └── system.reflection.metadataloadcontext.nuspec │ │ ├── system.resources.extensions │ │ └── 8.0.0 │ │ │ ├── System.Resources.Extensions.8.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Resources.Extensions.cs │ │ │ ├── net7.0 │ │ │ │ └── System.Resources.Extensions.cs │ │ │ ├── net8.0 │ │ │ │ └── System.Resources.Extensions.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.Resources.Extensions.cs │ │ │ └── system.resources.extensions.nuspec │ │ ├── system.runtime.compilerservices.unsafe │ │ ├── 4.5.3 │ │ │ ├── System.Runtime.CompilerServices.Unsafe.4.5.3.csproj │ │ │ ├── ref │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Runtime.CompilerServices.Unsafe.cs │ │ │ └── system.runtime.compilerservices.unsafe.nuspec │ │ ├── 6.0.0 │ │ │ ├── System.Runtime.CompilerServices.Unsafe.6.0.0.csproj │ │ │ ├── lib │ │ │ │ ├── net6.0 │ │ │ │ │ └── System.Runtime.CompilerServices.Unsafe.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Runtime.CompilerServices.Unsafe.cs │ │ │ └── system.runtime.compilerservices.unsafe.nuspec │ │ └── 6.1.2 │ │ │ ├── System.Runtime.CompilerServices.Unsafe.6.1.2.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Runtime.CompilerServices.Unsafe.cs │ │ │ ├── net7.0 │ │ │ │ └── _._ │ │ │ └── netstandard2.0 │ │ │ │ └── System.Runtime.CompilerServices.Unsafe.cs │ │ │ └── system.runtime.compilerservices.unsafe.nuspec │ │ ├── system.security.accesscontrol │ │ ├── 5.0.0 │ │ │ ├── System.Security.AccessControl.5.0.0.csproj │ │ │ ├── ref │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Security.AccessControl.cs │ │ │ └── system.security.accesscontrol.nuspec │ │ └── 6.0.0 │ │ │ ├── System.Security.AccessControl.6.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Security.AccessControl.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.Security.AccessControl.cs │ │ │ └── system.security.accesscontrol.nuspec │ │ ├── system.security.cryptography.cng │ │ └── 5.0.0 │ │ │ ├── System.Security.Cryptography.Cng.5.0.0.csproj │ │ │ ├── ref │ │ │ ├── netstandard2.0 │ │ │ │ └── System.Security.Cryptography.Cng.cs │ │ │ └── netstandard2.1 │ │ │ │ └── System.Security.Cryptography.Cng.cs │ │ │ └── system.security.cryptography.cng.nuspec │ │ ├── system.security.cryptography.pkcs │ │ ├── 6.0.4 │ │ │ ├── System.Security.Cryptography.Pkcs.6.0.4.csproj │ │ │ ├── lib │ │ │ │ ├── net6.0 │ │ │ │ │ └── System.Security.Cryptography.Pkcs.cs │ │ │ │ ├── netstandard2.0 │ │ │ │ │ └── System.Security.Cryptography.Pkcs.cs │ │ │ │ └── netstandard2.1 │ │ │ │ │ └── System.Security.Cryptography.Pkcs.cs │ │ │ └── system.security.cryptography.pkcs.nuspec │ │ └── 8.0.0 │ │ │ ├── System.Security.Cryptography.Pkcs.8.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Security.Cryptography.Pkcs.cs │ │ │ ├── net7.0 │ │ │ │ └── System.Security.Cryptography.Pkcs.cs │ │ │ ├── net8.0 │ │ │ │ └── System.Security.Cryptography.Pkcs.cs │ │ │ ├── netstandard2.0 │ │ │ │ └── System.Security.Cryptography.Pkcs.cs │ │ │ └── netstandard2.1 │ │ │ │ └── System.Security.Cryptography.Pkcs.cs │ │ │ └── system.security.cryptography.pkcs.nuspec │ │ ├── system.security.cryptography.protecteddata │ │ ├── 4.4.0 │ │ │ ├── System.Security.Cryptography.ProtectedData.4.4.0.csproj │ │ │ ├── ref │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Security.Cryptography.ProtectedData.cs │ │ │ └── system.security.cryptography.protecteddata.nuspec │ │ ├── 7.0.0 │ │ │ ├── System.Security.Cryptography.ProtectedData.7.0.0.csproj │ │ │ ├── lib │ │ │ │ ├── net6.0 │ │ │ │ │ └── System.Security.Cryptography.ProtectedData.cs │ │ │ │ ├── net7.0 │ │ │ │ │ └── System.Security.Cryptography.ProtectedData.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Security.Cryptography.ProtectedData.cs │ │ │ └── system.security.cryptography.protecteddata.nuspec │ │ └── 8.0.0 │ │ │ ├── System.Security.Cryptography.ProtectedData.8.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Security.Cryptography.ProtectedData.cs │ │ │ ├── net7.0 │ │ │ │ └── System.Security.Cryptography.ProtectedData.cs │ │ │ ├── net8.0 │ │ │ │ └── System.Security.Cryptography.ProtectedData.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.Security.Cryptography.ProtectedData.cs │ │ │ └── system.security.cryptography.protecteddata.nuspec │ │ ├── system.security.cryptography.xml │ │ └── 8.0.0 │ │ │ ├── System.Security.Cryptography.Xml.8.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Security.Cryptography.Xml.cs │ │ │ ├── net7.0 │ │ │ │ └── System.Security.Cryptography.Xml.cs │ │ │ ├── net8.0 │ │ │ │ └── System.Security.Cryptography.Xml.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.Security.Cryptography.Xml.cs │ │ │ └── system.security.cryptography.xml.nuspec │ │ ├── system.security.permissions │ │ └── 7.0.0 │ │ │ ├── System.Security.Permissions.7.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Security.Permissions.cs │ │ │ ├── net7.0 │ │ │ │ └── System.Security.Permissions.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.Security.Permissions.cs │ │ │ └── system.security.permissions.nuspec │ │ ├── system.security.principal.windows │ │ └── 5.0.0 │ │ │ ├── System.Security.Principal.Windows.5.0.0.csproj │ │ │ ├── ref │ │ │ └── netstandard2.0 │ │ │ │ └── System.Security.Principal.Windows.cs │ │ │ └── system.security.principal.windows.nuspec │ │ ├── system.text.encoding.codepages │ │ ├── 7.0.0 │ │ │ ├── System.Text.Encoding.CodePages.7.0.0.csproj │ │ │ ├── lib │ │ │ │ ├── net6.0 │ │ │ │ │ └── System.Text.Encoding.CodePages.cs │ │ │ │ ├── net7.0 │ │ │ │ │ └── System.Text.Encoding.CodePages.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Text.Encoding.CodePages.cs │ │ │ └── system.text.encoding.codepages.nuspec │ │ └── 8.0.0 │ │ │ ├── System.Text.Encoding.CodePages.8.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Text.Encoding.CodePages.cs │ │ │ ├── net7.0 │ │ │ │ └── System.Text.Encoding.CodePages.cs │ │ │ ├── net8.0 │ │ │ │ └── System.Text.Encoding.CodePages.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.Text.Encoding.CodePages.cs │ │ │ └── system.text.encoding.codepages.nuspec │ │ ├── system.text.encodings.web │ │ ├── 6.0.0 │ │ │ ├── Customizations.props │ │ │ ├── System.Text.Encodings.Web.6.0.0.csproj │ │ │ ├── lib │ │ │ │ ├── net6.0 │ │ │ │ │ └── System.Text.Encodings.Web.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Text.Encodings.Web.cs │ │ │ └── system.text.encodings.web.nuspec │ │ └── 8.0.0 │ │ │ ├── Customizations.props │ │ │ ├── System.Text.Encodings.Web.8.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Text.Encodings.Web.cs │ │ │ ├── net7.0 │ │ │ │ └── System.Text.Encodings.Web.cs │ │ │ ├── net8.0 │ │ │ │ └── System.Text.Encodings.Web.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.Text.Encodings.Web.cs │ │ │ └── system.text.encodings.web.nuspec │ │ ├── system.text.json │ │ ├── 6.0.0 │ │ │ ├── Customizations.props │ │ │ ├── System.Text.Json.6.0.0.csproj │ │ │ ├── lib │ │ │ │ ├── net6.0 │ │ │ │ │ └── System.Text.Json.cs │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Text.Json.cs │ │ │ └── system.text.json.nuspec │ │ └── 8.0.5 │ │ │ ├── Customizations.props │ │ │ ├── System.Text.Json.8.0.5.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Text.Json.cs │ │ │ ├── net7.0 │ │ │ │ └── System.Text.Json.cs │ │ │ ├── net8.0 │ │ │ │ └── System.Text.Json.cs │ │ │ └── netstandard2.0 │ │ │ │ └── System.Text.Json.cs │ │ │ └── system.text.json.nuspec │ │ ├── system.threading.channels │ │ └── 8.0.0 │ │ │ ├── System.Threading.Channels.8.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Threading.Channels.cs │ │ │ ├── net7.0 │ │ │ │ └── System.Threading.Channels.cs │ │ │ ├── net8.0 │ │ │ │ └── System.Threading.Channels.cs │ │ │ ├── netstandard2.0 │ │ │ │ └── System.Threading.Channels.cs │ │ │ └── netstandard2.1 │ │ │ │ └── System.Threading.Channels.cs │ │ │ └── system.threading.channels.nuspec │ │ ├── system.threading.tasks.dataflow │ │ └── 8.0.0 │ │ │ ├── System.Threading.Tasks.Dataflow.8.0.0.csproj │ │ │ ├── lib │ │ │ ├── net6.0 │ │ │ │ └── System.Threading.Tasks.Dataflow.cs │ │ │ ├── net7.0 │ │ │ │ └── System.Threading.Tasks.Dataflow.cs │ │ │ ├── net8.0 │ │ │ │ └── System.Threading.Tasks.Dataflow.cs │ │ │ ├── netstandard2.0 │ │ │ │ └── System.Threading.Tasks.Dataflow.cs │ │ │ └── netstandard2.1 │ │ │ │ └── System.Threading.Tasks.Dataflow.cs │ │ │ └── system.threading.tasks.dataflow.nuspec │ │ ├── system.threading.tasks.extensions │ │ ├── 4.5.4 │ │ │ ├── System.Threading.Tasks.Extensions.4.5.4.csproj │ │ │ ├── lib │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Threading.Tasks.Extensions.cs │ │ │ └── system.threading.tasks.extensions.nuspec │ │ └── 4.6.3 │ │ │ ├── System.Threading.Tasks.Extensions.4.6.3.csproj │ │ │ ├── lib │ │ │ ├── netstandard2.0 │ │ │ │ └── System.Threading.Tasks.Extensions.cs │ │ │ └── netstandard2.1 │ │ │ │ └── _._ │ │ │ └── system.threading.tasks.extensions.nuspec │ │ └── system.windows.extensions │ │ └── 7.0.0 │ │ ├── System.Windows.Extensions.7.0.0.csproj │ │ ├── lib │ │ ├── net6.0 │ │ │ └── System.Windows.Extensions.cs │ │ └── net7.0 │ │ │ └── System.Windows.Extensions.cs │ │ └── system.windows.extensions.nuspec ├── targetPacks │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── ILsrc │ │ ├── microsoft.aspnetcore.app.ref │ │ │ └── 6.0.2 │ │ │ │ ├── Microsoft.AspNetCore.App.Ref.6.0.2.csproj │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── data │ │ │ │ ├── FrameworkList.xml │ │ │ │ ├── PackageOverrides.txt │ │ │ │ └── PlatformManifest.txt │ │ │ │ ├── microsoft.aspnetcore.app.ref.nuspec │ │ │ │ └── ref │ │ │ │ └── net6.0 │ │ │ │ ├── Microsoft.AspNetCore.Antiforgery.il │ │ │ │ ├── Microsoft.AspNetCore.Authentication.Abstractions.il │ │ │ │ ├── Microsoft.AspNetCore.Authentication.Cookies.il │ │ │ │ ├── Microsoft.AspNetCore.Authentication.Core.il │ │ │ │ ├── Microsoft.AspNetCore.Authentication.OAuth.il │ │ │ │ ├── Microsoft.AspNetCore.Authentication.il │ │ │ │ ├── Microsoft.AspNetCore.Authorization.Policy.il │ │ │ │ ├── Microsoft.AspNetCore.Authorization.il │ │ │ │ ├── Microsoft.AspNetCore.Components.Authorization.il │ │ │ │ ├── Microsoft.AspNetCore.Components.Forms.il │ │ │ │ ├── Microsoft.AspNetCore.Components.Server.il │ │ │ │ ├── Microsoft.AspNetCore.Components.Web.il │ │ │ │ ├── Microsoft.AspNetCore.Components.il │ │ │ │ ├── Microsoft.AspNetCore.Connections.Abstractions.il │ │ │ │ ├── Microsoft.AspNetCore.CookiePolicy.il │ │ │ │ ├── Microsoft.AspNetCore.Cors.il │ │ │ │ ├── Microsoft.AspNetCore.Cryptography.Internal.il │ │ │ │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.il │ │ │ │ ├── Microsoft.AspNetCore.DataProtection.Abstractions.il │ │ │ │ ├── Microsoft.AspNetCore.DataProtection.Extensions.il │ │ │ │ ├── Microsoft.AspNetCore.DataProtection.il │ │ │ │ ├── Microsoft.AspNetCore.Diagnostics.Abstractions.il │ │ │ │ ├── Microsoft.AspNetCore.Diagnostics.HealthChecks.il │ │ │ │ ├── Microsoft.AspNetCore.Diagnostics.il │ │ │ │ ├── Microsoft.AspNetCore.HostFiltering.il │ │ │ │ ├── Microsoft.AspNetCore.Hosting.Abstractions.il │ │ │ │ ├── Microsoft.AspNetCore.Hosting.Server.Abstractions.il │ │ │ │ ├── Microsoft.AspNetCore.Hosting.il │ │ │ │ ├── Microsoft.AspNetCore.Html.Abstractions.il │ │ │ │ ├── Microsoft.AspNetCore.Http.Abstractions.il │ │ │ │ ├── Microsoft.AspNetCore.Http.Connections.Common.il │ │ │ │ ├── Microsoft.AspNetCore.Http.Connections.il │ │ │ │ ├── Microsoft.AspNetCore.Http.Extensions.il │ │ │ │ ├── Microsoft.AspNetCore.Http.Features.il │ │ │ │ ├── Microsoft.AspNetCore.Http.Results.il │ │ │ │ ├── Microsoft.AspNetCore.Http.il │ │ │ │ ├── Microsoft.AspNetCore.HttpLogging.il │ │ │ │ ├── Microsoft.AspNetCore.HttpOverrides.il │ │ │ │ ├── Microsoft.AspNetCore.HttpsPolicy.il │ │ │ │ ├── Microsoft.AspNetCore.Identity.il │ │ │ │ ├── Microsoft.AspNetCore.Localization.Routing.il │ │ │ │ ├── Microsoft.AspNetCore.Localization.il │ │ │ │ ├── Microsoft.AspNetCore.Metadata.il │ │ │ │ ├── Microsoft.AspNetCore.Mvc.Abstractions.il │ │ │ │ ├── Microsoft.AspNetCore.Mvc.ApiExplorer.il │ │ │ │ ├── Microsoft.AspNetCore.Mvc.Core.il │ │ │ │ ├── Microsoft.AspNetCore.Mvc.Cors.il │ │ │ │ ├── Microsoft.AspNetCore.Mvc.DataAnnotations.il │ │ │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Json.il │ │ │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Xml.il │ │ │ │ ├── Microsoft.AspNetCore.Mvc.Localization.il │ │ │ │ ├── Microsoft.AspNetCore.Mvc.Razor.il │ │ │ │ ├── Microsoft.AspNetCore.Mvc.RazorPages.il │ │ │ │ ├── Microsoft.AspNetCore.Mvc.TagHelpers.il │ │ │ │ ├── Microsoft.AspNetCore.Mvc.ViewFeatures.il │ │ │ │ ├── Microsoft.AspNetCore.Mvc.il │ │ │ │ ├── Microsoft.AspNetCore.Razor.Runtime.il │ │ │ │ ├── Microsoft.AspNetCore.Razor.il │ │ │ │ ├── Microsoft.AspNetCore.ResponseCaching.Abstractions.il │ │ │ │ ├── Microsoft.AspNetCore.ResponseCaching.il │ │ │ │ ├── Microsoft.AspNetCore.ResponseCompression.il │ │ │ │ ├── Microsoft.AspNetCore.Rewrite.il │ │ │ │ ├── Microsoft.AspNetCore.Routing.Abstractions.il │ │ │ │ ├── Microsoft.AspNetCore.Routing.il │ │ │ │ ├── Microsoft.AspNetCore.Server.HttpSys.il │ │ │ │ ├── Microsoft.AspNetCore.Server.IIS.il │ │ │ │ ├── Microsoft.AspNetCore.Server.IISIntegration.il │ │ │ │ ├── Microsoft.AspNetCore.Server.Kestrel.Core.il │ │ │ │ ├── Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.il │ │ │ │ ├── Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.il │ │ │ │ ├── Microsoft.AspNetCore.Server.Kestrel.il │ │ │ │ ├── Microsoft.AspNetCore.Session.il │ │ │ │ ├── Microsoft.AspNetCore.SignalR.Common.il │ │ │ │ ├── Microsoft.AspNetCore.SignalR.Core.il │ │ │ │ ├── Microsoft.AspNetCore.SignalR.Protocols.Json.il │ │ │ │ ├── Microsoft.AspNetCore.SignalR.il │ │ │ │ ├── Microsoft.AspNetCore.StaticFiles.il │ │ │ │ ├── Microsoft.AspNetCore.WebSockets.il │ │ │ │ ├── Microsoft.AspNetCore.WebUtilities.il │ │ │ │ ├── Microsoft.AspNetCore.il │ │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.il │ │ │ │ ├── Microsoft.Extensions.Caching.Memory.il │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.il │ │ │ │ ├── Microsoft.Extensions.Configuration.Binder.il │ │ │ │ ├── Microsoft.Extensions.Configuration.CommandLine.il │ │ │ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.il │ │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.il │ │ │ │ ├── Microsoft.Extensions.Configuration.Ini.il │ │ │ │ ├── Microsoft.Extensions.Configuration.Json.il │ │ │ │ ├── Microsoft.Extensions.Configuration.KeyPerFile.il │ │ │ │ ├── Microsoft.Extensions.Configuration.UserSecrets.il │ │ │ │ ├── Microsoft.Extensions.Configuration.Xml.il │ │ │ │ ├── Microsoft.Extensions.Configuration.il │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.il │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.il │ │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.il │ │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.il │ │ │ │ ├── Microsoft.Extensions.Features.il │ │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.il │ │ │ │ ├── Microsoft.Extensions.FileProviders.Composite.il │ │ │ │ ├── Microsoft.Extensions.FileProviders.Embedded.il │ │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.il │ │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.il │ │ │ │ ├── Microsoft.Extensions.Hosting.Abstractions.il │ │ │ │ ├── Microsoft.Extensions.Hosting.il │ │ │ │ ├── Microsoft.Extensions.Http.il │ │ │ │ ├── Microsoft.Extensions.Identity.Core.il │ │ │ │ ├── Microsoft.Extensions.Identity.Stores.il │ │ │ │ ├── Microsoft.Extensions.Localization.Abstractions.il │ │ │ │ ├── Microsoft.Extensions.Localization.il │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.il │ │ │ │ ├── Microsoft.Extensions.Logging.Configuration.il │ │ │ │ ├── Microsoft.Extensions.Logging.Console.il │ │ │ │ ├── Microsoft.Extensions.Logging.Debug.il │ │ │ │ ├── Microsoft.Extensions.Logging.EventLog.il │ │ │ │ ├── Microsoft.Extensions.Logging.EventSource.il │ │ │ │ ├── Microsoft.Extensions.Logging.TraceSource.il │ │ │ │ ├── Microsoft.Extensions.Logging.il │ │ │ │ ├── Microsoft.Extensions.ObjectPool.il │ │ │ │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.il │ │ │ │ ├── Microsoft.Extensions.Options.DataAnnotations.il │ │ │ │ ├── Microsoft.Extensions.Options.il │ │ │ │ ├── Microsoft.Extensions.Primitives.il │ │ │ │ ├── Microsoft.Extensions.WebEncoders.il │ │ │ │ ├── Microsoft.JSInterop.il │ │ │ │ ├── Microsoft.Net.Http.Headers.il │ │ │ │ ├── System.Diagnostics.EventLog.il │ │ │ │ ├── System.IO.Pipelines.il │ │ │ │ └── System.Security.Cryptography.Xml.il │ │ ├── microsoft.netcore.app.ref │ │ │ ├── 10.0.0 │ │ │ │ ├── Icon.png │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── Microsoft.NETCore.App.Ref.10.0.0.csproj │ │ │ │ ├── Microsoft.NETCore.App.versions.txt │ │ │ │ ├── PACKAGE.md │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── data │ │ │ │ │ ├── FrameworkList.xml │ │ │ │ │ ├── PackageOverrides.txt │ │ │ │ │ └── PlatformManifest.txt │ │ │ │ ├── microsoft.netcore.app.ref.nuspec │ │ │ │ ├── ref │ │ │ │ │ └── net10.0 │ │ │ │ │ │ ├── Microsoft.CSharp.il │ │ │ │ │ │ ├── Microsoft.VisualBasic.Core.il │ │ │ │ │ │ ├── Microsoft.VisualBasic.il │ │ │ │ │ │ ├── Microsoft.Win32.Primitives.il │ │ │ │ │ │ ├── Microsoft.Win32.Registry.il │ │ │ │ │ │ ├── System.AppContext.il │ │ │ │ │ │ ├── System.Buffers.il │ │ │ │ │ │ ├── System.Collections.Concurrent.il │ │ │ │ │ │ ├── System.Collections.Immutable.il │ │ │ │ │ │ ├── System.Collections.NonGeneric.il │ │ │ │ │ │ ├── System.Collections.Specialized.il │ │ │ │ │ │ ├── System.Collections.il │ │ │ │ │ │ ├── System.ComponentModel.Annotations.il │ │ │ │ │ │ ├── System.ComponentModel.DataAnnotations.il │ │ │ │ │ │ ├── System.ComponentModel.EventBasedAsync.il │ │ │ │ │ │ ├── System.ComponentModel.Primitives.il │ │ │ │ │ │ ├── System.ComponentModel.TypeConverter.il │ │ │ │ │ │ ├── System.ComponentModel.il │ │ │ │ │ │ ├── System.Configuration.il │ │ │ │ │ │ ├── System.Console.il │ │ │ │ │ │ ├── System.Core.il │ │ │ │ │ │ ├── System.Data.Common.il │ │ │ │ │ │ ├── System.Data.DataSetExtensions.il │ │ │ │ │ │ ├── System.Data.il │ │ │ │ │ │ ├── System.Diagnostics.Contracts.il │ │ │ │ │ │ ├── System.Diagnostics.Debug.il │ │ │ │ │ │ ├── System.Diagnostics.DiagnosticSource.il │ │ │ │ │ │ ├── System.Diagnostics.FileVersionInfo.il │ │ │ │ │ │ ├── System.Diagnostics.Process.il │ │ │ │ │ │ ├── System.Diagnostics.StackTrace.il │ │ │ │ │ │ ├── System.Diagnostics.TextWriterTraceListener.il │ │ │ │ │ │ ├── System.Diagnostics.Tools.il │ │ │ │ │ │ ├── System.Diagnostics.TraceSource.il │ │ │ │ │ │ ├── System.Diagnostics.Tracing.il │ │ │ │ │ │ ├── System.Drawing.Primitives.il │ │ │ │ │ │ ├── System.Drawing.il │ │ │ │ │ │ ├── System.Dynamic.Runtime.il │ │ │ │ │ │ ├── System.Formats.Asn1.il │ │ │ │ │ │ ├── System.Formats.Tar.il │ │ │ │ │ │ ├── System.Globalization.Calendars.il │ │ │ │ │ │ ├── System.Globalization.Extensions.il │ │ │ │ │ │ ├── System.Globalization.il │ │ │ │ │ │ ├── System.IO.Compression.Brotli.il │ │ │ │ │ │ ├── System.IO.Compression.FileSystem.il │ │ │ │ │ │ ├── System.IO.Compression.ZipFile.il │ │ │ │ │ │ ├── System.IO.Compression.il │ │ │ │ │ │ ├── System.IO.FileSystem.AccessControl.il │ │ │ │ │ │ ├── System.IO.FileSystem.DriveInfo.il │ │ │ │ │ │ ├── System.IO.FileSystem.Primitives.il │ │ │ │ │ │ ├── System.IO.FileSystem.Watcher.il │ │ │ │ │ │ ├── System.IO.FileSystem.il │ │ │ │ │ │ ├── System.IO.IsolatedStorage.il │ │ │ │ │ │ ├── System.IO.MemoryMappedFiles.il │ │ │ │ │ │ ├── System.IO.Pipelines.il │ │ │ │ │ │ ├── System.IO.Pipes.AccessControl.il │ │ │ │ │ │ ├── System.IO.Pipes.il │ │ │ │ │ │ ├── System.IO.UnmanagedMemoryStream.il │ │ │ │ │ │ ├── System.IO.il │ │ │ │ │ │ ├── System.Linq.AsyncEnumerable.il │ │ │ │ │ │ ├── System.Linq.Expressions.il │ │ │ │ │ │ ├── System.Linq.Parallel.il │ │ │ │ │ │ ├── System.Linq.Queryable.il │ │ │ │ │ │ ├── System.Linq.il │ │ │ │ │ │ ├── System.Memory.il │ │ │ │ │ │ ├── System.Net.Http.Json.il │ │ │ │ │ │ ├── System.Net.Http.il │ │ │ │ │ │ ├── System.Net.HttpListener.il │ │ │ │ │ │ ├── System.Net.Mail.il │ │ │ │ │ │ ├── System.Net.NameResolution.il │ │ │ │ │ │ ├── System.Net.NetworkInformation.il │ │ │ │ │ │ ├── System.Net.Ping.il │ │ │ │ │ │ ├── System.Net.Primitives.il │ │ │ │ │ │ ├── System.Net.Quic.il │ │ │ │ │ │ ├── System.Net.Requests.il │ │ │ │ │ │ ├── System.Net.Security.il │ │ │ │ │ │ ├── System.Net.ServerSentEvents.il │ │ │ │ │ │ ├── System.Net.ServicePoint.il │ │ │ │ │ │ ├── System.Net.Sockets.il │ │ │ │ │ │ ├── System.Net.WebClient.il │ │ │ │ │ │ ├── System.Net.WebHeaderCollection.il │ │ │ │ │ │ ├── System.Net.WebProxy.il │ │ │ │ │ │ ├── System.Net.WebSockets.Client.il │ │ │ │ │ │ ├── System.Net.WebSockets.il │ │ │ │ │ │ ├── System.Net.il │ │ │ │ │ │ ├── System.Numerics.Vectors.il │ │ │ │ │ │ ├── System.Numerics.il │ │ │ │ │ │ ├── System.ObjectModel.il │ │ │ │ │ │ ├── System.Reflection.DispatchProxy.il │ │ │ │ │ │ ├── System.Reflection.Emit.ILGeneration.il │ │ │ │ │ │ ├── System.Reflection.Emit.Lightweight.il │ │ │ │ │ │ ├── System.Reflection.Emit.il │ │ │ │ │ │ ├── System.Reflection.Extensions.il │ │ │ │ │ │ ├── System.Reflection.Metadata.il │ │ │ │ │ │ ├── System.Reflection.Primitives.il │ │ │ │ │ │ ├── System.Reflection.TypeExtensions.il │ │ │ │ │ │ ├── System.Reflection.il │ │ │ │ │ │ ├── System.Resources.Reader.il │ │ │ │ │ │ ├── System.Resources.ResourceManager.il │ │ │ │ │ │ ├── System.Resources.Writer.il │ │ │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.il │ │ │ │ │ │ ├── System.Runtime.CompilerServices.VisualC.il │ │ │ │ │ │ ├── System.Runtime.Extensions.il │ │ │ │ │ │ ├── System.Runtime.Handles.il │ │ │ │ │ │ ├── System.Runtime.InteropServices.JavaScript.il │ │ │ │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.il │ │ │ │ │ │ ├── System.Runtime.InteropServices.il │ │ │ │ │ │ ├── System.Runtime.Intrinsics.il │ │ │ │ │ │ ├── System.Runtime.Loader.il │ │ │ │ │ │ ├── System.Runtime.Numerics.il │ │ │ │ │ │ ├── System.Runtime.Serialization.Formatters.il │ │ │ │ │ │ ├── System.Runtime.Serialization.Json.il │ │ │ │ │ │ ├── System.Runtime.Serialization.Primitives.il │ │ │ │ │ │ ├── System.Runtime.Serialization.Xml.il │ │ │ │ │ │ ├── System.Runtime.Serialization.il │ │ │ │ │ │ ├── System.Runtime.il │ │ │ │ │ │ ├── System.Security.AccessControl.il │ │ │ │ │ │ ├── System.Security.Claims.il │ │ │ │ │ │ ├── System.Security.Cryptography.Algorithms.il │ │ │ │ │ │ ├── System.Security.Cryptography.Cng.il │ │ │ │ │ │ ├── System.Security.Cryptography.Csp.il │ │ │ │ │ │ ├── System.Security.Cryptography.Encoding.il │ │ │ │ │ │ ├── System.Security.Cryptography.OpenSsl.il │ │ │ │ │ │ ├── System.Security.Cryptography.Primitives.il │ │ │ │ │ │ ├── System.Security.Cryptography.X509Certificates.il │ │ │ │ │ │ ├── System.Security.Cryptography.il │ │ │ │ │ │ ├── System.Security.Principal.Windows.il │ │ │ │ │ │ ├── System.Security.Principal.il │ │ │ │ │ │ ├── System.Security.SecureString.il │ │ │ │ │ │ ├── System.Security.il │ │ │ │ │ │ ├── System.ServiceModel.Web.il │ │ │ │ │ │ ├── System.ServiceProcess.il │ │ │ │ │ │ ├── System.Text.Encoding.CodePages.il │ │ │ │ │ │ ├── System.Text.Encoding.Extensions.il │ │ │ │ │ │ ├── System.Text.Encoding.il │ │ │ │ │ │ ├── System.Text.Encodings.Web.il │ │ │ │ │ │ ├── System.Text.Json.il │ │ │ │ │ │ ├── System.Text.RegularExpressions.il │ │ │ │ │ │ ├── System.Threading.AccessControl.il │ │ │ │ │ │ ├── System.Threading.Channels.il │ │ │ │ │ │ ├── System.Threading.Overlapped.il │ │ │ │ │ │ ├── System.Threading.Tasks.Dataflow.il │ │ │ │ │ │ ├── System.Threading.Tasks.Extensions.il │ │ │ │ │ │ ├── System.Threading.Tasks.Parallel.il │ │ │ │ │ │ ├── System.Threading.Tasks.il │ │ │ │ │ │ ├── System.Threading.Thread.il │ │ │ │ │ │ ├── System.Threading.ThreadPool.il │ │ │ │ │ │ ├── System.Threading.Timer.il │ │ │ │ │ │ ├── System.Threading.il │ │ │ │ │ │ ├── System.Transactions.Local.il │ │ │ │ │ │ ├── System.Transactions.il │ │ │ │ │ │ ├── System.ValueTuple.il │ │ │ │ │ │ ├── System.Web.HttpUtility.il │ │ │ │ │ │ ├── System.Web.il │ │ │ │ │ │ ├── System.Windows.il │ │ │ │ │ │ ├── System.Xml.Linq.il │ │ │ │ │ │ ├── System.Xml.ReaderWriter.il │ │ │ │ │ │ ├── System.Xml.Serialization.il │ │ │ │ │ │ ├── System.Xml.XDocument.il │ │ │ │ │ │ ├── System.Xml.XPath.XDocument.il │ │ │ │ │ │ ├── System.Xml.XPath.il │ │ │ │ │ │ ├── System.Xml.XmlDocument.il │ │ │ │ │ │ ├── System.Xml.XmlSerializer.il │ │ │ │ │ │ ├── System.Xml.il │ │ │ │ │ │ ├── System.il │ │ │ │ │ │ ├── WindowsBase.il │ │ │ │ │ │ ├── mscorlib.il │ │ │ │ │ │ └── netstandard.il │ │ │ │ └── useSharedDesignerContext.txt │ │ │ ├── 6.0.0 │ │ │ │ ├── Icon.png │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── Microsoft.NETCore.App.Ref.6.0.0.csproj │ │ │ │ ├── Microsoft.NETCore.App.versions.txt │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── data │ │ │ │ │ ├── FrameworkList.xml │ │ │ │ │ ├── PackageOverrides.txt │ │ │ │ │ └── PlatformManifest.txt │ │ │ │ ├── microsoft.netcore.app.ref.nuspec │ │ │ │ └── ref │ │ │ │ │ └── net6.0 │ │ │ │ │ ├── Microsoft.CSharp.il │ │ │ │ │ ├── Microsoft.VisualBasic.Core.il │ │ │ │ │ ├── Microsoft.VisualBasic.il │ │ │ │ │ ├── Microsoft.Win32.Primitives.il │ │ │ │ │ ├── Microsoft.Win32.Registry.il │ │ │ │ │ ├── System.AppContext.il │ │ │ │ │ ├── System.Buffers.il │ │ │ │ │ ├── System.Collections.Concurrent.il │ │ │ │ │ ├── System.Collections.Immutable.il │ │ │ │ │ ├── System.Collections.NonGeneric.il │ │ │ │ │ ├── System.Collections.Specialized.il │ │ │ │ │ ├── System.Collections.il │ │ │ │ │ ├── System.ComponentModel.Annotations.il │ │ │ │ │ ├── System.ComponentModel.DataAnnotations.il │ │ │ │ │ ├── System.ComponentModel.EventBasedAsync.il │ │ │ │ │ ├── System.ComponentModel.Primitives.il │ │ │ │ │ ├── System.ComponentModel.TypeConverter.il │ │ │ │ │ ├── System.ComponentModel.il │ │ │ │ │ ├── System.Configuration.il │ │ │ │ │ ├── System.Console.il │ │ │ │ │ ├── System.Core.il │ │ │ │ │ ├── System.Data.Common.il │ │ │ │ │ ├── System.Data.DataSetExtensions.il │ │ │ │ │ ├── System.Data.il │ │ │ │ │ ├── System.Diagnostics.Contracts.il │ │ │ │ │ ├── System.Diagnostics.Debug.il │ │ │ │ │ ├── System.Diagnostics.DiagnosticSource.il │ │ │ │ │ ├── System.Diagnostics.FileVersionInfo.il │ │ │ │ │ ├── System.Diagnostics.Process.il │ │ │ │ │ ├── System.Diagnostics.StackTrace.il │ │ │ │ │ ├── System.Diagnostics.TextWriterTraceListener.il │ │ │ │ │ ├── System.Diagnostics.Tools.il │ │ │ │ │ ├── System.Diagnostics.TraceSource.il │ │ │ │ │ ├── System.Diagnostics.Tracing.il │ │ │ │ │ ├── System.Drawing.Primitives.il │ │ │ │ │ ├── System.Drawing.il │ │ │ │ │ ├── System.Dynamic.Runtime.il │ │ │ │ │ ├── System.Formats.Asn1.il │ │ │ │ │ ├── System.Globalization.Calendars.il │ │ │ │ │ ├── System.Globalization.Extensions.il │ │ │ │ │ ├── System.Globalization.il │ │ │ │ │ ├── System.IO.Compression.Brotli.il │ │ │ │ │ ├── System.IO.Compression.FileSystem.il │ │ │ │ │ ├── System.IO.Compression.ZipFile.il │ │ │ │ │ ├── System.IO.Compression.il │ │ │ │ │ ├── System.IO.FileSystem.AccessControl.il │ │ │ │ │ ├── System.IO.FileSystem.DriveInfo.il │ │ │ │ │ ├── System.IO.FileSystem.Primitives.il │ │ │ │ │ ├── System.IO.FileSystem.Watcher.il │ │ │ │ │ ├── System.IO.FileSystem.il │ │ │ │ │ ├── System.IO.IsolatedStorage.il │ │ │ │ │ ├── System.IO.MemoryMappedFiles.il │ │ │ │ │ ├── System.IO.Pipes.AccessControl.il │ │ │ │ │ ├── System.IO.Pipes.il │ │ │ │ │ ├── System.IO.UnmanagedMemoryStream.il │ │ │ │ │ ├── System.IO.il │ │ │ │ │ ├── System.Linq.Expressions.il │ │ │ │ │ ├── System.Linq.Parallel.il │ │ │ │ │ ├── System.Linq.Queryable.il │ │ │ │ │ ├── System.Linq.il │ │ │ │ │ ├── System.Memory.il │ │ │ │ │ ├── System.Net.Http.Json.il │ │ │ │ │ ├── System.Net.Http.il │ │ │ │ │ ├── System.Net.HttpListener.il │ │ │ │ │ ├── System.Net.Mail.il │ │ │ │ │ ├── System.Net.NameResolution.il │ │ │ │ │ ├── System.Net.NetworkInformation.il │ │ │ │ │ ├── System.Net.Ping.il │ │ │ │ │ ├── System.Net.Primitives.il │ │ │ │ │ ├── System.Net.Requests.il │ │ │ │ │ ├── System.Net.Security.il │ │ │ │ │ ├── System.Net.ServicePoint.il │ │ │ │ │ ├── System.Net.Sockets.il │ │ │ │ │ ├── System.Net.WebClient.il │ │ │ │ │ ├── System.Net.WebHeaderCollection.il │ │ │ │ │ ├── System.Net.WebProxy.il │ │ │ │ │ ├── System.Net.WebSockets.Client.il │ │ │ │ │ ├── System.Net.WebSockets.il │ │ │ │ │ ├── System.Net.il │ │ │ │ │ ├── System.Numerics.Vectors.il │ │ │ │ │ ├── System.Numerics.il │ │ │ │ │ ├── System.ObjectModel.il │ │ │ │ │ ├── System.Reflection.DispatchProxy.il │ │ │ │ │ ├── System.Reflection.Emit.ILGeneration.il │ │ │ │ │ ├── System.Reflection.Emit.Lightweight.il │ │ │ │ │ ├── System.Reflection.Emit.il │ │ │ │ │ ├── System.Reflection.Extensions.il │ │ │ │ │ ├── System.Reflection.Metadata.il │ │ │ │ │ ├── System.Reflection.Primitives.il │ │ │ │ │ ├── System.Reflection.TypeExtensions.il │ │ │ │ │ ├── System.Reflection.il │ │ │ │ │ ├── System.Resources.Reader.il │ │ │ │ │ ├── System.Resources.ResourceManager.il │ │ │ │ │ ├── System.Resources.Writer.il │ │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.il │ │ │ │ │ ├── System.Runtime.CompilerServices.VisualC.il │ │ │ │ │ ├── System.Runtime.Extensions.il │ │ │ │ │ ├── System.Runtime.Handles.il │ │ │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.il │ │ │ │ │ ├── System.Runtime.InteropServices.il │ │ │ │ │ ├── System.Runtime.Intrinsics.il │ │ │ │ │ ├── System.Runtime.Loader.il │ │ │ │ │ ├── System.Runtime.Numerics.il │ │ │ │ │ ├── System.Runtime.Serialization.Formatters.il │ │ │ │ │ ├── System.Runtime.Serialization.Json.il │ │ │ │ │ ├── System.Runtime.Serialization.Primitives.il │ │ │ │ │ ├── System.Runtime.Serialization.Xml.il │ │ │ │ │ ├── System.Runtime.Serialization.il │ │ │ │ │ ├── System.Runtime.il │ │ │ │ │ ├── System.Security.AccessControl.il │ │ │ │ │ ├── System.Security.Claims.il │ │ │ │ │ ├── System.Security.Cryptography.Algorithms.il │ │ │ │ │ ├── System.Security.Cryptography.Cng.il │ │ │ │ │ ├── System.Security.Cryptography.Csp.il │ │ │ │ │ ├── System.Security.Cryptography.Encoding.il │ │ │ │ │ ├── System.Security.Cryptography.OpenSsl.il │ │ │ │ │ ├── System.Security.Cryptography.Primitives.il │ │ │ │ │ ├── System.Security.Cryptography.X509Certificates.il │ │ │ │ │ ├── System.Security.Principal.Windows.il │ │ │ │ │ ├── System.Security.Principal.il │ │ │ │ │ ├── System.Security.SecureString.il │ │ │ │ │ ├── System.Security.il │ │ │ │ │ ├── System.ServiceModel.Web.il │ │ │ │ │ ├── System.ServiceProcess.il │ │ │ │ │ ├── System.Text.Encoding.CodePages.il │ │ │ │ │ ├── System.Text.Encoding.Extensions.il │ │ │ │ │ ├── System.Text.Encoding.il │ │ │ │ │ ├── System.Text.Encodings.Web.il │ │ │ │ │ ├── System.Text.Json.il │ │ │ │ │ ├── System.Text.RegularExpressions.il │ │ │ │ │ ├── System.Threading.Channels.il │ │ │ │ │ ├── System.Threading.Overlapped.il │ │ │ │ │ ├── System.Threading.Tasks.Dataflow.il │ │ │ │ │ ├── System.Threading.Tasks.Extensions.il │ │ │ │ │ ├── System.Threading.Tasks.Parallel.il │ │ │ │ │ ├── System.Threading.Tasks.il │ │ │ │ │ ├── System.Threading.Thread.il │ │ │ │ │ ├── System.Threading.ThreadPool.il │ │ │ │ │ ├── System.Threading.Timer.il │ │ │ │ │ ├── System.Threading.il │ │ │ │ │ ├── System.Transactions.Local.il │ │ │ │ │ ├── System.Transactions.il │ │ │ │ │ ├── System.ValueTuple.il │ │ │ │ │ ├── System.Web.HttpUtility.il │ │ │ │ │ ├── System.Web.il │ │ │ │ │ ├── System.Windows.il │ │ │ │ │ ├── System.Xml.Linq.il │ │ │ │ │ ├── System.Xml.ReaderWriter.il │ │ │ │ │ ├── System.Xml.Serialization.il │ │ │ │ │ ├── System.Xml.XDocument.il │ │ │ │ │ ├── System.Xml.XPath.XDocument.il │ │ │ │ │ ├── System.Xml.XPath.il │ │ │ │ │ ├── System.Xml.XmlDocument.il │ │ │ │ │ ├── System.Xml.XmlSerializer.il │ │ │ │ │ ├── System.Xml.il │ │ │ │ │ ├── System.il │ │ │ │ │ ├── WindowsBase.il │ │ │ │ │ ├── mscorlib.il │ │ │ │ │ └── netstandard.il │ │ │ ├── 7.0.0 │ │ │ │ ├── Icon.png │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── Microsoft.NETCore.App.Ref.7.0.0.csproj │ │ │ │ ├── Microsoft.NETCore.App.versions.txt │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── data │ │ │ │ │ ├── FrameworkList.xml │ │ │ │ │ ├── PackageOverrides.txt │ │ │ │ │ └── PlatformManifest.txt │ │ │ │ ├── microsoft.netcore.app.ref.nuspec │ │ │ │ └── ref │ │ │ │ │ └── net7.0 │ │ │ │ │ ├── Microsoft.CSharp.il │ │ │ │ │ ├── Microsoft.VisualBasic.Core.il │ │ │ │ │ ├── Microsoft.VisualBasic.il │ │ │ │ │ ├── Microsoft.Win32.Primitives.il │ │ │ │ │ ├── Microsoft.Win32.Registry.il │ │ │ │ │ ├── System.AppContext.il │ │ │ │ │ ├── System.Buffers.il │ │ │ │ │ ├── System.Collections.Concurrent.il │ │ │ │ │ ├── System.Collections.Immutable.il │ │ │ │ │ ├── System.Collections.NonGeneric.il │ │ │ │ │ ├── System.Collections.Specialized.il │ │ │ │ │ ├── System.Collections.il │ │ │ │ │ ├── System.ComponentModel.Annotations.il │ │ │ │ │ ├── System.ComponentModel.DataAnnotations.il │ │ │ │ │ ├── System.ComponentModel.EventBasedAsync.il │ │ │ │ │ ├── System.ComponentModel.Primitives.il │ │ │ │ │ ├── System.ComponentModel.TypeConverter.il │ │ │ │ │ ├── System.ComponentModel.il │ │ │ │ │ ├── System.Configuration.il │ │ │ │ │ ├── System.Console.il │ │ │ │ │ ├── System.Core.il │ │ │ │ │ ├── System.Data.Common.il │ │ │ │ │ ├── System.Data.DataSetExtensions.il │ │ │ │ │ ├── System.Data.il │ │ │ │ │ ├── System.Diagnostics.Contracts.il │ │ │ │ │ ├── System.Diagnostics.Debug.il │ │ │ │ │ ├── System.Diagnostics.DiagnosticSource.il │ │ │ │ │ ├── System.Diagnostics.FileVersionInfo.il │ │ │ │ │ ├── System.Diagnostics.Process.il │ │ │ │ │ ├── System.Diagnostics.StackTrace.il │ │ │ │ │ ├── System.Diagnostics.TextWriterTraceListener.il │ │ │ │ │ ├── System.Diagnostics.Tools.il │ │ │ │ │ ├── System.Diagnostics.TraceSource.il │ │ │ │ │ ├── System.Diagnostics.Tracing.il │ │ │ │ │ ├── System.Drawing.Primitives.il │ │ │ │ │ ├── System.Drawing.il │ │ │ │ │ ├── System.Dynamic.Runtime.il │ │ │ │ │ ├── System.Formats.Asn1.il │ │ │ │ │ ├── System.Formats.Tar.il │ │ │ │ │ ├── System.Globalization.Calendars.il │ │ │ │ │ ├── System.Globalization.Extensions.il │ │ │ │ │ ├── System.Globalization.il │ │ │ │ │ ├── System.IO.Compression.Brotli.il │ │ │ │ │ ├── System.IO.Compression.FileSystem.il │ │ │ │ │ ├── System.IO.Compression.ZipFile.il │ │ │ │ │ ├── System.IO.Compression.il │ │ │ │ │ ├── System.IO.FileSystem.AccessControl.il │ │ │ │ │ ├── System.IO.FileSystem.DriveInfo.il │ │ │ │ │ ├── System.IO.FileSystem.Primitives.il │ │ │ │ │ ├── System.IO.FileSystem.Watcher.il │ │ │ │ │ ├── System.IO.FileSystem.il │ │ │ │ │ ├── System.IO.IsolatedStorage.il │ │ │ │ │ ├── System.IO.MemoryMappedFiles.il │ │ │ │ │ ├── System.IO.Pipes.AccessControl.il │ │ │ │ │ ├── System.IO.Pipes.il │ │ │ │ │ ├── System.IO.UnmanagedMemoryStream.il │ │ │ │ │ ├── System.IO.il │ │ │ │ │ ├── System.Linq.Expressions.il │ │ │ │ │ ├── System.Linq.Parallel.il │ │ │ │ │ ├── System.Linq.Queryable.il │ │ │ │ │ ├── System.Linq.il │ │ │ │ │ ├── System.Memory.il │ │ │ │ │ ├── System.Net.Http.Json.il │ │ │ │ │ ├── System.Net.Http.il │ │ │ │ │ ├── System.Net.HttpListener.il │ │ │ │ │ ├── System.Net.Mail.il │ │ │ │ │ ├── System.Net.NameResolution.il │ │ │ │ │ ├── System.Net.NetworkInformation.il │ │ │ │ │ ├── System.Net.Ping.il │ │ │ │ │ ├── System.Net.Primitives.il │ │ │ │ │ ├── System.Net.Quic.il │ │ │ │ │ ├── System.Net.Requests.il │ │ │ │ │ ├── System.Net.Security.il │ │ │ │ │ ├── System.Net.ServicePoint.il │ │ │ │ │ ├── System.Net.Sockets.il │ │ │ │ │ ├── System.Net.WebClient.il │ │ │ │ │ ├── System.Net.WebHeaderCollection.il │ │ │ │ │ ├── System.Net.WebProxy.il │ │ │ │ │ ├── System.Net.WebSockets.Client.il │ │ │ │ │ ├── System.Net.WebSockets.il │ │ │ │ │ ├── System.Net.il │ │ │ │ │ ├── System.Numerics.Vectors.il │ │ │ │ │ ├── System.Numerics.il │ │ │ │ │ ├── System.ObjectModel.il │ │ │ │ │ ├── System.Reflection.DispatchProxy.il │ │ │ │ │ ├── System.Reflection.Emit.ILGeneration.il │ │ │ │ │ ├── System.Reflection.Emit.Lightweight.il │ │ │ │ │ ├── System.Reflection.Emit.il │ │ │ │ │ ├── System.Reflection.Extensions.il │ │ │ │ │ ├── System.Reflection.Metadata.il │ │ │ │ │ ├── System.Reflection.Primitives.il │ │ │ │ │ ├── System.Reflection.TypeExtensions.il │ │ │ │ │ ├── System.Reflection.il │ │ │ │ │ ├── System.Resources.Reader.il │ │ │ │ │ ├── System.Resources.ResourceManager.il │ │ │ │ │ ├── System.Resources.Writer.il │ │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.il │ │ │ │ │ ├── System.Runtime.CompilerServices.VisualC.il │ │ │ │ │ ├── System.Runtime.Extensions.il │ │ │ │ │ ├── System.Runtime.Handles.il │ │ │ │ │ ├── System.Runtime.InteropServices.JavaScript.il │ │ │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.il │ │ │ │ │ ├── System.Runtime.InteropServices.il │ │ │ │ │ ├── System.Runtime.Intrinsics.il │ │ │ │ │ ├── System.Runtime.Loader.il │ │ │ │ │ ├── System.Runtime.Numerics.il │ │ │ │ │ ├── System.Runtime.Serialization.Formatters.il │ │ │ │ │ ├── System.Runtime.Serialization.Json.il │ │ │ │ │ ├── System.Runtime.Serialization.Primitives.il │ │ │ │ │ ├── System.Runtime.Serialization.Xml.il │ │ │ │ │ ├── System.Runtime.Serialization.il │ │ │ │ │ ├── System.Runtime.il │ │ │ │ │ ├── System.Security.AccessControl.il │ │ │ │ │ ├── System.Security.Claims.il │ │ │ │ │ ├── System.Security.Cryptography.Algorithms.il │ │ │ │ │ ├── System.Security.Cryptography.Cng.il │ │ │ │ │ ├── System.Security.Cryptography.Csp.il │ │ │ │ │ ├── System.Security.Cryptography.Encoding.il │ │ │ │ │ ├── System.Security.Cryptography.OpenSsl.il │ │ │ │ │ ├── System.Security.Cryptography.Primitives.il │ │ │ │ │ ├── System.Security.Cryptography.X509Certificates.il │ │ │ │ │ ├── System.Security.Cryptography.il │ │ │ │ │ ├── System.Security.Principal.Windows.il │ │ │ │ │ ├── System.Security.Principal.il │ │ │ │ │ ├── System.Security.SecureString.il │ │ │ │ │ ├── System.Security.il │ │ │ │ │ ├── System.ServiceModel.Web.il │ │ │ │ │ ├── System.ServiceProcess.il │ │ │ │ │ ├── System.Text.Encoding.CodePages.il │ │ │ │ │ ├── System.Text.Encoding.Extensions.il │ │ │ │ │ ├── System.Text.Encoding.il │ │ │ │ │ ├── System.Text.Encodings.Web.il │ │ │ │ │ ├── System.Text.Json.il │ │ │ │ │ ├── System.Text.RegularExpressions.il │ │ │ │ │ ├── System.Threading.Channels.il │ │ │ │ │ ├── System.Threading.Overlapped.il │ │ │ │ │ ├── System.Threading.Tasks.Dataflow.il │ │ │ │ │ ├── System.Threading.Tasks.Extensions.il │ │ │ │ │ ├── System.Threading.Tasks.Parallel.il │ │ │ │ │ ├── System.Threading.Tasks.il │ │ │ │ │ ├── System.Threading.Thread.il │ │ │ │ │ ├── System.Threading.ThreadPool.il │ │ │ │ │ ├── System.Threading.Timer.il │ │ │ │ │ ├── System.Threading.il │ │ │ │ │ ├── System.Transactions.Local.il │ │ │ │ │ ├── System.Transactions.il │ │ │ │ │ ├── System.ValueTuple.il │ │ │ │ │ ├── System.Web.HttpUtility.il │ │ │ │ │ ├── System.Web.il │ │ │ │ │ ├── System.Windows.il │ │ │ │ │ ├── System.Xml.Linq.il │ │ │ │ │ ├── System.Xml.ReaderWriter.il │ │ │ │ │ ├── System.Xml.Serialization.il │ │ │ │ │ ├── System.Xml.XDocument.il │ │ │ │ │ ├── System.Xml.XPath.XDocument.il │ │ │ │ │ ├── System.Xml.XPath.il │ │ │ │ │ ├── System.Xml.XmlDocument.il │ │ │ │ │ ├── System.Xml.XmlSerializer.il │ │ │ │ │ ├── System.Xml.il │ │ │ │ │ ├── System.il │ │ │ │ │ ├── WindowsBase.il │ │ │ │ │ ├── mscorlib.il │ │ │ │ │ └── netstandard.il │ │ │ ├── 8.0.0 │ │ │ │ ├── Icon.png │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── Microsoft.NETCore.App.Ref.8.0.0.csproj │ │ │ │ ├── Microsoft.NETCore.App.versions.txt │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── data │ │ │ │ │ ├── FrameworkList.xml │ │ │ │ │ ├── PackageOverrides.txt │ │ │ │ │ └── PlatformManifest.txt │ │ │ │ ├── microsoft.netcore.app.ref.nuspec │ │ │ │ ├── ref │ │ │ │ │ └── net8.0 │ │ │ │ │ │ ├── Microsoft.CSharp.il │ │ │ │ │ │ ├── Microsoft.VisualBasic.Core.il │ │ │ │ │ │ ├── Microsoft.VisualBasic.il │ │ │ │ │ │ ├── Microsoft.Win32.Primitives.il │ │ │ │ │ │ ├── Microsoft.Win32.Registry.il │ │ │ │ │ │ ├── System.AppContext.il │ │ │ │ │ │ ├── System.Buffers.il │ │ │ │ │ │ ├── System.Collections.Concurrent.il │ │ │ │ │ │ ├── System.Collections.Immutable.il │ │ │ │ │ │ ├── System.Collections.NonGeneric.il │ │ │ │ │ │ ├── System.Collections.Specialized.il │ │ │ │ │ │ ├── System.Collections.il │ │ │ │ │ │ ├── System.ComponentModel.Annotations.il │ │ │ │ │ │ ├── System.ComponentModel.DataAnnotations.il │ │ │ │ │ │ ├── System.ComponentModel.EventBasedAsync.il │ │ │ │ │ │ ├── System.ComponentModel.Primitives.il │ │ │ │ │ │ ├── System.ComponentModel.TypeConverter.il │ │ │ │ │ │ ├── System.ComponentModel.il │ │ │ │ │ │ ├── System.Configuration.il │ │ │ │ │ │ ├── System.Console.il │ │ │ │ │ │ ├── System.Core.il │ │ │ │ │ │ ├── System.Data.Common.il │ │ │ │ │ │ ├── System.Data.DataSetExtensions.il │ │ │ │ │ │ ├── System.Data.il │ │ │ │ │ │ ├── System.Diagnostics.Contracts.il │ │ │ │ │ │ ├── System.Diagnostics.Debug.il │ │ │ │ │ │ ├── System.Diagnostics.DiagnosticSource.il │ │ │ │ │ │ ├── System.Diagnostics.FileVersionInfo.il │ │ │ │ │ │ ├── System.Diagnostics.Process.il │ │ │ │ │ │ ├── System.Diagnostics.StackTrace.il │ │ │ │ │ │ ├── System.Diagnostics.TextWriterTraceListener.il │ │ │ │ │ │ ├── System.Diagnostics.Tools.il │ │ │ │ │ │ ├── System.Diagnostics.TraceSource.il │ │ │ │ │ │ ├── System.Diagnostics.Tracing.il │ │ │ │ │ │ ├── System.Drawing.Primitives.il │ │ │ │ │ │ ├── System.Drawing.il │ │ │ │ │ │ ├── System.Dynamic.Runtime.il │ │ │ │ │ │ ├── System.Formats.Asn1.il │ │ │ │ │ │ ├── System.Formats.Tar.il │ │ │ │ │ │ ├── System.Globalization.Calendars.il │ │ │ │ │ │ ├── System.Globalization.Extensions.il │ │ │ │ │ │ ├── System.Globalization.il │ │ │ │ │ │ ├── System.IO.Compression.Brotli.il │ │ │ │ │ │ ├── System.IO.Compression.FileSystem.il │ │ │ │ │ │ ├── System.IO.Compression.ZipFile.il │ │ │ │ │ │ ├── System.IO.Compression.il │ │ │ │ │ │ ├── System.IO.FileSystem.AccessControl.il │ │ │ │ │ │ ├── System.IO.FileSystem.DriveInfo.il │ │ │ │ │ │ ├── System.IO.FileSystem.Primitives.il │ │ │ │ │ │ ├── System.IO.FileSystem.Watcher.il │ │ │ │ │ │ ├── System.IO.FileSystem.il │ │ │ │ │ │ ├── System.IO.IsolatedStorage.il │ │ │ │ │ │ ├── System.IO.MemoryMappedFiles.il │ │ │ │ │ │ ├── System.IO.Pipes.AccessControl.il │ │ │ │ │ │ ├── System.IO.Pipes.il │ │ │ │ │ │ ├── System.IO.UnmanagedMemoryStream.il │ │ │ │ │ │ ├── System.IO.il │ │ │ │ │ │ ├── System.Linq.Expressions.il │ │ │ │ │ │ ├── System.Linq.Parallel.il │ │ │ │ │ │ ├── System.Linq.Queryable.il │ │ │ │ │ │ ├── System.Linq.il │ │ │ │ │ │ ├── System.Memory.il │ │ │ │ │ │ ├── System.Net.Http.Json.il │ │ │ │ │ │ ├── System.Net.Http.il │ │ │ │ │ │ ├── System.Net.HttpListener.il │ │ │ │ │ │ ├── System.Net.Mail.il │ │ │ │ │ │ ├── System.Net.NameResolution.il │ │ │ │ │ │ ├── System.Net.NetworkInformation.il │ │ │ │ │ │ ├── System.Net.Ping.il │ │ │ │ │ │ ├── System.Net.Primitives.il │ │ │ │ │ │ ├── System.Net.Quic.il │ │ │ │ │ │ ├── System.Net.Requests.il │ │ │ │ │ │ ├── System.Net.Security.il │ │ │ │ │ │ ├── System.Net.ServicePoint.il │ │ │ │ │ │ ├── System.Net.Sockets.il │ │ │ │ │ │ ├── System.Net.WebClient.il │ │ │ │ │ │ ├── System.Net.WebHeaderCollection.il │ │ │ │ │ │ ├── System.Net.WebProxy.il │ │ │ │ │ │ ├── System.Net.WebSockets.Client.il │ │ │ │ │ │ ├── System.Net.WebSockets.il │ │ │ │ │ │ ├── System.Net.il │ │ │ │ │ │ ├── System.Numerics.Vectors.il │ │ │ │ │ │ ├── System.Numerics.il │ │ │ │ │ │ ├── System.ObjectModel.il │ │ │ │ │ │ ├── System.Reflection.DispatchProxy.il │ │ │ │ │ │ ├── System.Reflection.Emit.ILGeneration.il │ │ │ │ │ │ ├── System.Reflection.Emit.Lightweight.il │ │ │ │ │ │ ├── System.Reflection.Emit.il │ │ │ │ │ │ ├── System.Reflection.Extensions.il │ │ │ │ │ │ ├── System.Reflection.Metadata.il │ │ │ │ │ │ ├── System.Reflection.Primitives.il │ │ │ │ │ │ ├── System.Reflection.TypeExtensions.il │ │ │ │ │ │ ├── System.Reflection.il │ │ │ │ │ │ ├── System.Resources.Reader.il │ │ │ │ │ │ ├── System.Resources.ResourceManager.il │ │ │ │ │ │ ├── System.Resources.Writer.il │ │ │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.il │ │ │ │ │ │ ├── System.Runtime.CompilerServices.VisualC.il │ │ │ │ │ │ ├── System.Runtime.Extensions.il │ │ │ │ │ │ ├── System.Runtime.Handles.il │ │ │ │ │ │ ├── System.Runtime.InteropServices.JavaScript.il │ │ │ │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.il │ │ │ │ │ │ ├── System.Runtime.InteropServices.il │ │ │ │ │ │ ├── System.Runtime.Intrinsics.il │ │ │ │ │ │ ├── System.Runtime.Loader.il │ │ │ │ │ │ ├── System.Runtime.Numerics.il │ │ │ │ │ │ ├── System.Runtime.Serialization.Formatters.il │ │ │ │ │ │ ├── System.Runtime.Serialization.Json.il │ │ │ │ │ │ ├── System.Runtime.Serialization.Primitives.il │ │ │ │ │ │ ├── System.Runtime.Serialization.Xml.il │ │ │ │ │ │ ├── System.Runtime.Serialization.il │ │ │ │ │ │ ├── System.Runtime.il │ │ │ │ │ │ ├── System.Security.AccessControl.il │ │ │ │ │ │ ├── System.Security.Claims.il │ │ │ │ │ │ ├── System.Security.Cryptography.Algorithms.il │ │ │ │ │ │ ├── System.Security.Cryptography.Cng.il │ │ │ │ │ │ ├── System.Security.Cryptography.Csp.il │ │ │ │ │ │ ├── System.Security.Cryptography.Encoding.il │ │ │ │ │ │ ├── System.Security.Cryptography.OpenSsl.il │ │ │ │ │ │ ├── System.Security.Cryptography.Primitives.il │ │ │ │ │ │ ├── System.Security.Cryptography.X509Certificates.il │ │ │ │ │ │ ├── System.Security.Cryptography.il │ │ │ │ │ │ ├── System.Security.Principal.Windows.il │ │ │ │ │ │ ├── System.Security.Principal.il │ │ │ │ │ │ ├── System.Security.SecureString.il │ │ │ │ │ │ ├── System.Security.il │ │ │ │ │ │ ├── System.ServiceModel.Web.il │ │ │ │ │ │ ├── System.ServiceProcess.il │ │ │ │ │ │ ├── System.Text.Encoding.CodePages.il │ │ │ │ │ │ ├── System.Text.Encoding.Extensions.il │ │ │ │ │ │ ├── System.Text.Encoding.il │ │ │ │ │ │ ├── System.Text.Encodings.Web.il │ │ │ │ │ │ ├── System.Text.Json.il │ │ │ │ │ │ ├── System.Text.RegularExpressions.il │ │ │ │ │ │ ├── System.Threading.Channels.il │ │ │ │ │ │ ├── System.Threading.Overlapped.il │ │ │ │ │ │ ├── System.Threading.Tasks.Dataflow.il │ │ │ │ │ │ ├── System.Threading.Tasks.Extensions.il │ │ │ │ │ │ ├── System.Threading.Tasks.Parallel.il │ │ │ │ │ │ ├── System.Threading.Tasks.il │ │ │ │ │ │ ├── System.Threading.Thread.il │ │ │ │ │ │ ├── System.Threading.ThreadPool.il │ │ │ │ │ │ ├── System.Threading.Timer.il │ │ │ │ │ │ ├── System.Threading.il │ │ │ │ │ │ ├── System.Transactions.Local.il │ │ │ │ │ │ ├── System.Transactions.il │ │ │ │ │ │ ├── System.ValueTuple.il │ │ │ │ │ │ ├── System.Web.HttpUtility.il │ │ │ │ │ │ ├── System.Web.il │ │ │ │ │ │ ├── System.Windows.il │ │ │ │ │ │ ├── System.Xml.Linq.il │ │ │ │ │ │ ├── System.Xml.ReaderWriter.il │ │ │ │ │ │ ├── System.Xml.Serialization.il │ │ │ │ │ │ ├── System.Xml.XDocument.il │ │ │ │ │ │ ├── System.Xml.XPath.XDocument.il │ │ │ │ │ │ ├── System.Xml.XPath.il │ │ │ │ │ │ ├── System.Xml.XmlDocument.il │ │ │ │ │ │ ├── System.Xml.XmlSerializer.il │ │ │ │ │ │ ├── System.Xml.il │ │ │ │ │ │ ├── System.il │ │ │ │ │ │ ├── WindowsBase.il │ │ │ │ │ │ ├── mscorlib.il │ │ │ │ │ │ └── netstandard.il │ │ │ │ └── useSharedDesignerContext.txt │ │ │ └── 9.0.0 │ │ │ │ ├── Icon.png │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── Microsoft.NETCore.App.Ref.9.0.0.csproj │ │ │ │ ├── Microsoft.NETCore.App.versions.txt │ │ │ │ ├── PACKAGE.md │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── data │ │ │ │ ├── FrameworkList.xml │ │ │ │ ├── PackageOverrides.txt │ │ │ │ └── PlatformManifest.txt │ │ │ │ ├── microsoft.netcore.app.ref.nuspec │ │ │ │ ├── ref │ │ │ │ └── net9.0 │ │ │ │ │ ├── Microsoft.CSharp.il │ │ │ │ │ ├── Microsoft.VisualBasic.Core.il │ │ │ │ │ ├── Microsoft.VisualBasic.il │ │ │ │ │ ├── Microsoft.Win32.Primitives.il │ │ │ │ │ ├── Microsoft.Win32.Registry.il │ │ │ │ │ ├── System.AppContext.il │ │ │ │ │ ├── System.Buffers.il │ │ │ │ │ ├── System.Collections.Concurrent.il │ │ │ │ │ ├── System.Collections.Immutable.il │ │ │ │ │ ├── System.Collections.NonGeneric.il │ │ │ │ │ ├── System.Collections.Specialized.il │ │ │ │ │ ├── System.Collections.il │ │ │ │ │ ├── System.ComponentModel.Annotations.il │ │ │ │ │ ├── System.ComponentModel.DataAnnotations.il │ │ │ │ │ ├── System.ComponentModel.EventBasedAsync.il │ │ │ │ │ ├── System.ComponentModel.Primitives.il │ │ │ │ │ ├── System.ComponentModel.TypeConverter.il │ │ │ │ │ ├── System.ComponentModel.il │ │ │ │ │ ├── System.Configuration.il │ │ │ │ │ ├── System.Console.il │ │ │ │ │ ├── System.Core.il │ │ │ │ │ ├── System.Data.Common.il │ │ │ │ │ ├── System.Data.DataSetExtensions.il │ │ │ │ │ ├── System.Data.il │ │ │ │ │ ├── System.Diagnostics.Contracts.il │ │ │ │ │ ├── System.Diagnostics.Debug.il │ │ │ │ │ ├── System.Diagnostics.DiagnosticSource.il │ │ │ │ │ ├── System.Diagnostics.FileVersionInfo.il │ │ │ │ │ ├── System.Diagnostics.Process.il │ │ │ │ │ ├── System.Diagnostics.StackTrace.il │ │ │ │ │ ├── System.Diagnostics.TextWriterTraceListener.il │ │ │ │ │ ├── System.Diagnostics.Tools.il │ │ │ │ │ ├── System.Diagnostics.TraceSource.il │ │ │ │ │ ├── System.Diagnostics.Tracing.il │ │ │ │ │ ├── System.Drawing.Primitives.il │ │ │ │ │ ├── System.Drawing.il │ │ │ │ │ ├── System.Dynamic.Runtime.il │ │ │ │ │ ├── System.Formats.Asn1.il │ │ │ │ │ ├── System.Formats.Tar.il │ │ │ │ │ ├── System.Globalization.Calendars.il │ │ │ │ │ ├── System.Globalization.Extensions.il │ │ │ │ │ ├── System.Globalization.il │ │ │ │ │ ├── System.IO.Compression.Brotli.il │ │ │ │ │ ├── System.IO.Compression.FileSystem.il │ │ │ │ │ ├── System.IO.Compression.ZipFile.il │ │ │ │ │ ├── System.IO.Compression.il │ │ │ │ │ ├── System.IO.FileSystem.AccessControl.il │ │ │ │ │ ├── System.IO.FileSystem.DriveInfo.il │ │ │ │ │ ├── System.IO.FileSystem.Primitives.il │ │ │ │ │ ├── System.IO.FileSystem.Watcher.il │ │ │ │ │ ├── System.IO.FileSystem.il │ │ │ │ │ ├── System.IO.IsolatedStorage.il │ │ │ │ │ ├── System.IO.MemoryMappedFiles.il │ │ │ │ │ ├── System.IO.Pipelines.il │ │ │ │ │ ├── System.IO.Pipes.AccessControl.il │ │ │ │ │ ├── System.IO.Pipes.il │ │ │ │ │ ├── System.IO.UnmanagedMemoryStream.il │ │ │ │ │ ├── System.IO.il │ │ │ │ │ ├── System.Linq.Expressions.il │ │ │ │ │ ├── System.Linq.Parallel.il │ │ │ │ │ ├── System.Linq.Queryable.il │ │ │ │ │ ├── System.Linq.il │ │ │ │ │ ├── System.Memory.il │ │ │ │ │ ├── System.Net.Http.Json.il │ │ │ │ │ ├── System.Net.Http.il │ │ │ │ │ ├── System.Net.HttpListener.il │ │ │ │ │ ├── System.Net.Mail.il │ │ │ │ │ ├── System.Net.NameResolution.il │ │ │ │ │ ├── System.Net.NetworkInformation.il │ │ │ │ │ ├── System.Net.Ping.il │ │ │ │ │ ├── System.Net.Primitives.il │ │ │ │ │ ├── System.Net.Quic.il │ │ │ │ │ ├── System.Net.Requests.il │ │ │ │ │ ├── System.Net.Security.il │ │ │ │ │ ├── System.Net.ServicePoint.il │ │ │ │ │ ├── System.Net.Sockets.il │ │ │ │ │ ├── System.Net.WebClient.il │ │ │ │ │ ├── System.Net.WebHeaderCollection.il │ │ │ │ │ ├── System.Net.WebProxy.il │ │ │ │ │ ├── System.Net.WebSockets.Client.il │ │ │ │ │ ├── System.Net.WebSockets.il │ │ │ │ │ ├── System.Net.il │ │ │ │ │ ├── System.Numerics.Vectors.il │ │ │ │ │ ├── System.Numerics.il │ │ │ │ │ ├── System.ObjectModel.il │ │ │ │ │ ├── System.Reflection.DispatchProxy.il │ │ │ │ │ ├── System.Reflection.Emit.ILGeneration.il │ │ │ │ │ ├── System.Reflection.Emit.Lightweight.il │ │ │ │ │ ├── System.Reflection.Emit.il │ │ │ │ │ ├── System.Reflection.Extensions.il │ │ │ │ │ ├── System.Reflection.Metadata.il │ │ │ │ │ ├── System.Reflection.Primitives.il │ │ │ │ │ ├── System.Reflection.TypeExtensions.il │ │ │ │ │ ├── System.Reflection.il │ │ │ │ │ ├── System.Resources.Reader.il │ │ │ │ │ ├── System.Resources.ResourceManager.il │ │ │ │ │ ├── System.Resources.Writer.il │ │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.il │ │ │ │ │ ├── System.Runtime.CompilerServices.VisualC.il │ │ │ │ │ ├── System.Runtime.Extensions.il │ │ │ │ │ ├── System.Runtime.Handles.il │ │ │ │ │ ├── System.Runtime.InteropServices.JavaScript.il │ │ │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.il │ │ │ │ │ ├── System.Runtime.InteropServices.il │ │ │ │ │ ├── System.Runtime.Intrinsics.il │ │ │ │ │ ├── System.Runtime.Loader.il │ │ │ │ │ ├── System.Runtime.Numerics.il │ │ │ │ │ ├── System.Runtime.Serialization.Formatters.il │ │ │ │ │ ├── System.Runtime.Serialization.Json.il │ │ │ │ │ ├── System.Runtime.Serialization.Primitives.il │ │ │ │ │ ├── System.Runtime.Serialization.Xml.il │ │ │ │ │ ├── System.Runtime.Serialization.il │ │ │ │ │ ├── System.Runtime.il │ │ │ │ │ ├── System.Security.AccessControl.il │ │ │ │ │ ├── System.Security.Claims.il │ │ │ │ │ ├── System.Security.Cryptography.Algorithms.il │ │ │ │ │ ├── System.Security.Cryptography.Cng.il │ │ │ │ │ ├── System.Security.Cryptography.Csp.il │ │ │ │ │ ├── System.Security.Cryptography.Encoding.il │ │ │ │ │ ├── System.Security.Cryptography.OpenSsl.il │ │ │ │ │ ├── System.Security.Cryptography.Primitives.il │ │ │ │ │ ├── System.Security.Cryptography.X509Certificates.il │ │ │ │ │ ├── System.Security.Cryptography.il │ │ │ │ │ ├── System.Security.Principal.Windows.il │ │ │ │ │ ├── System.Security.Principal.il │ │ │ │ │ ├── System.Security.SecureString.il │ │ │ │ │ ├── System.Security.il │ │ │ │ │ ├── System.ServiceModel.Web.il │ │ │ │ │ ├── System.ServiceProcess.il │ │ │ │ │ ├── System.Text.Encoding.CodePages.il │ │ │ │ │ ├── System.Text.Encoding.Extensions.il │ │ │ │ │ ├── System.Text.Encoding.il │ │ │ │ │ ├── System.Text.Encodings.Web.il │ │ │ │ │ ├── System.Text.Json.il │ │ │ │ │ ├── System.Text.RegularExpressions.il │ │ │ │ │ ├── System.Threading.Channels.il │ │ │ │ │ ├── System.Threading.Overlapped.il │ │ │ │ │ ├── System.Threading.Tasks.Dataflow.il │ │ │ │ │ ├── System.Threading.Tasks.Extensions.il │ │ │ │ │ ├── System.Threading.Tasks.Parallel.il │ │ │ │ │ ├── System.Threading.Tasks.il │ │ │ │ │ ├── System.Threading.Thread.il │ │ │ │ │ ├── System.Threading.ThreadPool.il │ │ │ │ │ ├── System.Threading.Timer.il │ │ │ │ │ ├── System.Threading.il │ │ │ │ │ ├── System.Transactions.Local.il │ │ │ │ │ ├── System.Transactions.il │ │ │ │ │ ├── System.ValueTuple.il │ │ │ │ │ ├── System.Web.HttpUtility.il │ │ │ │ │ ├── System.Web.il │ │ │ │ │ ├── System.Windows.il │ │ │ │ │ ├── System.Xml.Linq.il │ │ │ │ │ ├── System.Xml.ReaderWriter.il │ │ │ │ │ ├── System.Xml.Serialization.il │ │ │ │ │ ├── System.Xml.XDocument.il │ │ │ │ │ ├── System.Xml.XPath.XDocument.il │ │ │ │ │ ├── System.Xml.XPath.il │ │ │ │ │ ├── System.Xml.XmlDocument.il │ │ │ │ │ ├── System.Xml.XmlSerializer.il │ │ │ │ │ ├── System.Xml.il │ │ │ │ │ ├── System.il │ │ │ │ │ ├── WindowsBase.il │ │ │ │ │ ├── mscorlib.il │ │ │ │ │ └── netstandard.il │ │ │ │ └── useSharedDesignerContext.txt │ │ ├── netstandard.library.netframework │ │ │ └── 2.0.1-servicing-26011-01 │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── NETStandard.Library.NETFramework.2.0.1-servicing-26011-01.csproj │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── build │ │ │ │ ├── NETStandard.Library.NETFramework.common.props │ │ │ │ ├── NETStandard.Library.NETFramework.common.targets │ │ │ │ ├── net461 │ │ │ │ │ ├── NETStandard.Library.NETFramework.props │ │ │ │ │ ├── NETStandard.Library.NETFramework.targets │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Microsoft.Win32.Primitives.il │ │ │ │ │ │ ├── System.AppContext.il │ │ │ │ │ │ ├── System.Collections.Concurrent.il │ │ │ │ │ │ ├── System.Collections.NonGeneric.il │ │ │ │ │ │ ├── System.Collections.Specialized.il │ │ │ │ │ │ ├── System.Collections.il │ │ │ │ │ │ ├── System.ComponentModel.EventBasedAsync.il │ │ │ │ │ │ ├── System.ComponentModel.Primitives.il │ │ │ │ │ │ ├── System.ComponentModel.TypeConverter.il │ │ │ │ │ │ ├── System.ComponentModel.il │ │ │ │ │ │ ├── System.Console.il │ │ │ │ │ │ ├── System.Data.Common.il │ │ │ │ │ │ ├── System.Diagnostics.Contracts.il │ │ │ │ │ │ ├── System.Diagnostics.Debug.il │ │ │ │ │ │ ├── System.Diagnostics.FileVersionInfo.il │ │ │ │ │ │ ├── System.Diagnostics.Process.il │ │ │ │ │ │ ├── System.Diagnostics.StackTrace.il │ │ │ │ │ │ ├── System.Diagnostics.TextWriterTraceListener.il │ │ │ │ │ │ ├── System.Diagnostics.Tools.il │ │ │ │ │ │ ├── System.Diagnostics.TraceSource.il │ │ │ │ │ │ ├── System.Diagnostics.Tracing.il │ │ │ │ │ │ ├── System.Drawing.Primitives.il │ │ │ │ │ │ ├── System.Dynamic.Runtime.il │ │ │ │ │ │ ├── System.Globalization.Calendars.il │ │ │ │ │ │ ├── System.Globalization.Extensions.il │ │ │ │ │ │ ├── System.Globalization.il │ │ │ │ │ │ ├── System.IO.Compression.ZipFile.il │ │ │ │ │ │ ├── System.IO.Compression.il │ │ │ │ │ │ ├── System.IO.FileSystem.DriveInfo.il │ │ │ │ │ │ ├── System.IO.FileSystem.Primitives.il │ │ │ │ │ │ ├── System.IO.FileSystem.Watcher.il │ │ │ │ │ │ ├── System.IO.FileSystem.il │ │ │ │ │ │ ├── System.IO.IsolatedStorage.il │ │ │ │ │ │ ├── System.IO.MemoryMappedFiles.il │ │ │ │ │ │ ├── System.IO.Pipes.il │ │ │ │ │ │ ├── System.IO.UnmanagedMemoryStream.il │ │ │ │ │ │ ├── System.IO.il │ │ │ │ │ │ ├── System.Linq.Expressions.il │ │ │ │ │ │ ├── System.Linq.Parallel.il │ │ │ │ │ │ ├── System.Linq.Queryable.il │ │ │ │ │ │ ├── System.Linq.il │ │ │ │ │ │ ├── System.Net.Http.il │ │ │ │ │ │ ├── System.Net.NameResolution.il │ │ │ │ │ │ ├── System.Net.NetworkInformation.il │ │ │ │ │ │ ├── System.Net.Ping.il │ │ │ │ │ │ ├── System.Net.Primitives.il │ │ │ │ │ │ ├── System.Net.Requests.il │ │ │ │ │ │ ├── System.Net.Security.il │ │ │ │ │ │ ├── System.Net.Sockets.il │ │ │ │ │ │ ├── System.Net.WebHeaderCollection.il │ │ │ │ │ │ ├── System.Net.WebSockets.Client.il │ │ │ │ │ │ ├── System.Net.WebSockets.il │ │ │ │ │ │ ├── System.ObjectModel.il │ │ │ │ │ │ ├── System.Reflection.Extensions.il │ │ │ │ │ │ ├── System.Reflection.Primitives.il │ │ │ │ │ │ ├── System.Reflection.il │ │ │ │ │ │ ├── System.Resources.Reader.il │ │ │ │ │ │ ├── System.Resources.ResourceManager.il │ │ │ │ │ │ ├── System.Resources.Writer.il │ │ │ │ │ │ ├── System.Runtime.CompilerServices.VisualC.il │ │ │ │ │ │ ├── System.Runtime.Extensions.il │ │ │ │ │ │ ├── System.Runtime.Handles.il │ │ │ │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.il │ │ │ │ │ │ ├── System.Runtime.InteropServices.il │ │ │ │ │ │ ├── System.Runtime.Numerics.il │ │ │ │ │ │ ├── System.Runtime.Serialization.Formatters.il │ │ │ │ │ │ ├── System.Runtime.Serialization.Json.il │ │ │ │ │ │ ├── System.Runtime.Serialization.Primitives.il │ │ │ │ │ │ ├── System.Runtime.Serialization.Xml.il │ │ │ │ │ │ ├── System.Runtime.il │ │ │ │ │ │ ├── System.Security.Claims.il │ │ │ │ │ │ ├── System.Security.Cryptography.Algorithms.il │ │ │ │ │ │ ├── System.Security.Cryptography.Csp.il │ │ │ │ │ │ ├── System.Security.Cryptography.Encoding.il │ │ │ │ │ │ ├── System.Security.Cryptography.Primitives.il │ │ │ │ │ │ ├── System.Security.Cryptography.X509Certificates.il │ │ │ │ │ │ ├── System.Security.Principal.il │ │ │ │ │ │ ├── System.Security.SecureString.il │ │ │ │ │ │ ├── System.Text.Encoding.Extensions.il │ │ │ │ │ │ ├── System.Text.Encoding.il │ │ │ │ │ │ ├── System.Text.RegularExpressions.il │ │ │ │ │ │ ├── System.Threading.Overlapped.il │ │ │ │ │ │ ├── System.Threading.Tasks.Parallel.il │ │ │ │ │ │ ├── System.Threading.Tasks.il │ │ │ │ │ │ ├── System.Threading.Thread.il │ │ │ │ │ │ ├── System.Threading.ThreadPool.il │ │ │ │ │ │ ├── System.Threading.Timer.il │ │ │ │ │ │ ├── System.Threading.il │ │ │ │ │ │ ├── System.ValueTuple.il │ │ │ │ │ │ ├── System.Xml.ReaderWriter.il │ │ │ │ │ │ ├── System.Xml.XDocument.il │ │ │ │ │ │ ├── System.Xml.XPath.XDocument.il │ │ │ │ │ │ ├── System.Xml.XPath.il │ │ │ │ │ │ ├── System.Xml.XmlDocument.il │ │ │ │ │ │ ├── System.Xml.XmlSerializer.il │ │ │ │ │ │ ├── netfx.force.conflicts.il │ │ │ │ │ │ └── netstandard.il │ │ │ │ ├── net462 │ │ │ │ │ ├── NETStandard.Library.NETFramework.props │ │ │ │ │ ├── NETStandard.Library.NETFramework.targets │ │ │ │ │ └── lib │ │ │ │ │ │ └── System.Runtime.InteropServices.RuntimeInformation.il │ │ │ │ ├── net47 │ │ │ │ │ ├── NETStandard.Library.NETFramework.props │ │ │ │ │ ├── NETStandard.Library.NETFramework.targets │ │ │ │ │ └── lib │ │ │ │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.il │ │ │ │ │ │ ├── System.Security.Cryptography.Algorithms.il │ │ │ │ │ │ └── System.ValueTuple.il │ │ │ │ └── net471 │ │ │ │ │ ├── _._ │ │ │ │ │ └── lib │ │ │ │ │ ├── System.Data.Common.il │ │ │ │ │ ├── System.Diagnostics.StackTrace.il │ │ │ │ │ ├── System.Diagnostics.Tracing.il │ │ │ │ │ ├── System.Globalization.Extensions.il │ │ │ │ │ ├── System.IO.Compression.il │ │ │ │ │ ├── System.Net.Http.il │ │ │ │ │ ├── System.Net.Sockets.il │ │ │ │ │ ├── System.Runtime.Serialization.Primitives.il │ │ │ │ │ ├── System.Security.Cryptography.Algorithms.il │ │ │ │ │ ├── System.Security.SecureString.il │ │ │ │ │ ├── System.Threading.Overlapped.il │ │ │ │ │ ├── System.Xml.XPath.XDocument.il │ │ │ │ │ └── netfx.force.conflicts.il │ │ │ │ ├── netstandard.library.netframework.nuspec │ │ │ │ ├── useSharedDesignerContext.txt │ │ │ │ └── version.txt │ │ ├── netstandard.library.ref │ │ │ └── 2.1.0 │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── NETStandard.Library.Ref.2.1.0.csproj │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── data │ │ │ │ ├── FrameworkList.xml │ │ │ │ └── PackageOverrides.txt │ │ │ │ ├── netstandard.library.ref.nuspec │ │ │ │ └── ref │ │ │ │ └── netstandard2.1 │ │ │ │ ├── Microsoft.Win32.Primitives.il │ │ │ │ ├── System.AppContext.il │ │ │ │ ├── System.Buffers.il │ │ │ │ ├── System.Collections.Concurrent.il │ │ │ │ ├── System.Collections.NonGeneric.il │ │ │ │ ├── System.Collections.Specialized.il │ │ │ │ ├── System.Collections.il │ │ │ │ ├── System.ComponentModel.Composition.il │ │ │ │ ├── System.ComponentModel.EventBasedAsync.il │ │ │ │ ├── System.ComponentModel.Primitives.il │ │ │ │ ├── System.ComponentModel.TypeConverter.il │ │ │ │ ├── System.ComponentModel.il │ │ │ │ ├── System.Console.il │ │ │ │ ├── System.Core.il │ │ │ │ ├── System.Data.Common.il │ │ │ │ ├── System.Data.il │ │ │ │ ├── System.Diagnostics.Contracts.il │ │ │ │ ├── System.Diagnostics.Debug.il │ │ │ │ ├── System.Diagnostics.FileVersionInfo.il │ │ │ │ ├── System.Diagnostics.Process.il │ │ │ │ ├── System.Diagnostics.StackTrace.il │ │ │ │ ├── System.Diagnostics.TextWriterTraceListener.il │ │ │ │ ├── System.Diagnostics.Tools.il │ │ │ │ ├── System.Diagnostics.TraceSource.il │ │ │ │ ├── System.Diagnostics.Tracing.il │ │ │ │ ├── System.Drawing.Primitives.il │ │ │ │ ├── System.Drawing.il │ │ │ │ ├── System.Dynamic.Runtime.il │ │ │ │ ├── System.Globalization.Calendars.il │ │ │ │ ├── System.Globalization.Extensions.il │ │ │ │ ├── System.Globalization.il │ │ │ │ ├── System.IO.Compression.FileSystem.il │ │ │ │ ├── System.IO.Compression.ZipFile.il │ │ │ │ ├── System.IO.Compression.il │ │ │ │ ├── System.IO.FileSystem.DriveInfo.il │ │ │ │ ├── System.IO.FileSystem.Primitives.il │ │ │ │ ├── System.IO.FileSystem.Watcher.il │ │ │ │ ├── System.IO.FileSystem.il │ │ │ │ ├── System.IO.IsolatedStorage.il │ │ │ │ ├── System.IO.MemoryMappedFiles.il │ │ │ │ ├── System.IO.Pipes.il │ │ │ │ ├── System.IO.UnmanagedMemoryStream.il │ │ │ │ ├── System.IO.il │ │ │ │ ├── System.Linq.Expressions.il │ │ │ │ ├── System.Linq.Parallel.il │ │ │ │ ├── System.Linq.Queryable.il │ │ │ │ ├── System.Linq.il │ │ │ │ ├── System.Memory.il │ │ │ │ ├── System.Net.Http.il │ │ │ │ ├── System.Net.NameResolution.il │ │ │ │ ├── System.Net.NetworkInformation.il │ │ │ │ ├── System.Net.Ping.il │ │ │ │ ├── System.Net.Primitives.il │ │ │ │ ├── System.Net.Requests.il │ │ │ │ ├── System.Net.Security.il │ │ │ │ ├── System.Net.Sockets.il │ │ │ │ ├── System.Net.WebHeaderCollection.il │ │ │ │ ├── System.Net.WebSockets.Client.il │ │ │ │ ├── System.Net.WebSockets.il │ │ │ │ ├── System.Net.il │ │ │ │ ├── System.Numerics.Vectors.il │ │ │ │ ├── System.Numerics.il │ │ │ │ ├── System.ObjectModel.il │ │ │ │ ├── System.Reflection.DispatchProxy.il │ │ │ │ ├── System.Reflection.Emit.ILGeneration.il │ │ │ │ ├── System.Reflection.Emit.Lightweight.il │ │ │ │ ├── System.Reflection.Emit.il │ │ │ │ ├── System.Reflection.Extensions.il │ │ │ │ ├── System.Reflection.Primitives.il │ │ │ │ ├── System.Reflection.il │ │ │ │ ├── System.Resources.Reader.il │ │ │ │ ├── System.Resources.ResourceManager.il │ │ │ │ ├── System.Resources.Writer.il │ │ │ │ ├── System.Runtime.CompilerServices.VisualC.il │ │ │ │ ├── System.Runtime.Extensions.il │ │ │ │ ├── System.Runtime.Handles.il │ │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.il │ │ │ │ ├── System.Runtime.InteropServices.il │ │ │ │ ├── System.Runtime.Numerics.il │ │ │ │ ├── System.Runtime.Serialization.Formatters.il │ │ │ │ ├── System.Runtime.Serialization.Json.il │ │ │ │ ├── System.Runtime.Serialization.Primitives.il │ │ │ │ ├── System.Runtime.Serialization.Xml.il │ │ │ │ ├── System.Runtime.Serialization.il │ │ │ │ ├── System.Runtime.il │ │ │ │ ├── System.Security.Claims.il │ │ │ │ ├── System.Security.Cryptography.Algorithms.il │ │ │ │ ├── System.Security.Cryptography.Csp.il │ │ │ │ ├── System.Security.Cryptography.Encoding.il │ │ │ │ ├── System.Security.Cryptography.Primitives.il │ │ │ │ ├── System.Security.Cryptography.X509Certificates.il │ │ │ │ ├── System.Security.Principal.il │ │ │ │ ├── System.Security.SecureString.il │ │ │ │ ├── System.ServiceModel.Web.il │ │ │ │ ├── System.Text.Encoding.Extensions.il │ │ │ │ ├── System.Text.Encoding.il │ │ │ │ ├── System.Text.RegularExpressions.il │ │ │ │ ├── System.Threading.Overlapped.il │ │ │ │ ├── System.Threading.Tasks.Extensions.il │ │ │ │ ├── System.Threading.Tasks.Parallel.il │ │ │ │ ├── System.Threading.Tasks.il │ │ │ │ ├── System.Threading.Thread.il │ │ │ │ ├── System.Threading.ThreadPool.il │ │ │ │ ├── System.Threading.Timer.il │ │ │ │ ├── System.Threading.il │ │ │ │ ├── System.Transactions.il │ │ │ │ ├── System.ValueTuple.il │ │ │ │ ├── System.Web.il │ │ │ │ ├── System.Windows.il │ │ │ │ ├── System.Xml.Linq.il │ │ │ │ ├── System.Xml.ReaderWriter.il │ │ │ │ ├── System.Xml.Serialization.il │ │ │ │ ├── System.Xml.XDocument.il │ │ │ │ ├── System.Xml.XPath.XDocument.il │ │ │ │ ├── System.Xml.XPath.il │ │ │ │ ├── System.Xml.XmlDocument.il │ │ │ │ ├── System.Xml.XmlSerializer.il │ │ │ │ ├── System.Xml.il │ │ │ │ ├── System.il │ │ │ │ ├── mscorlib.il │ │ │ │ ├── netstandard.il │ │ │ │ └── netstandard.xml │ │ └── netstandard.library │ │ │ └── 2.0.3 │ │ │ ├── LICENSE.TXT │ │ │ ├── NETStandard.Library.2.0.3.csproj │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ ├── build │ │ │ └── netstandard2.0 │ │ │ │ ├── NETStandard.Library.targets │ │ │ │ └── ref │ │ │ │ ├── Microsoft.Win32.Primitives.il │ │ │ │ ├── System.AppContext.il │ │ │ │ ├── System.Collections.Concurrent.il │ │ │ │ ├── System.Collections.NonGeneric.il │ │ │ │ ├── System.Collections.Specialized.il │ │ │ │ ├── System.Collections.il │ │ │ │ ├── System.ComponentModel.Composition.il │ │ │ │ ├── System.ComponentModel.EventBasedAsync.il │ │ │ │ ├── System.ComponentModel.Primitives.il │ │ │ │ ├── System.ComponentModel.TypeConverter.il │ │ │ │ ├── System.ComponentModel.il │ │ │ │ ├── System.Console.il │ │ │ │ ├── System.Core.il │ │ │ │ ├── System.Data.Common.il │ │ │ │ ├── System.Data.il │ │ │ │ ├── System.Diagnostics.Contracts.il │ │ │ │ ├── System.Diagnostics.Debug.il │ │ │ │ ├── System.Diagnostics.FileVersionInfo.il │ │ │ │ ├── System.Diagnostics.Process.il │ │ │ │ ├── System.Diagnostics.StackTrace.il │ │ │ │ ├── System.Diagnostics.TextWriterTraceListener.il │ │ │ │ ├── System.Diagnostics.Tools.il │ │ │ │ ├── System.Diagnostics.TraceSource.il │ │ │ │ ├── System.Diagnostics.Tracing.il │ │ │ │ ├── System.Drawing.Primitives.il │ │ │ │ ├── System.Drawing.il │ │ │ │ ├── System.Dynamic.Runtime.il │ │ │ │ ├── System.Globalization.Calendars.il │ │ │ │ ├── System.Globalization.Extensions.il │ │ │ │ ├── System.Globalization.il │ │ │ │ ├── System.IO.Compression.FileSystem.il │ │ │ │ ├── System.IO.Compression.ZipFile.il │ │ │ │ ├── System.IO.Compression.il │ │ │ │ ├── System.IO.FileSystem.DriveInfo.il │ │ │ │ ├── System.IO.FileSystem.Primitives.il │ │ │ │ ├── System.IO.FileSystem.Watcher.il │ │ │ │ ├── System.IO.FileSystem.il │ │ │ │ ├── System.IO.IsolatedStorage.il │ │ │ │ ├── System.IO.MemoryMappedFiles.il │ │ │ │ ├── System.IO.Pipes.il │ │ │ │ ├── System.IO.UnmanagedMemoryStream.il │ │ │ │ ├── System.IO.il │ │ │ │ ├── System.Linq.Expressions.il │ │ │ │ ├── System.Linq.Parallel.il │ │ │ │ ├── System.Linq.Queryable.il │ │ │ │ ├── System.Linq.il │ │ │ │ ├── System.Net.Http.il │ │ │ │ ├── System.Net.NameResolution.il │ │ │ │ ├── System.Net.NetworkInformation.il │ │ │ │ ├── System.Net.Ping.il │ │ │ │ ├── System.Net.Primitives.il │ │ │ │ ├── System.Net.Requests.il │ │ │ │ ├── System.Net.Security.il │ │ │ │ ├── System.Net.Sockets.il │ │ │ │ ├── System.Net.WebHeaderCollection.il │ │ │ │ ├── System.Net.WebSockets.Client.il │ │ │ │ ├── System.Net.WebSockets.il │ │ │ │ ├── System.Net.il │ │ │ │ ├── System.Numerics.il │ │ │ │ ├── System.ObjectModel.il │ │ │ │ ├── System.Reflection.Extensions.il │ │ │ │ ├── System.Reflection.Primitives.il │ │ │ │ ├── System.Reflection.il │ │ │ │ ├── System.Resources.Reader.il │ │ │ │ ├── System.Resources.ResourceManager.il │ │ │ │ ├── System.Resources.Writer.il │ │ │ │ ├── System.Runtime.CompilerServices.VisualC.il │ │ │ │ ├── System.Runtime.Extensions.il │ │ │ │ ├── System.Runtime.Handles.il │ │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.il │ │ │ │ ├── System.Runtime.InteropServices.il │ │ │ │ ├── System.Runtime.Numerics.il │ │ │ │ ├── System.Runtime.Serialization.Formatters.il │ │ │ │ ├── System.Runtime.Serialization.Json.il │ │ │ │ ├── System.Runtime.Serialization.Primitives.il │ │ │ │ ├── System.Runtime.Serialization.Xml.il │ │ │ │ ├── System.Runtime.Serialization.il │ │ │ │ ├── System.Runtime.il │ │ │ │ ├── System.Security.Claims.il │ │ │ │ ├── System.Security.Cryptography.Algorithms.il │ │ │ │ ├── System.Security.Cryptography.Csp.il │ │ │ │ ├── System.Security.Cryptography.Encoding.il │ │ │ │ ├── System.Security.Cryptography.Primitives.il │ │ │ │ ├── System.Security.Cryptography.X509Certificates.il │ │ │ │ ├── System.Security.Principal.il │ │ │ │ ├── System.Security.SecureString.il │ │ │ │ ├── System.ServiceModel.Web.il │ │ │ │ ├── System.Text.Encoding.Extensions.il │ │ │ │ ├── System.Text.Encoding.il │ │ │ │ ├── System.Text.RegularExpressions.il │ │ │ │ ├── System.Threading.Overlapped.il │ │ │ │ ├── System.Threading.Tasks.Parallel.il │ │ │ │ ├── System.Threading.Tasks.il │ │ │ │ ├── System.Threading.Thread.il │ │ │ │ ├── System.Threading.ThreadPool.il │ │ │ │ ├── System.Threading.Timer.il │ │ │ │ ├── System.Threading.il │ │ │ │ ├── System.Transactions.il │ │ │ │ ├── System.ValueTuple.il │ │ │ │ ├── System.Web.il │ │ │ │ ├── System.Windows.il │ │ │ │ ├── System.Xml.Linq.il │ │ │ │ ├── System.Xml.ReaderWriter.il │ │ │ │ ├── System.Xml.Serialization.il │ │ │ │ ├── System.Xml.XDocument.il │ │ │ │ ├── System.Xml.XPath.XDocument.il │ │ │ │ ├── System.Xml.XPath.il │ │ │ │ ├── System.Xml.XmlDocument.il │ │ │ │ ├── System.Xml.XmlSerializer.il │ │ │ │ ├── System.Xml.il │ │ │ │ ├── System.il │ │ │ │ ├── mscorlib.il │ │ │ │ └── netstandard.il │ │ │ ├── lib │ │ │ └── netstandard1.0 │ │ │ │ └── _._ │ │ │ └── netstandard.library.nuspec │ ├── build-il.sh │ └── targetPacks.proj └── textOnlyPackages │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── src │ ├── fsharp.net.sdk │ │ └── 1.0.4-bundled-0100 │ │ │ ├── FSharp.NET.Sdk.1.0.4-bundled-0100.csproj │ │ │ ├── Sdk │ │ │ ├── Sdk.OnRestore.targets │ │ │ ├── Sdk.props │ │ │ └── Sdk.targets │ │ │ └── fsharp.net.sdk.nuspec │ ├── microbuild.core │ │ └── 0.3.0 │ │ │ ├── MicroBuild.Core.0.3.0.csproj │ │ │ ├── build │ │ │ ├── MicroBuild.Core.props │ │ │ ├── MicroBuild.Core.targets │ │ │ └── MicroBuild.Plugin.props │ │ │ ├── buildCrossTargeting │ │ │ ├── MicroBuild.Core.props │ │ │ └── MicroBuild.Core.targets │ │ │ └── microbuild.core.nuspec │ ├── microsoft.build.notargets │ │ └── 3.7.0 │ │ │ ├── MSBuild-NuGet-Icon.png │ │ │ ├── Microsoft.Build.NoTargets.3.7.0.csproj │ │ │ ├── Sdk │ │ │ ├── DisableCopyFilesMarkedCopyLocal.targets │ │ │ ├── Sdk.props │ │ │ └── Sdk.targets │ │ │ └── microsoft.build.notargets.nuspec │ ├── microsoft.build.traversal │ │ └── 3.4.0 │ │ │ ├── MSBuild-NuGet-Icon.png │ │ │ ├── Microsoft.Build.Traversal.3.4.0.csproj │ │ │ ├── Sdk │ │ │ ├── Sdk.props │ │ │ └── Sdk.targets │ │ │ └── microsoft.build.traversal.nuspec │ ├── microsoft.codeanalysis.collections │ │ └── 5.0.0-1.25277.114 │ │ │ ├── Icon.png │ │ │ ├── Microsoft.CodeAnalysis.Collections.5.0.0-1.25277.114.csproj │ │ │ ├── ThirdPartyNotices.rtf │ │ │ ├── build │ │ │ └── Microsoft.CodeAnalysis.Collections.targets │ │ │ ├── contentFiles │ │ │ └── cs │ │ │ │ ├── net9.0 │ │ │ │ ├── .editorconfig │ │ │ │ ├── Extensions │ │ │ │ │ ├── ICollectionExtensions.cs │ │ │ │ │ ├── IEnumerableExtensions.cs │ │ │ │ │ └── ImmutableArrayExtensions.cs │ │ │ │ ├── Internal │ │ │ │ │ ├── ArraySortHelper.cs │ │ │ │ │ ├── BitHelper.cs │ │ │ │ │ ├── HashHelpers.cs │ │ │ │ │ ├── ICollectionCalls.cs │ │ │ │ │ ├── ICollectionCalls`1.cs │ │ │ │ │ ├── ICollectionDebugView`1.cs │ │ │ │ │ ├── IDictionaryCalls.cs │ │ │ │ │ ├── IDictionaryDebugView`2.cs │ │ │ │ │ ├── IEnumerableCalls.cs │ │ │ │ │ ├── IEnumerableCalls`1.cs │ │ │ │ │ ├── IListCalls.cs │ │ │ │ │ ├── InsertionBehavior.cs │ │ │ │ │ ├── RoslynUnsafe.cs │ │ │ │ │ ├── SR.cs │ │ │ │ │ ├── SegmentedArrayHelper.cs │ │ │ │ │ ├── SegmentedArraySegment`1.cs │ │ │ │ │ ├── SegmentedHashSetEqualityComparer`1.cs │ │ │ │ │ └── ThrowHelper.cs │ │ │ │ ├── OneOrMany.cs │ │ │ │ ├── RoslynEnumerable.cs │ │ │ │ ├── RoslynImmutableInterlocked.cs │ │ │ │ ├── Segmented │ │ │ │ │ ├── ImmutableSegmentedDictionary.cs │ │ │ │ │ ├── ImmutableSegmentedDictionary`2+Builder+KeyCollection.cs │ │ │ │ │ ├── ImmutableSegmentedDictionary`2+Builder+PrivateMarshal.cs │ │ │ │ │ ├── ImmutableSegmentedDictionary`2+Builder+ValueCollection.cs │ │ │ │ │ ├── ImmutableSegmentedDictionary`2+Builder.cs │ │ │ │ │ ├── ImmutableSegmentedDictionary`2+Enumerator.cs │ │ │ │ │ ├── ImmutableSegmentedDictionary`2+KeyCollection+Enumerator.cs │ │ │ │ │ ├── ImmutableSegmentedDictionary`2+KeyCollection.cs │ │ │ │ │ ├── ImmutableSegmentedDictionary`2+PrivateMarshal.cs │ │ │ │ │ ├── ImmutableSegmentedDictionary`2+ValueBuilder.cs │ │ │ │ │ ├── ImmutableSegmentedDictionary`2+ValueCollection+Enumerator.cs │ │ │ │ │ ├── ImmutableSegmentedDictionary`2+ValueCollection.cs │ │ │ │ │ ├── ImmutableSegmentedDictionary`2.cs │ │ │ │ │ ├── ImmutableSegmentedHashSet.cs │ │ │ │ │ ├── ImmutableSegmentedHashSet`1+Builder.cs │ │ │ │ │ ├── ImmutableSegmentedHashSet`1+Enumerator.cs │ │ │ │ │ ├── ImmutableSegmentedHashSet`1+PrivateMarshal.cs │ │ │ │ │ ├── ImmutableSegmentedHashSet`1+ValueBuilder.cs │ │ │ │ │ ├── ImmutableSegmentedHashSet`1.cs │ │ │ │ │ ├── ImmutableSegmentedList.cs │ │ │ │ │ ├── ImmutableSegmentedListExtensions.cs │ │ │ │ │ ├── ImmutableSegmentedList`1+Builder.cs │ │ │ │ │ ├── ImmutableSegmentedList`1+Enumerator.cs │ │ │ │ │ ├── ImmutableSegmentedList`1+PrivateMarshal.cs │ │ │ │ │ ├── ImmutableSegmentedList`1+ValueBuilder.cs │ │ │ │ │ ├── ImmutableSegmentedList`1.cs │ │ │ │ │ ├── SegmentedArray.cs │ │ │ │ │ ├── SegmentedArray`1+PrivateMarshal.cs │ │ │ │ │ ├── SegmentedArray`1.cs │ │ │ │ │ ├── SegmentedCollectionsMarshal.cs │ │ │ │ │ ├── SegmentedDictionary`2+PrivateMarshal.cs │ │ │ │ │ ├── SegmentedDictionary`2.cs │ │ │ │ │ ├── SegmentedHashSet`1.cs │ │ │ │ │ └── SegmentedList`1.cs │ │ │ │ ├── Specialized │ │ │ │ │ ├── SpecializedCollections.Empty.Collection.cs │ │ │ │ │ ├── SpecializedCollections.Empty.Dictionary.cs │ │ │ │ │ ├── SpecializedCollections.Empty.Enumerable.cs │ │ │ │ │ ├── SpecializedCollections.Empty.Enumerator.cs │ │ │ │ │ ├── SpecializedCollections.Empty.Enumerator`1.cs │ │ │ │ │ ├── SpecializedCollections.Empty.List.cs │ │ │ │ │ ├── SpecializedCollections.Empty.Set.cs │ │ │ │ │ ├── SpecializedCollections.Empty.cs │ │ │ │ │ ├── SpecializedCollections.ReadOnly.Collection.cs │ │ │ │ │ ├── SpecializedCollections.ReadOnly.Enumerable`1.cs │ │ │ │ │ ├── SpecializedCollections.ReadOnly.Enumerable`2.cs │ │ │ │ │ ├── SpecializedCollections.ReadOnly.Set.cs │ │ │ │ │ ├── SpecializedCollections.Singleton.Collection`1.cs │ │ │ │ │ ├── SpecializedCollections.Singleton.Enumerator`1.cs │ │ │ │ │ └── SpecializedCollections.cs │ │ │ │ ├── TemporaryArrayExtensions.cs │ │ │ │ └── TemporaryArray`1.cs │ │ │ │ └── netstandard2.0 │ │ │ │ ├── .editorconfig │ │ │ │ ├── Extensions │ │ │ │ ├── ICollectionExtensions.cs │ │ │ │ ├── IEnumerableExtensions.cs │ │ │ │ └── ImmutableArrayExtensions.cs │ │ │ │ ├── Internal │ │ │ │ ├── ArraySortHelper.cs │ │ │ │ ├── BitHelper.cs │ │ │ │ ├── HashHelpers.cs │ │ │ │ ├── ICollectionCalls.cs │ │ │ │ ├── ICollectionCalls`1.cs │ │ │ │ ├── ICollectionDebugView`1.cs │ │ │ │ ├── IDictionaryCalls.cs │ │ │ │ ├── IDictionaryDebugView`2.cs │ │ │ │ ├── IEnumerableCalls.cs │ │ │ │ ├── IEnumerableCalls`1.cs │ │ │ │ ├── IListCalls.cs │ │ │ │ ├── InsertionBehavior.cs │ │ │ │ ├── RoslynUnsafe.cs │ │ │ │ ├── SR.cs │ │ │ │ ├── SegmentedArrayHelper.cs │ │ │ │ ├── SegmentedArraySegment`1.cs │ │ │ │ ├── SegmentedHashSetEqualityComparer`1.cs │ │ │ │ └── ThrowHelper.cs │ │ │ │ ├── OneOrMany.cs │ │ │ │ ├── RoslynEnumerable.cs │ │ │ │ ├── RoslynImmutableInterlocked.cs │ │ │ │ ├── Segmented │ │ │ │ ├── ImmutableSegmentedDictionary.cs │ │ │ │ ├── ImmutableSegmentedDictionary`2+Builder+KeyCollection.cs │ │ │ │ ├── ImmutableSegmentedDictionary`2+Builder+PrivateMarshal.cs │ │ │ │ ├── ImmutableSegmentedDictionary`2+Builder+ValueCollection.cs │ │ │ │ ├── ImmutableSegmentedDictionary`2+Builder.cs │ │ │ │ ├── ImmutableSegmentedDictionary`2+Enumerator.cs │ │ │ │ ├── ImmutableSegmentedDictionary`2+KeyCollection+Enumerator.cs │ │ │ │ ├── ImmutableSegmentedDictionary`2+KeyCollection.cs │ │ │ │ ├── ImmutableSegmentedDictionary`2+PrivateMarshal.cs │ │ │ │ ├── ImmutableSegmentedDictionary`2+ValueBuilder.cs │ │ │ │ ├── ImmutableSegmentedDictionary`2+ValueCollection+Enumerator.cs │ │ │ │ ├── ImmutableSegmentedDictionary`2+ValueCollection.cs │ │ │ │ ├── ImmutableSegmentedDictionary`2.cs │ │ │ │ ├── ImmutableSegmentedHashSet.cs │ │ │ │ ├── ImmutableSegmentedHashSet`1+Builder.cs │ │ │ │ ├── ImmutableSegmentedHashSet`1+Enumerator.cs │ │ │ │ ├── ImmutableSegmentedHashSet`1+PrivateMarshal.cs │ │ │ │ ├── ImmutableSegmentedHashSet`1+ValueBuilder.cs │ │ │ │ ├── ImmutableSegmentedHashSet`1.cs │ │ │ │ ├── ImmutableSegmentedList.cs │ │ │ │ ├── ImmutableSegmentedListExtensions.cs │ │ │ │ ├── ImmutableSegmentedList`1+Builder.cs │ │ │ │ ├── ImmutableSegmentedList`1+Enumerator.cs │ │ │ │ ├── ImmutableSegmentedList`1+PrivateMarshal.cs │ │ │ │ ├── ImmutableSegmentedList`1+ValueBuilder.cs │ │ │ │ ├── ImmutableSegmentedList`1.cs │ │ │ │ ├── SegmentedArray.cs │ │ │ │ ├── SegmentedArray`1+PrivateMarshal.cs │ │ │ │ ├── SegmentedArray`1.cs │ │ │ │ ├── SegmentedCollectionsMarshal.cs │ │ │ │ ├── SegmentedDictionary`2+PrivateMarshal.cs │ │ │ │ ├── SegmentedDictionary`2.cs │ │ │ │ ├── SegmentedHashSet`1.cs │ │ │ │ └── SegmentedList`1.cs │ │ │ │ ├── Specialized │ │ │ │ ├── SpecializedCollections.Empty.Collection.cs │ │ │ │ ├── SpecializedCollections.Empty.Dictionary.cs │ │ │ │ ├── SpecializedCollections.Empty.Enumerable.cs │ │ │ │ ├── SpecializedCollections.Empty.Enumerator.cs │ │ │ │ ├── SpecializedCollections.Empty.Enumerator`1.cs │ │ │ │ ├── SpecializedCollections.Empty.List.cs │ │ │ │ ├── SpecializedCollections.Empty.Set.cs │ │ │ │ ├── SpecializedCollections.Empty.cs │ │ │ │ ├── SpecializedCollections.ReadOnly.Collection.cs │ │ │ │ ├── SpecializedCollections.ReadOnly.Enumerable`1.cs │ │ │ │ ├── SpecializedCollections.ReadOnly.Enumerable`2.cs │ │ │ │ ├── SpecializedCollections.ReadOnly.Set.cs │ │ │ │ ├── SpecializedCollections.Singleton.Collection`1.cs │ │ │ │ ├── SpecializedCollections.Singleton.Enumerator`1.cs │ │ │ │ └── SpecializedCollections.cs │ │ │ │ ├── TemporaryArrayExtensions.cs │ │ │ │ └── TemporaryArray`1.cs │ │ │ └── microsoft.codeanalysis.collections.nuspec │ ├── microsoft.codeanalysis.contracts │ │ └── 5.0.0-1.25277.114 │ │ │ ├── Icon.png │ │ │ ├── Microsoft.CodeAnalysis.Contracts.5.0.0-1.25277.114.csproj │ │ │ ├── ThirdPartyNotices.rtf │ │ │ ├── build │ │ │ └── Microsoft.CodeAnalysis.Contracts.targets │ │ │ ├── contentFiles │ │ │ └── cs │ │ │ │ ├── net8.0 │ │ │ │ ├── .editorconfig │ │ │ │ ├── CollectionBuilderAttribute.cs │ │ │ │ ├── CompilerFeatureRequiredAttribute.cs │ │ │ │ ├── Contract.InterpolatedStringHandlers.cs │ │ │ │ ├── Contract.cs │ │ │ │ ├── ErrorReporting │ │ │ │ │ ├── FailFast.cs │ │ │ │ │ └── FatalError.cs │ │ │ │ ├── ExceptionUtilities.cs │ │ │ │ ├── ExperimentalAttribute.cs │ │ │ │ ├── IReadOnlySet.cs │ │ │ │ ├── Index.cs │ │ │ │ ├── InterpolatedStringHandlerArgumentAttribute.cs │ │ │ │ ├── InterpolatedStringHandlerAttribute.cs │ │ │ │ ├── IsExternalInit.cs │ │ │ │ ├── NonCopyableAttribute.cs │ │ │ │ ├── NonDefaultableAttribute.cs │ │ │ │ ├── NullableAttributes.cs │ │ │ │ ├── Range.cs │ │ │ │ ├── RequiredMemberAttribute.cs │ │ │ │ └── SetsRequiredMembersAttribute.cs │ │ │ │ ├── net9.0 │ │ │ │ ├── .editorconfig │ │ │ │ ├── CollectionBuilderAttribute.cs │ │ │ │ ├── CompilerFeatureRequiredAttribute.cs │ │ │ │ ├── Contract.InterpolatedStringHandlers.cs │ │ │ │ ├── Contract.cs │ │ │ │ ├── ErrorReporting │ │ │ │ │ ├── FailFast.cs │ │ │ │ │ └── FatalError.cs │ │ │ │ ├── ExceptionUtilities.cs │ │ │ │ ├── ExperimentalAttribute.cs │ │ │ │ ├── IReadOnlySet.cs │ │ │ │ ├── Index.cs │ │ │ │ ├── InterpolatedStringHandlerArgumentAttribute.cs │ │ │ │ ├── InterpolatedStringHandlerAttribute.cs │ │ │ │ ├── IsExternalInit.cs │ │ │ │ ├── NonCopyableAttribute.cs │ │ │ │ ├── NonDefaultableAttribute.cs │ │ │ │ ├── NullableAttributes.cs │ │ │ │ ├── Range.cs │ │ │ │ ├── RequiredMemberAttribute.cs │ │ │ │ └── SetsRequiredMembersAttribute.cs │ │ │ │ └── netstandard2.0 │ │ │ │ ├── .editorconfig │ │ │ │ ├── CollectionBuilderAttribute.cs │ │ │ │ ├── CompilerFeatureRequiredAttribute.cs │ │ │ │ ├── Contract.InterpolatedStringHandlers.cs │ │ │ │ ├── Contract.cs │ │ │ │ ├── ErrorReporting │ │ │ │ ├── FailFast.cs │ │ │ │ └── FatalError.cs │ │ │ │ ├── ExceptionUtilities.cs │ │ │ │ ├── ExperimentalAttribute.cs │ │ │ │ ├── IReadOnlySet.cs │ │ │ │ ├── Index.cs │ │ │ │ ├── InterpolatedStringHandlerArgumentAttribute.cs │ │ │ │ ├── InterpolatedStringHandlerAttribute.cs │ │ │ │ ├── IsExternalInit.cs │ │ │ │ ├── NonCopyableAttribute.cs │ │ │ │ ├── NonDefaultableAttribute.cs │ │ │ │ ├── NullableAttributes.cs │ │ │ │ ├── Range.cs │ │ │ │ ├── RequiredMemberAttribute.cs │ │ │ │ └── SetsRequiredMembersAttribute.cs │ │ │ └── microsoft.codeanalysis.contracts.nuspec │ ├── microsoft.codeanalysis.pooledobjects │ │ └── 5.0.0-1.25277.114 │ │ │ ├── Icon.png │ │ │ ├── Microsoft.CodeAnalysis.PooledObjects.5.0.0-1.25277.114.csproj │ │ │ ├── ThirdPartyNotices.rtf │ │ │ ├── build │ │ │ └── Microsoft.CodeAnalysis.PooledObjects.targets │ │ │ ├── contentFiles │ │ │ └── cs │ │ │ │ └── netstandard2.0 │ │ │ │ ├── .editorconfig │ │ │ │ ├── ArrayBuilder.Enumerator.cs │ │ │ │ ├── ArrayBuilder.cs │ │ │ │ ├── ArrayBuilderExtensions.cs │ │ │ │ ├── IPooled.cs │ │ │ │ ├── ObjectPool`1.cs │ │ │ │ ├── PooledDelegates.cs │ │ │ │ ├── PooledDictionary.cs │ │ │ │ ├── PooledDisposer.cs │ │ │ │ ├── PooledHashSet.cs │ │ │ │ └── PooledStringBuilder.cs │ │ │ └── microsoft.codeanalysis.pooledobjects.nuspec │ ├── microsoft.docker.sdk │ │ └── 1.1.0 │ │ │ ├── Microsoft.Docker.Sdk.1.1.0.csproj │ │ │ ├── Sdk │ │ │ ├── Sdk.props │ │ │ └── Sdk.targets │ │ │ └── microsoft.docker.sdk.nuspec │ ├── microsoft.extensions.commandlineutils.sources │ │ └── 3.0.0-preview6.19253.5 │ │ │ ├── contentFiles │ │ │ └── cs │ │ │ │ └── netstandard1.0 │ │ │ │ └── shared │ │ │ │ ├── CommandLine │ │ │ │ ├── AnsiConsole.cs │ │ │ │ ├── CommandArgument.cs │ │ │ │ ├── CommandLineApplication.cs │ │ │ │ ├── CommandOption.cs │ │ │ │ ├── CommandOptionType.cs │ │ │ │ └── CommandParsingException.cs │ │ │ │ └── Utilities │ │ │ │ ├── ArgumentEscaper.cs │ │ │ │ └── DotNetMuxer.cs │ │ │ ├── microsoft.extensions.commandlineutils.sources.3.0.0-preview6.19253.5.csproj │ │ │ └── microsoft.extensions.commandlineutils.sources.nuspec │ ├── microsoft.netcore.platforms │ │ ├── 1.1.0 │ │ │ ├── LICENSE.TXT │ │ │ ├── Microsoft.NETCore.Platforms.1.1.0.csproj │ │ │ ├── ThirdPartyNotices.txt │ │ │ ├── lib │ │ │ │ └── netstandard1.0 │ │ │ │ │ └── _._ │ │ │ ├── microsoft.netcore.platforms.nuspec │ │ │ └── runtime.json │ │ └── 5.0.0 │ │ │ ├── Icon.png │ │ │ ├── LICENSE.TXT │ │ │ ├── Microsoft.NETCore.Platforms.5.0.0.csproj │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ ├── lib │ │ │ └── netstandard1.0 │ │ │ │ └── _._ │ │ │ ├── microsoft.netcore.platforms.nuspec │ │ │ ├── runtime.json │ │ │ ├── useSharedDesignerContext.txt │ │ │ └── version.txt │ ├── microsoft.private.intellisense │ │ └── 10.0.0-preview-20251006.1 │ │ │ ├── IntellisenseFiles │ │ │ ├── net-10.0 │ │ │ │ └── 1033 │ │ │ │ │ ├── Microsoft.Bcl.Cryptography.xml │ │ │ │ │ ├── Microsoft.Bcl.TimeProvider.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.AzureAIInference.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.NLP.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.Quality.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.Reporting.Azure.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.Reporting.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.Safety.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.OpenAI.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.xml │ │ │ │ │ ├── Microsoft.Extensions.AmbientMetadata.Application.xml │ │ │ │ │ ├── Microsoft.Extensions.AsyncState.xml │ │ │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Caching.Hybrid.xml │ │ │ │ │ ├── Microsoft.Extensions.Caching.Memory.xml │ │ │ │ │ ├── Microsoft.Extensions.Caching.SqlServer.xml │ │ │ │ │ ├── Microsoft.Extensions.Caching.StackExchangeRedis.xml │ │ │ │ │ ├── Microsoft.Extensions.Compliance.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Compliance.Redaction.xml │ │ │ │ │ ├── Microsoft.Extensions.Compliance.Testing.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Binder.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.CommandLine.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Ini.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Json.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.KeyPerFile.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.UserSecrets.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Xml.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.xml │ │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.AutoActivation.xml │ │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.xml │ │ │ │ │ ├── Microsoft.Extensions.DependencyModel.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Common.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.Probes.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.ResourceMonitoring.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.Testing.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.xml │ │ │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.FileProviders.Composite.xml │ │ │ │ │ ├── Microsoft.Extensions.FileProviders.Embedded.xml │ │ │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.xml │ │ │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.xml │ │ │ │ │ ├── Microsoft.Extensions.Hosting.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Hosting.Systemd.xml │ │ │ │ │ ├── Microsoft.Extensions.Hosting.Testing.xml │ │ │ │ │ ├── Microsoft.Extensions.Hosting.WindowsServices.xml │ │ │ │ │ ├── Microsoft.Extensions.Hosting.xml │ │ │ │ │ ├── Microsoft.Extensions.Http.Diagnostics.xml │ │ │ │ │ ├── Microsoft.Extensions.Http.Resilience.xml │ │ │ │ │ ├── Microsoft.Extensions.Http.xml │ │ │ │ │ ├── Microsoft.Extensions.Localization.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Localization.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.AzureAppServices.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.Configuration.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.Console.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.Debug.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.EventLog.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.EventSource.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.TraceSource.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.xml │ │ │ │ │ ├── Microsoft.Extensions.ObjectPool.DependencyInjection.xml │ │ │ │ │ ├── Microsoft.Extensions.ObjectPool.xml │ │ │ │ │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.xml │ │ │ │ │ ├── Microsoft.Extensions.Options.Contextual.xml │ │ │ │ │ ├── Microsoft.Extensions.Options.DataAnnotations.xml │ │ │ │ │ ├── Microsoft.Extensions.Options.xml │ │ │ │ │ ├── Microsoft.Extensions.Primitives.xml │ │ │ │ │ ├── Microsoft.Extensions.Resilience.xml │ │ │ │ │ ├── Microsoft.Extensions.Telemetry.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Telemetry.xml │ │ │ │ │ ├── Microsoft.Extensions.TimeProvider.Testing.xml │ │ │ │ │ ├── Microsoft.Extensions.Validation.xml │ │ │ │ │ ├── Microsoft.Extensions.VectorData.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.WebEncoders.xml │ │ │ │ │ ├── Microsoft.Win32.Registry.AccessControl.xml │ │ │ │ │ ├── Microsoft.Win32.SystemEvents.xml │ │ │ │ │ ├── System.CodeDom.xml │ │ │ │ │ ├── System.Collections.Immutable.xml │ │ │ │ │ ├── System.CommandLine.Hosting.xml │ │ │ │ │ ├── System.CommandLine.NamingConventionBinder.xml │ │ │ │ │ ├── System.CommandLine.xml │ │ │ │ │ ├── System.ComponentModel.Composition.Registration.xml │ │ │ │ │ ├── System.ComponentModel.Composition.xml │ │ │ │ │ ├── System.Composition.AttributedModel.xml │ │ │ │ │ ├── System.Composition.Convention.xml │ │ │ │ │ ├── System.Composition.Hosting.xml │ │ │ │ │ ├── System.Composition.Runtime.xml │ │ │ │ │ ├── System.Composition.TypedParts.xml │ │ │ │ │ ├── System.Configuration.ConfigurationManager.xml │ │ │ │ │ ├── System.Data.Odbc.xml │ │ │ │ │ ├── System.Data.OleDb.xml │ │ │ │ │ ├── System.Data.SqlClient.xml │ │ │ │ │ ├── System.Diagnostics.DiagnosticSource.xml │ │ │ │ │ ├── System.Diagnostics.EventLog.xml │ │ │ │ │ ├── System.Diagnostics.PerformanceCounter.xml │ │ │ │ │ ├── System.DirectoryServices.AccountManagement.xml │ │ │ │ │ ├── System.DirectoryServices.Protocols.xml │ │ │ │ │ ├── System.DirectoryServices.xml │ │ │ │ │ ├── System.Drawing.Common.xml │ │ │ │ │ ├── System.Formats.Asn1.xml │ │ │ │ │ ├── System.Formats.Cbor.xml │ │ │ │ │ ├── System.Formats.Nrbf.xml │ │ │ │ │ ├── System.IO.Hashing.xml │ │ │ │ │ ├── System.IO.Packaging.xml │ │ │ │ │ ├── System.IO.Pipelines.xml │ │ │ │ │ ├── System.IO.Ports.xml │ │ │ │ │ ├── System.Json.xml │ │ │ │ │ ├── System.Linq.AsyncEnumerable.xml │ │ │ │ │ ├── System.Management.xml │ │ │ │ │ ├── System.Memory.Data.xml │ │ │ │ │ ├── System.Net.Http.Json.xml │ │ │ │ │ ├── System.Net.Http.WinHttpHandler.xml │ │ │ │ │ ├── System.Net.ServerSentEvents.xml │ │ │ │ │ ├── System.Net.WebSockets.WebSocketProtocol.xml │ │ │ │ │ ├── System.Numerics.Tensors.xml │ │ │ │ │ ├── System.Private.Windows.GdiPlus.xml │ │ │ │ │ ├── System.Reflection.Context.xml │ │ │ │ │ ├── System.Reflection.Metadata.xml │ │ │ │ │ ├── System.Reflection.MetadataLoadContext.xml │ │ │ │ │ ├── System.Resources.Extensions.xml │ │ │ │ │ ├── System.Runtime.Caching.xml │ │ │ │ │ ├── System.Runtime.Serialization.Formatters.xml │ │ │ │ │ ├── System.Runtime.Serialization.Schema.xml │ │ │ │ │ ├── System.Security.AccessControl.xml │ │ │ │ │ ├── System.Security.Cryptography.Cose.xml │ │ │ │ │ ├── System.Security.Cryptography.Pkcs.xml │ │ │ │ │ ├── System.Security.Cryptography.ProtectedData.xml │ │ │ │ │ ├── System.Security.Cryptography.Xml.xml │ │ │ │ │ ├── System.Security.Permissions.xml │ │ │ │ │ ├── System.ServiceModel.Http.xml │ │ │ │ │ ├── System.ServiceModel.NetFramingBase.xml │ │ │ │ │ ├── System.ServiceModel.NetNamedPipe.xml │ │ │ │ │ ├── System.ServiceModel.NetTcp.xml │ │ │ │ │ ├── System.ServiceModel.Primitives.xml │ │ │ │ │ ├── System.ServiceModel.Syndication.xml │ │ │ │ │ ├── System.ServiceModel.UnixDomainSocket.xml │ │ │ │ │ ├── System.ServiceModel.xml │ │ │ │ │ ├── System.ServiceProcess.ServiceController.xml │ │ │ │ │ ├── System.Speech.xml │ │ │ │ │ ├── System.Text.Encoding.CodePages.xml │ │ │ │ │ ├── System.Text.Encodings.Web.xml │ │ │ │ │ ├── System.Text.Json.xml │ │ │ │ │ ├── System.Threading.AccessControl.xml │ │ │ │ │ ├── System.Threading.Channels.xml │ │ │ │ │ ├── System.Threading.Tasks.Dataflow.xml │ │ │ │ │ ├── System.Windows.Extensions.xml │ │ │ │ │ └── System.Xml.XPath.XmlDocument.xml │ │ │ ├── net-8.0 │ │ │ │ └── 1033 │ │ │ │ │ ├── Microsoft.Bcl.Cryptography.xml │ │ │ │ │ ├── Microsoft.Bcl.Memory.xml │ │ │ │ │ ├── Microsoft.Bcl.TimeProvider.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.AzureAIInference.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.NLP.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.Quality.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.Reporting.Azure.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.Reporting.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.Safety.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.OpenAI.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.xml │ │ │ │ │ ├── Microsoft.Extensions.AmbientMetadata.Application.xml │ │ │ │ │ ├── Microsoft.Extensions.AsyncState.xml │ │ │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Caching.Hybrid.xml │ │ │ │ │ ├── Microsoft.Extensions.Caching.Memory.xml │ │ │ │ │ ├── Microsoft.Extensions.Compliance.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Compliance.Redaction.xml │ │ │ │ │ ├── Microsoft.Extensions.Compliance.Testing.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Binder.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.CommandLine.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Ini.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Json.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.UserSecrets.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Xml.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.xml │ │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.AutoActivation.xml │ │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.xml │ │ │ │ │ ├── Microsoft.Extensions.DependencyModel.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Common.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.Probes.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.ResourceMonitoring.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.Testing.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.xml │ │ │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.FileProviders.Composite.xml │ │ │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.xml │ │ │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.xml │ │ │ │ │ ├── Microsoft.Extensions.Hosting.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Hosting.Systemd.xml │ │ │ │ │ ├── Microsoft.Extensions.Hosting.Testing.xml │ │ │ │ │ ├── Microsoft.Extensions.Hosting.WindowsServices.xml │ │ │ │ │ ├── Microsoft.Extensions.Hosting.xml │ │ │ │ │ ├── Microsoft.Extensions.Http.Diagnostics.xml │ │ │ │ │ ├── Microsoft.Extensions.Http.Resilience.xml │ │ │ │ │ ├── Microsoft.Extensions.Http.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.Configuration.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.Console.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.Debug.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.EventLog.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.EventSource.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.TraceSource.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.xml │ │ │ │ │ ├── Microsoft.Extensions.ObjectPool.DependencyInjection.xml │ │ │ │ │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.xml │ │ │ │ │ ├── Microsoft.Extensions.Options.Contextual.xml │ │ │ │ │ ├── Microsoft.Extensions.Options.DataAnnotations.xml │ │ │ │ │ ├── Microsoft.Extensions.Options.xml │ │ │ │ │ ├── Microsoft.Extensions.Primitives.xml │ │ │ │ │ ├── Microsoft.Extensions.Resilience.xml │ │ │ │ │ ├── Microsoft.Extensions.Telemetry.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Telemetry.xml │ │ │ │ │ ├── Microsoft.Extensions.TimeProvider.Testing.xml │ │ │ │ │ ├── Microsoft.Extensions.VectorData.Abstractions.xml │ │ │ │ │ ├── Microsoft.Win32.Registry.AccessControl.xml │ │ │ │ │ ├── Microsoft.Win32.SystemEvents.xml │ │ │ │ │ ├── System.CodeDom.xml │ │ │ │ │ ├── System.Collections.Immutable.xml │ │ │ │ │ ├── System.CommandLine.Hosting.xml │ │ │ │ │ ├── System.CommandLine.NamingConventionBinder.xml │ │ │ │ │ ├── System.CommandLine.xml │ │ │ │ │ ├── System.ComponentModel.Composition.Registration.xml │ │ │ │ │ ├── System.ComponentModel.Composition.xml │ │ │ │ │ ├── System.Composition.AttributedModel.xml │ │ │ │ │ ├── System.Composition.Convention.xml │ │ │ │ │ ├── System.Composition.Hosting.xml │ │ │ │ │ ├── System.Composition.Runtime.xml │ │ │ │ │ ├── System.Composition.TypedParts.xml │ │ │ │ │ ├── System.Configuration.ConfigurationManager.xml │ │ │ │ │ ├── System.Data.Odbc.xml │ │ │ │ │ ├── System.Data.OleDb.xml │ │ │ │ │ ├── System.Data.SqlClient.xml │ │ │ │ │ ├── System.Diagnostics.DiagnosticSource.xml │ │ │ │ │ ├── System.Diagnostics.EventLog.xml │ │ │ │ │ ├── System.Diagnostics.PerformanceCounter.xml │ │ │ │ │ ├── System.DirectoryServices.AccountManagement.xml │ │ │ │ │ ├── System.DirectoryServices.Protocols.xml │ │ │ │ │ ├── System.DirectoryServices.xml │ │ │ │ │ ├── System.Drawing.Common.xml │ │ │ │ │ ├── System.Formats.Asn1.xml │ │ │ │ │ ├── System.Formats.Cbor.xml │ │ │ │ │ ├── System.Formats.Nrbf.xml │ │ │ │ │ ├── System.IO.Hashing.xml │ │ │ │ │ ├── System.IO.Packaging.xml │ │ │ │ │ ├── System.IO.Pipelines.xml │ │ │ │ │ ├── System.IO.Ports.xml │ │ │ │ │ ├── System.Json.xml │ │ │ │ │ ├── System.Linq.AsyncEnumerable.xml │ │ │ │ │ ├── System.Management.xml │ │ │ │ │ ├── System.Memory.Data.xml │ │ │ │ │ ├── System.Net.Http.Json.xml │ │ │ │ │ ├── System.Net.Http.WinHttpHandler.xml │ │ │ │ │ ├── System.Net.ServerSentEvents.xml │ │ │ │ │ ├── System.Net.WebSockets.WebSocketProtocol.xml │ │ │ │ │ ├── System.Numerics.Tensors.xml │ │ │ │ │ ├── System.Private.Windows.GdiPlus.xml │ │ │ │ │ ├── System.Reflection.Context.xml │ │ │ │ │ ├── System.Reflection.Metadata.xml │ │ │ │ │ ├── System.Reflection.MetadataLoadContext.xml │ │ │ │ │ ├── System.Resources.Extensions.xml │ │ │ │ │ ├── System.Runtime.Caching.xml │ │ │ │ │ ├── System.Runtime.Serialization.Formatters.xml │ │ │ │ │ ├── System.Runtime.Serialization.Schema.xml │ │ │ │ │ ├── System.Security.AccessControl.xml │ │ │ │ │ ├── System.Security.Cryptography.Cose.xml │ │ │ │ │ ├── System.Security.Cryptography.Pkcs.xml │ │ │ │ │ ├── System.Security.Cryptography.ProtectedData.xml │ │ │ │ │ ├── System.Security.Cryptography.Xml.xml │ │ │ │ │ ├── System.Security.Permissions.xml │ │ │ │ │ ├── System.ServiceModel.Http.xml │ │ │ │ │ ├── System.ServiceModel.NetFramingBase.xml │ │ │ │ │ ├── System.ServiceModel.NetNamedPipe.xml │ │ │ │ │ ├── System.ServiceModel.NetTcp.xml │ │ │ │ │ ├── System.ServiceModel.Primitives.xml │ │ │ │ │ ├── System.ServiceModel.Syndication.xml │ │ │ │ │ ├── System.ServiceModel.UnixDomainSocket.xml │ │ │ │ │ ├── System.ServiceModel.xml │ │ │ │ │ ├── System.ServiceProcess.ServiceController.xml │ │ │ │ │ ├── System.Speech.xml │ │ │ │ │ ├── System.Text.Encoding.CodePages.xml │ │ │ │ │ ├── System.Text.Encodings.Web.xml │ │ │ │ │ ├── System.Text.Json.xml │ │ │ │ │ ├── System.Threading.AccessControl.xml │ │ │ │ │ ├── System.Threading.Channels.xml │ │ │ │ │ ├── System.Threading.Tasks.Dataflow.xml │ │ │ │ │ ├── System.Windows.Extensions.xml │ │ │ │ │ └── System.Xml.XPath.XmlDocument.xml │ │ │ ├── net-9.0 │ │ │ │ └── 1033 │ │ │ │ │ ├── Microsoft.Bcl.Cryptography.xml │ │ │ │ │ ├── Microsoft.Bcl.TimeProvider.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.AzureAIInference.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.NLP.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.Quality.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.Reporting.Azure.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.Reporting.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.Safety.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.Evaluation.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.OpenAI.xml │ │ │ │ │ ├── Microsoft.Extensions.AI.xml │ │ │ │ │ ├── Microsoft.Extensions.AmbientMetadata.Application.xml │ │ │ │ │ ├── Microsoft.Extensions.AsyncState.xml │ │ │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Caching.Hybrid.xml │ │ │ │ │ ├── Microsoft.Extensions.Caching.Memory.xml │ │ │ │ │ ├── Microsoft.Extensions.Compliance.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Compliance.Redaction.xml │ │ │ │ │ ├── Microsoft.Extensions.Compliance.Testing.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Binder.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.CommandLine.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Ini.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Json.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.UserSecrets.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Xml.xml │ │ │ │ │ ├── Microsoft.Extensions.Configuration.xml │ │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.AutoActivation.xml │ │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.xml │ │ │ │ │ ├── Microsoft.Extensions.DependencyModel.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.ExceptionSummarization.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Common.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.Probes.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.ResourceMonitoring.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.Testing.xml │ │ │ │ │ ├── Microsoft.Extensions.Diagnostics.xml │ │ │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.FileProviders.Composite.xml │ │ │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.xml │ │ │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.xml │ │ │ │ │ ├── Microsoft.Extensions.Hosting.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Hosting.Systemd.xml │ │ │ │ │ ├── Microsoft.Extensions.Hosting.Testing.xml │ │ │ │ │ ├── Microsoft.Extensions.Hosting.WindowsServices.xml │ │ │ │ │ ├── Microsoft.Extensions.Hosting.xml │ │ │ │ │ ├── Microsoft.Extensions.Http.Diagnostics.xml │ │ │ │ │ ├── Microsoft.Extensions.Http.Resilience.xml │ │ │ │ │ ├── Microsoft.Extensions.Http.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.Configuration.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.Console.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.Debug.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.EventLog.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.EventSource.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.TraceSource.xml │ │ │ │ │ ├── Microsoft.Extensions.Logging.xml │ │ │ │ │ ├── Microsoft.Extensions.ObjectPool.DependencyInjection.xml │ │ │ │ │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.xml │ │ │ │ │ ├── Microsoft.Extensions.Options.Contextual.xml │ │ │ │ │ ├── Microsoft.Extensions.Options.DataAnnotations.xml │ │ │ │ │ ├── Microsoft.Extensions.Options.xml │ │ │ │ │ ├── Microsoft.Extensions.Primitives.xml │ │ │ │ │ ├── Microsoft.Extensions.Resilience.xml │ │ │ │ │ ├── Microsoft.Extensions.Telemetry.Abstractions.xml │ │ │ │ │ ├── Microsoft.Extensions.Telemetry.xml │ │ │ │ │ ├── Microsoft.Extensions.TimeProvider.Testing.xml │ │ │ │ │ ├── Microsoft.Extensions.VectorData.Abstractions.xml │ │ │ │ │ ├── Microsoft.Win32.Registry.AccessControl.xml │ │ │ │ │ ├── Microsoft.Win32.SystemEvents.xml │ │ │ │ │ ├── System.CodeDom.xml │ │ │ │ │ ├── System.Collections.Immutable.xml │ │ │ │ │ ├── System.CommandLine.Hosting.xml │ │ │ │ │ ├── System.CommandLine.NamingConventionBinder.xml │ │ │ │ │ ├── System.CommandLine.xml │ │ │ │ │ ├── System.ComponentModel.Composition.Registration.xml │ │ │ │ │ ├── System.ComponentModel.Composition.xml │ │ │ │ │ ├── System.Composition.AttributedModel.xml │ │ │ │ │ ├── System.Composition.Convention.xml │ │ │ │ │ ├── System.Composition.Hosting.xml │ │ │ │ │ ├── System.Composition.Runtime.xml │ │ │ │ │ ├── System.Composition.TypedParts.xml │ │ │ │ │ ├── System.Configuration.ConfigurationManager.xml │ │ │ │ │ ├── System.Data.Odbc.xml │ │ │ │ │ ├── System.Data.OleDb.xml │ │ │ │ │ ├── System.Data.SqlClient.xml │ │ │ │ │ ├── System.Diagnostics.DiagnosticSource.xml │ │ │ │ │ ├── System.Diagnostics.EventLog.xml │ │ │ │ │ ├── System.Diagnostics.PerformanceCounter.xml │ │ │ │ │ ├── System.DirectoryServices.AccountManagement.xml │ │ │ │ │ ├── System.DirectoryServices.Protocols.xml │ │ │ │ │ ├── System.DirectoryServices.xml │ │ │ │ │ ├── System.Drawing.Common.xml │ │ │ │ │ ├── System.Formats.Asn1.xml │ │ │ │ │ ├── System.Formats.Cbor.xml │ │ │ │ │ ├── System.Formats.Nrbf.xml │ │ │ │ │ ├── System.IO.Hashing.xml │ │ │ │ │ ├── System.IO.Packaging.xml │ │ │ │ │ ├── System.IO.Pipelines.xml │ │ │ │ │ ├── System.IO.Ports.xml │ │ │ │ │ ├── System.Json.xml │ │ │ │ │ ├── System.Linq.AsyncEnumerable.xml │ │ │ │ │ ├── System.Management.xml │ │ │ │ │ ├── System.Memory.Data.xml │ │ │ │ │ ├── System.Net.Http.Json.xml │ │ │ │ │ ├── System.Net.Http.WinHttpHandler.xml │ │ │ │ │ ├── System.Net.ServerSentEvents.xml │ │ │ │ │ ├── System.Net.WebSockets.WebSocketProtocol.xml │ │ │ │ │ ├── System.Numerics.Tensors.xml │ │ │ │ │ ├── System.Private.Windows.GdiPlus.xml │ │ │ │ │ ├── System.Reflection.Context.xml │ │ │ │ │ ├── System.Reflection.Metadata.xml │ │ │ │ │ ├── System.Reflection.MetadataLoadContext.xml │ │ │ │ │ ├── System.Resources.Extensions.xml │ │ │ │ │ ├── System.Runtime.Caching.xml │ │ │ │ │ ├── System.Runtime.Serialization.Formatters.xml │ │ │ │ │ ├── System.Runtime.Serialization.Schema.xml │ │ │ │ │ ├── System.Security.AccessControl.xml │ │ │ │ │ ├── System.Security.Cryptography.Cose.xml │ │ │ │ │ ├── System.Security.Cryptography.Pkcs.xml │ │ │ │ │ ├── System.Security.Cryptography.ProtectedData.xml │ │ │ │ │ ├── System.Security.Cryptography.Xml.xml │ │ │ │ │ ├── System.Security.Permissions.xml │ │ │ │ │ ├── System.ServiceModel.Http.xml │ │ │ │ │ ├── System.ServiceModel.NetFramingBase.xml │ │ │ │ │ ├── System.ServiceModel.NetNamedPipe.xml │ │ │ │ │ ├── System.ServiceModel.NetTcp.xml │ │ │ │ │ ├── System.ServiceModel.Primitives.xml │ │ │ │ │ ├── System.ServiceModel.Syndication.xml │ │ │ │ │ ├── System.ServiceModel.UnixDomainSocket.xml │ │ │ │ │ ├── System.ServiceModel.xml │ │ │ │ │ ├── System.ServiceProcess.ServiceController.xml │ │ │ │ │ ├── System.Speech.xml │ │ │ │ │ ├── System.Text.Encoding.CodePages.xml │ │ │ │ │ ├── System.Text.Encodings.Web.xml │ │ │ │ │ ├── System.Text.Json.xml │ │ │ │ │ ├── System.Threading.AccessControl.xml │ │ │ │ │ ├── System.Threading.Channels.xml │ │ │ │ │ ├── System.Threading.Tasks.Dataflow.xml │ │ │ │ │ ├── System.Windows.Extensions.xml │ │ │ │ │ └── System.Xml.XPath.XmlDocument.xml │ │ │ ├── net │ │ │ │ └── 1033 │ │ │ │ │ ├── Microsoft.CSharp.xml │ │ │ │ │ ├── Microsoft.VisualBasic.Core.xml │ │ │ │ │ ├── Microsoft.Win32.Primitives.xml │ │ │ │ │ ├── Microsoft.Win32.Registry.xml │ │ │ │ │ ├── System.Collections.Concurrent.xml │ │ │ │ │ ├── System.Collections.Immutable.xml │ │ │ │ │ ├── System.Collections.NonGeneric.xml │ │ │ │ │ ├── System.Collections.Specialized.xml │ │ │ │ │ ├── System.Collections.xml │ │ │ │ │ ├── System.ComponentModel.Annotations.xml │ │ │ │ │ ├── System.ComponentModel.EventBasedAsync.xml │ │ │ │ │ ├── System.ComponentModel.Primitives.xml │ │ │ │ │ ├── System.ComponentModel.TypeConverter.xml │ │ │ │ │ ├── System.ComponentModel.xml │ │ │ │ │ ├── System.Console.xml │ │ │ │ │ ├── System.Data.Common.xml │ │ │ │ │ ├── System.Diagnostics.Contracts.xml │ │ │ │ │ ├── System.Diagnostics.DiagnosticSource.xml │ │ │ │ │ ├── System.Diagnostics.FileVersionInfo.xml │ │ │ │ │ ├── System.Diagnostics.Process.xml │ │ │ │ │ ├── System.Diagnostics.StackTrace.xml │ │ │ │ │ ├── System.Diagnostics.TextWriterTraceListener.xml │ │ │ │ │ ├── System.Diagnostics.TraceSource.xml │ │ │ │ │ ├── System.Diagnostics.Tracing.xml │ │ │ │ │ ├── System.Drawing.Primitives.xml │ │ │ │ │ ├── System.Formats.Asn1.xml │ │ │ │ │ ├── System.Formats.Tar.xml │ │ │ │ │ ├── System.IO.Compression.Brotli.xml │ │ │ │ │ ├── System.IO.Compression.ZipFile.xml │ │ │ │ │ ├── System.IO.Compression.xml │ │ │ │ │ ├── System.IO.FileSystem.AccessControl.xml │ │ │ │ │ ├── System.IO.FileSystem.DriveInfo.xml │ │ │ │ │ ├── System.IO.FileSystem.Watcher.xml │ │ │ │ │ ├── System.IO.IsolatedStorage.xml │ │ │ │ │ ├── System.IO.MemoryMappedFiles.xml │ │ │ │ │ ├── System.IO.Pipelines.xml │ │ │ │ │ ├── System.IO.Pipes.AccessControl.xml │ │ │ │ │ ├── System.IO.Pipes.xml │ │ │ │ │ ├── System.Linq.AsyncEnumerable.xml │ │ │ │ │ ├── System.Linq.Expressions.xml │ │ │ │ │ ├── System.Linq.Parallel.xml │ │ │ │ │ ├── System.Linq.Queryable.xml │ │ │ │ │ ├── System.Linq.xml │ │ │ │ │ ├── System.Memory.xml │ │ │ │ │ ├── System.Net.Http.Json.xml │ │ │ │ │ ├── System.Net.Http.xml │ │ │ │ │ ├── System.Net.HttpListener.xml │ │ │ │ │ ├── System.Net.Mail.xml │ │ │ │ │ ├── System.Net.NameResolution.xml │ │ │ │ │ ├── System.Net.NetworkInformation.xml │ │ │ │ │ ├── System.Net.Ping.xml │ │ │ │ │ ├── System.Net.Primitives.xml │ │ │ │ │ ├── System.Net.Quic.xml │ │ │ │ │ ├── System.Net.Requests.xml │ │ │ │ │ ├── System.Net.Security.xml │ │ │ │ │ ├── System.Net.ServerSentEvents.xml │ │ │ │ │ ├── System.Net.Sockets.xml │ │ │ │ │ ├── System.Net.WebClient.xml │ │ │ │ │ ├── System.Net.WebHeaderCollection.xml │ │ │ │ │ ├── System.Net.WebProxy.xml │ │ │ │ │ ├── System.Net.WebSockets.Client.xml │ │ │ │ │ ├── System.Net.WebSockets.xml │ │ │ │ │ ├── System.Numerics.Vectors.xml │ │ │ │ │ ├── System.ObjectModel.xml │ │ │ │ │ ├── System.Reflection.DispatchProxy.xml │ │ │ │ │ ├── System.Reflection.Emit.ILGeneration.xml │ │ │ │ │ ├── System.Reflection.Emit.Lightweight.xml │ │ │ │ │ ├── System.Reflection.Emit.xml │ │ │ │ │ ├── System.Reflection.Metadata.xml │ │ │ │ │ ├── System.Reflection.Primitives.xml │ │ │ │ │ ├── System.Reflection.TypeExtensions.xml │ │ │ │ │ ├── System.Resources.Writer.xml │ │ │ │ │ ├── System.Runtime.CompilerServices.VisualC.xml │ │ │ │ │ ├── System.Runtime.InteropServices.JavaScript.xml │ │ │ │ │ ├── System.Runtime.InteropServices.xml │ │ │ │ │ ├── System.Runtime.Intrinsics.xml │ │ │ │ │ ├── System.Runtime.Loader.xml │ │ │ │ │ ├── System.Runtime.Numerics.xml │ │ │ │ │ ├── System.Runtime.Serialization.Formatters.xml │ │ │ │ │ ├── System.Runtime.Serialization.Json.xml │ │ │ │ │ ├── System.Runtime.Serialization.Primitives.xml │ │ │ │ │ ├── System.Runtime.Serialization.Xml.xml │ │ │ │ │ ├── System.Runtime.xml │ │ │ │ │ ├── System.Security.AccessControl.xml │ │ │ │ │ ├── System.Security.Claims.xml │ │ │ │ │ ├── System.Security.Cryptography.xml │ │ │ │ │ ├── System.Security.Principal.Windows.xml │ │ │ │ │ ├── System.Text.Encoding.CodePages.xml │ │ │ │ │ ├── System.Text.Encoding.Extensions.xml │ │ │ │ │ ├── System.Text.Encodings.Web.xml │ │ │ │ │ ├── System.Text.Json.xml │ │ │ │ │ ├── System.Text.RegularExpressions.xml │ │ │ │ │ ├── System.Threading.AccessControl.xml │ │ │ │ │ ├── System.Threading.Channels.xml │ │ │ │ │ ├── System.Threading.Overlapped.xml │ │ │ │ │ ├── System.Threading.Tasks.Dataflow.xml │ │ │ │ │ ├── System.Threading.Tasks.Parallel.xml │ │ │ │ │ ├── System.Threading.Thread.xml │ │ │ │ │ ├── System.Threading.ThreadPool.xml │ │ │ │ │ ├── System.Threading.xml │ │ │ │ │ ├── System.Transactions.Local.xml │ │ │ │ │ ├── System.Web.HttpUtility.xml │ │ │ │ │ ├── System.Xml.ReaderWriter.xml │ │ │ │ │ ├── System.Xml.XDocument.xml │ │ │ │ │ ├── System.Xml.XPath.XDocument.xml │ │ │ │ │ ├── System.Xml.XPath.xml │ │ │ │ │ ├── System.Xml.XmlSerializer.xml │ │ │ │ │ └── netstandard.xml │ │ │ ├── netstandard │ │ │ │ └── 1033 │ │ │ │ │ └── netstandard.xml │ │ │ └── windowsdesktop │ │ │ │ └── 1033 │ │ │ │ ├── Accessibility.xml │ │ │ │ ├── Microsoft.VisualBasic.Forms.xml │ │ │ │ ├── Microsoft.Win32.Registry.AccessControl.xml │ │ │ │ ├── Microsoft.Win32.SystemEvents.xml │ │ │ │ ├── PresentationCore.xml │ │ │ │ ├── PresentationFramework.Aero.xml │ │ │ │ ├── PresentationFramework.Aero2.xml │ │ │ │ ├── PresentationFramework.AeroLite.xml │ │ │ │ ├── PresentationFramework.Classic.xml │ │ │ │ ├── PresentationFramework.Luna.xml │ │ │ │ ├── PresentationFramework.Royale.xml │ │ │ │ ├── PresentationFramework.xml │ │ │ │ ├── PresentationUI.xml │ │ │ │ ├── ReachFramework.xml │ │ │ │ ├── System.CodeDom.xml │ │ │ │ ├── System.Configuration.ConfigurationManager.xml │ │ │ │ ├── System.Diagnostics.EventLog.xml │ │ │ │ ├── System.Diagnostics.PerformanceCounter.xml │ │ │ │ ├── System.DirectoryServices.xml │ │ │ │ ├── System.Drawing.Common.xml │ │ │ │ ├── System.Formats.Nrbf.xml │ │ │ │ ├── System.IO.Packaging.xml │ │ │ │ ├── System.Printing.xml │ │ │ │ ├── System.Private.Windows.GdiPlus.xml │ │ │ │ ├── System.Resources.Extensions.xml │ │ │ │ ├── System.Security.Cryptography.Pkcs.xml │ │ │ │ ├── System.Security.Cryptography.ProtectedData.xml │ │ │ │ ├── System.Security.Cryptography.Xml.xml │ │ │ │ ├── System.Security.Permissions.xml │ │ │ │ ├── System.Windows.Controls.Ribbon.xml │ │ │ │ ├── System.Windows.Extensions.xml │ │ │ │ ├── System.Windows.Forms.Design.xml │ │ │ │ ├── System.Windows.Forms.Primitives.xml │ │ │ │ ├── System.Windows.Forms.xml │ │ │ │ ├── System.Windows.Input.Manipulations.xml │ │ │ │ ├── System.Windows.Presentation.xml │ │ │ │ ├── System.Xaml.xml │ │ │ │ ├── UIAutomationClient.xml │ │ │ │ ├── UIAutomationClientSideProviders.xml │ │ │ │ ├── UIAutomationProvider.xml │ │ │ │ ├── UIAutomationTypes.xml │ │ │ │ ├── WindowsBase.xml │ │ │ │ └── WindowsFormsIntegration.xml │ │ │ ├── Microsoft.Private.Intellisense.10.0.0-preview-20251006.1.csproj │ │ │ └── microsoft.private.intellisense.nuspec │ └── wcwidth.sources │ │ ├── 2.0.0 │ │ ├── Wcwidth.Sources.2.0.0.csproj │ │ ├── contentFiles │ │ │ └── cs │ │ │ │ ├── net6.0 │ │ │ │ └── External │ │ │ │ │ └── Wcwidth │ │ │ │ │ ├── Extensions │ │ │ │ │ └── IntegerExtensions.cs │ │ │ │ │ ├── Tables │ │ │ │ │ ├── WideTable.Generated.cs │ │ │ │ │ ├── WideTable.cs │ │ │ │ │ ├── ZeroTable.Generated.cs │ │ │ │ │ └── ZeroTable.cs │ │ │ │ │ ├── Unicode.cs │ │ │ │ │ └── UnicodeCalculator.cs │ │ │ │ ├── net7.0 │ │ │ │ └── External │ │ │ │ │ └── Wcwidth │ │ │ │ │ ├── Extensions │ │ │ │ │ └── IntegerExtensions.cs │ │ │ │ │ ├── Tables │ │ │ │ │ ├── WideTable.Generated.cs │ │ │ │ │ ├── WideTable.cs │ │ │ │ │ ├── ZeroTable.Generated.cs │ │ │ │ │ └── ZeroTable.cs │ │ │ │ │ ├── Unicode.cs │ │ │ │ │ └── UnicodeCalculator.cs │ │ │ │ ├── net8.0 │ │ │ │ └── External │ │ │ │ │ └── Wcwidth │ │ │ │ │ ├── Extensions │ │ │ │ │ └── IntegerExtensions.cs │ │ │ │ │ ├── Tables │ │ │ │ │ ├── WideTable.Generated.cs │ │ │ │ │ ├── WideTable.cs │ │ │ │ │ ├── ZeroTable.Generated.cs │ │ │ │ │ └── ZeroTable.cs │ │ │ │ │ ├── Unicode.cs │ │ │ │ │ └── UnicodeCalculator.cs │ │ │ │ └── netstandard2.0 │ │ │ │ └── External │ │ │ │ └── Wcwidth │ │ │ │ ├── Extensions │ │ │ │ └── IntegerExtensions.cs │ │ │ │ ├── Tables │ │ │ │ ├── WideTable.Generated.cs │ │ │ │ ├── WideTable.cs │ │ │ │ ├── ZeroTable.Generated.cs │ │ │ │ └── ZeroTable.cs │ │ │ │ ├── Unicode.cs │ │ │ │ └── UnicodeCalculator.cs │ │ └── wcwidth.sources.nuspec │ │ └── 4.0.1 │ │ ├── Wcwidth.Sources.4.0.1.csproj │ │ ├── contentFiles │ │ └── cs │ │ │ ├── net10.0 │ │ │ └── External │ │ │ │ └── Wcwidth │ │ │ │ ├── Extensions │ │ │ │ └── IntegerExtensions.cs │ │ │ │ ├── Tables │ │ │ │ ├── Vs16Table.Generated.cs │ │ │ │ ├── Vs16Table.cs │ │ │ │ ├── WideTable.Generated.cs │ │ │ │ ├── WideTable.cs │ │ │ │ ├── ZeroTable.Generated.cs │ │ │ │ └── ZeroTable.cs │ │ │ │ ├── Unicode.cs │ │ │ │ └── UnicodeCalculator.cs │ │ │ ├── net8.0 │ │ │ └── External │ │ │ │ └── Wcwidth │ │ │ │ ├── Extensions │ │ │ │ └── IntegerExtensions.cs │ │ │ │ ├── Tables │ │ │ │ ├── Vs16Table.Generated.cs │ │ │ │ ├── Vs16Table.cs │ │ │ │ ├── WideTable.Generated.cs │ │ │ │ ├── WideTable.cs │ │ │ │ ├── ZeroTable.Generated.cs │ │ │ │ └── ZeroTable.cs │ │ │ │ ├── Unicode.cs │ │ │ │ └── UnicodeCalculator.cs │ │ │ ├── net9.0 │ │ │ └── External │ │ │ │ └── Wcwidth │ │ │ │ ├── Extensions │ │ │ │ └── IntegerExtensions.cs │ │ │ │ ├── Tables │ │ │ │ ├── Vs16Table.Generated.cs │ │ │ │ ├── Vs16Table.cs │ │ │ │ ├── WideTable.Generated.cs │ │ │ │ ├── WideTable.cs │ │ │ │ ├── ZeroTable.Generated.cs │ │ │ │ └── ZeroTable.cs │ │ │ │ ├── Unicode.cs │ │ │ │ └── UnicodeCalculator.cs │ │ │ └── netstandard2.0 │ │ │ └── External │ │ │ └── Wcwidth │ │ │ ├── Extensions │ │ │ └── IntegerExtensions.cs │ │ │ ├── Tables │ │ │ ├── Vs16Table.Generated.cs │ │ │ ├── Vs16Table.cs │ │ │ ├── WideTable.Generated.cs │ │ │ ├── WideTable.cs │ │ │ ├── ZeroTable.Generated.cs │ │ │ └── ZeroTable.cs │ │ │ ├── Unicode.cs │ │ │ └── UnicodeCalculator.cs │ │ └── wcwidth.sources.nuspec │ └── textOnlyPackages.proj ├── test.cmd ├── test.sh └── tests └── SbrpTests ├── DummyAttributeTypeProvider.cs ├── ExecuteHelper.cs ├── GenerateScriptTests.cs ├── PackageType.cs ├── PathUtilities.cs ├── Sbrp.Tests.csproj └── ValidationTests.cs /.azuredevops/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/.azuredevops/dependabot.yml -------------------------------------------------------------------------------- /.config/CredScanSuppressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/.config/CredScanSuppressions.json -------------------------------------------------------------------------------- /.config/tsaoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/.config/tsaoptions.json -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/init-toolset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/.devcontainer/init-toolset.sh -------------------------------------------------------------------------------- /.devcontainer/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/.devcontainer/init.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CodeQL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/CodeQL.yml -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines/builds/ci-public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/azure-pipelines/builds/ci-public.yml -------------------------------------------------------------------------------- /azure-pipelines/builds/ci-unofficial.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/azure-pipelines/builds/ci-unofficial.yml -------------------------------------------------------------------------------- /azure-pipelines/builds/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/azure-pipelines/builds/ci.yml -------------------------------------------------------------------------------- /azure-pipelines/builds/cleanup-unreferenced-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/azure-pipelines/builds/cleanup-unreferenced-packages.yml -------------------------------------------------------------------------------- /azure-pipelines/builds/vmr-build-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/azure-pipelines/builds/vmr-build-pr.yml -------------------------------------------------------------------------------- /azure-pipelines/templates/stages/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/azure-pipelines/templates/stages/build.yml -------------------------------------------------------------------------------- /azure-pipelines/templates/variables/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/azure-pipelines/templates/variables/common.yml -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/clean.sh -------------------------------------------------------------------------------- /docs/known_generator_issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/docs/known_generator_issues.md -------------------------------------------------------------------------------- /eng/Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/Build.props -------------------------------------------------------------------------------- /eng/CredScanSuppressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/CredScanSuppressions.json -------------------------------------------------------------------------------- /eng/ManualNuspec.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/ManualNuspec.targets -------------------------------------------------------------------------------- /eng/Version.Details.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/Version.Details.props -------------------------------------------------------------------------------- /eng/Version.Details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/Version.Details.xml -------------------------------------------------------------------------------- /eng/Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/Versions.props -------------------------------------------------------------------------------- /eng/common/BuildConfiguration/build-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/BuildConfiguration/build-configuration.json -------------------------------------------------------------------------------- /eng/common/CIBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/CIBuild.cmd -------------------------------------------------------------------------------- /eng/common/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /eng/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/README.md -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/SetupNugetSources.ps1 -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/SetupNugetSources.sh -------------------------------------------------------------------------------- /eng/common/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/build.cmd -------------------------------------------------------------------------------- /eng/common/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/build.ps1 -------------------------------------------------------------------------------- /eng/common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/build.sh -------------------------------------------------------------------------------- /eng/common/cibuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/cibuild.sh -------------------------------------------------------------------------------- /eng/common/core-templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/cleanup-microbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/steps/cleanup-microbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/install-microbuild-impl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/steps/install-microbuild-impl.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/install-microbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/steps/install-microbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/core-templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/core-templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/cross/arm/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/cross/arm/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/arm64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/cross/arm64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/cross/armel/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/build-android-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/cross/build-android-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/cross/build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/install-debs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/cross/install-debs.py -------------------------------------------------------------------------------- /eng/common/cross/riscv64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/cross/riscv64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/cross/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/cross/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/cross/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/darc-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/darc-init.ps1 -------------------------------------------------------------------------------- /eng/common/darc-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/darc-init.sh -------------------------------------------------------------------------------- /eng/common/dotnet-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/dotnet-install.cmd -------------------------------------------------------------------------------- /eng/common/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/dotnet-install.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/dotnet-install.sh -------------------------------------------------------------------------------- /eng/common/dotnet.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/dotnet.cmd -------------------------------------------------------------------------------- /eng/common/dotnet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/dotnet.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/dotnet.sh -------------------------------------------------------------------------------- /eng/common/enable-cross-org-publishing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/enable-cross-org-publishing.ps1 -------------------------------------------------------------------------------- /eng/common/generate-locproject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/generate-locproject.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/generate-sbom-prep.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/generate-sbom-prep.sh -------------------------------------------------------------------------------- /eng/common/helixpublish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/helixpublish.proj -------------------------------------------------------------------------------- /eng/common/init-tools-native.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/init-tools-native.cmd -------------------------------------------------------------------------------- /eng/common/init-tools-native.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/init-tools-native.ps1 -------------------------------------------------------------------------------- /eng/common/init-tools-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/init-tools-native.sh -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/internal-feed-operations.ps1 -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/internal-feed-operations.sh -------------------------------------------------------------------------------- /eng/common/internal/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/internal/Directory.Build.props -------------------------------------------------------------------------------- /eng/common/internal/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/internal/NuGet.config -------------------------------------------------------------------------------- /eng/common/internal/Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/internal/Tools.csproj -------------------------------------------------------------------------------- /eng/common/loc/P22DotNetHtmlLocalization.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/loc/P22DotNetHtmlLocalization.lss -------------------------------------------------------------------------------- /eng/common/msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/msbuild.ps1 -------------------------------------------------------------------------------- /eng/common/msbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/msbuild.sh -------------------------------------------------------------------------------- /eng/common/native/CommonLibrary.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/native/CommonLibrary.psm1 -------------------------------------------------------------------------------- /eng/common/native/common-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/native/common-library.sh -------------------------------------------------------------------------------- /eng/common/native/init-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/native/init-compiler.sh -------------------------------------------------------------------------------- /eng/common/native/init-distro-rid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/native/init-distro-rid.sh -------------------------------------------------------------------------------- /eng/common/native/init-os-and-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/native/init-os-and-arch.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/native/install-cmake-test.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/native/install-cmake.sh -------------------------------------------------------------------------------- /eng/common/native/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/native/install-dependencies.sh -------------------------------------------------------------------------------- /eng/common/native/install-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/native/install-tool.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/pipeline-logging-functions.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/pipeline-logging-functions.sh -------------------------------------------------------------------------------- /eng/common/post-build/check-channel-consistency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/post-build/check-channel-consistency.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/post-build/nuget-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-verification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/post-build/nuget-verification.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/publish-using-darc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/post-build/publish-using-darc.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/redact-logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/post-build/redact-logs.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/sourcelink-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/post-build/sourcelink-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/symbols-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/post-build/symbols-validation.ps1 -------------------------------------------------------------------------------- /eng/common/retain-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/retain-build.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/sdk-task.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/sdk-task.sh -------------------------------------------------------------------------------- /eng/common/sdl/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/sdl/NuGet.config -------------------------------------------------------------------------------- /eng/common/sdl/configure-sdl-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/sdl/configure-sdl-tool.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/execute-all-sdl-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/sdl/execute-all-sdl-tools.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-archives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/sdl/extract-artifact-archives.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/sdl/extract-artifact-packages.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/init-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/sdl/init-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/sdl/packages.config -------------------------------------------------------------------------------- /eng/common/sdl/run-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/sdl/run-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/sdl/sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/trim-assets-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/sdl/trim-assets-version.ps1 -------------------------------------------------------------------------------- /eng/common/template-guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/template-guidance.md -------------------------------------------------------------------------------- /eng/common/templates-official/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/sdl-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates-official/variables/sdl-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/vmr-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/steps/vmr-sync.yml -------------------------------------------------------------------------------- /eng/common/templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates/vmr-build-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/templates/vmr-build-pr.yml -------------------------------------------------------------------------------- /eng/common/tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/tools.ps1 -------------------------------------------------------------------------------- /eng/common/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/tools.sh -------------------------------------------------------------------------------- /eng/common/vmr-sync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/vmr-sync.ps1 -------------------------------------------------------------------------------- /eng/common/vmr-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/common/vmr-sync.sh -------------------------------------------------------------------------------- /eng/generate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/generate.ps1 -------------------------------------------------------------------------------- /eng/tasks/Microsoft.DotNet.SourceBuild.Tasks.XPlat/AddSourceToNuGetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/tasks/Microsoft.DotNet.SourceBuild.Tasks.XPlat/AddSourceToNuGetConfig.cs -------------------------------------------------------------------------------- /eng/tasks/Microsoft.DotNet.SourceBuild.Tasks.XPlat/UpdateJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/eng/tasks/Microsoft.DotNet.SourceBuild.Tasks.XPlat/UpdateJson.cs -------------------------------------------------------------------------------- /es-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/es-metadata.yml -------------------------------------------------------------------------------- /generate.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/generate.cmd -------------------------------------------------------------------------------- /generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/generate.sh -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/global.json -------------------------------------------------------------------------------- /src/SourceBuildAssemblyMetdata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/SourceBuildAssemblyMetdata.cs -------------------------------------------------------------------------------- /src/externalPackages/externalPackages.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/externalPackages.proj -------------------------------------------------------------------------------- /src/externalPackages/keys/Newtonsoft.Json.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/keys/Newtonsoft.Json.snk -------------------------------------------------------------------------------- /src/externalPackages/keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/keys/README.md -------------------------------------------------------------------------------- /src/externalPackages/keys/vs-solutionpersistence.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/keys/vs-solutionpersistence.snk -------------------------------------------------------------------------------- /src/externalPackages/patches/MSBuildLocator/0001-Eliminate-prebuilts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/patches/MSBuildLocator/0001-Eliminate-prebuilts.patch -------------------------------------------------------------------------------- /src/externalPackages/patches/MSBuildLocator/0002-Update-tfm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/patches/MSBuildLocator/0002-Update-tfm.patch -------------------------------------------------------------------------------- /src/externalPackages/patches/MSBuildLocator/0003-Remove-MicroBuild-signing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/patches/MSBuildLocator/0003-Remove-MicroBuild-signing.patch -------------------------------------------------------------------------------- /src/externalPackages/patches/application-insights/0001-Eliminate-prebuilts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/patches/application-insights/0001-Eliminate-prebuilts.patch -------------------------------------------------------------------------------- /src/externalPackages/patches/extract-patches.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/patches/extract-patches.ps1 -------------------------------------------------------------------------------- /src/externalPackages/patches/extract-patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/patches/extract-patches.sh -------------------------------------------------------------------------------- /src/externalPackages/patches/humanizer/0001-Tfm-updates-and-eliminate-prebuilts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/patches/humanizer/0001-Tfm-updates-and-eliminate-prebuilts.patch -------------------------------------------------------------------------------- /src/externalPackages/patches/newtonsoft-json/0001-Newtonsoft.Json-project-updates.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/patches/newtonsoft-json/0001-Newtonsoft.Json-project-updates.patch -------------------------------------------------------------------------------- /src/externalPackages/patches/spectre-console/0001-Remove-PolySharp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/patches/spectre-console/0001-Remove-PolySharp.patch -------------------------------------------------------------------------------- /src/externalPackages/projects/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/projects/Directory.Build.props -------------------------------------------------------------------------------- /src/externalPackages/projects/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/projects/Directory.Build.targets -------------------------------------------------------------------------------- /src/externalPackages/projects/MSBuildLocator.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/projects/MSBuildLocator.proj -------------------------------------------------------------------------------- /src/externalPackages/projects/application-insights.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/projects/application-insights.proj -------------------------------------------------------------------------------- /src/externalPackages/projects/cssparser.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/projects/cssparser.proj -------------------------------------------------------------------------------- /src/externalPackages/projects/docker-creds-provider.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/projects/docker-creds-provider.proj -------------------------------------------------------------------------------- /src/externalPackages/projects/humanizer.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/projects/humanizer.proj -------------------------------------------------------------------------------- /src/externalPackages/projects/newtonsoft-json.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/projects/newtonsoft-json.proj -------------------------------------------------------------------------------- /src/externalPackages/projects/spectre-console.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/projects/spectre-console.proj -------------------------------------------------------------------------------- /src/externalPackages/projects/vs-solutionpersistence.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/projects/vs-solutionpersistence.proj -------------------------------------------------------------------------------- /src/externalPackages/src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/src/Directory.Build.props -------------------------------------------------------------------------------- /src/externalPackages/src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/externalPackages/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/packageSourceGenerator/DefaultGenApiDocIds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/packageSourceGenerator/DefaultGenApiDocIds.txt -------------------------------------------------------------------------------- /src/packageSourceGenerator/GenerateSourceProjectTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/packageSourceGenerator/GenerateSourceProjectTemplate.xml -------------------------------------------------------------------------------- /src/packageSourceGenerator/LicenseHeader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/packageSourceGenerator/LicenseHeader.txt -------------------------------------------------------------------------------- /src/packageSourceGenerator/PackageProjectTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/packageSourceGenerator/PackageProjectTemplate.xml -------------------------------------------------------------------------------- /src/packageSourceGenerator/PackageSourceGenerator.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/packageSourceGenerator/PackageSourceGenerator.proj -------------------------------------------------------------------------------- /src/packageSourceGenerator/PackageSourceGeneratorTask/GenerateProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/packageSourceGenerator/PackageSourceGeneratorTask/GenerateProject.cs -------------------------------------------------------------------------------- /src/packageSourceGenerator/PackageSourceGeneratorTask/GetPackageItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/packageSourceGenerator/PackageSourceGeneratorTask/GetPackageItems.cs -------------------------------------------------------------------------------- /src/packageSourceGenerator/PackageSourceGeneratorTask/PackageSourceGeneratorTask.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/packageSourceGenerator/PackageSourceGeneratorTask/PackageSourceGeneratorTask.csproj -------------------------------------------------------------------------------- /src/packageSourceGenerator/PackageSourceGeneratorTask/RewriteNuspec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/packageSourceGenerator/PackageSourceGeneratorTask/RewriteNuspec.cs -------------------------------------------------------------------------------- /src/packageSourceGenerator/PackageSourceGeneratorTask/SharedMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/packageSourceGenerator/PackageSourceGeneratorTask/SharedMetadata.cs -------------------------------------------------------------------------------- /src/packageSourceGenerator/PackageSourceGeneratorTask/StrongNameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/packageSourceGenerator/PackageSourceGeneratorTask/StrongNameData.cs -------------------------------------------------------------------------------- /src/packageSourceGenerator/PackageSourceGeneratorTask/TargetFrameworkRegexFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/packageSourceGenerator/PackageSourceGeneratorTask/TargetFrameworkRegexFilter.cs -------------------------------------------------------------------------------- /src/referencePackages/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/Directory.Build.props -------------------------------------------------------------------------------- /src/referencePackages/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/Directory.Build.targets -------------------------------------------------------------------------------- /src/referencePackages/common/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/common/IsExternalInit.cs -------------------------------------------------------------------------------- /src/referencePackages/common/RequiredModifierAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/common/RequiredModifierAttributes.cs -------------------------------------------------------------------------------- /src/referencePackages/referencePackages.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/referencePackages.proj -------------------------------------------------------------------------------- /src/referencePackages/src/microsoft.bcl.hashcode/6.0.0/microsoft.bcl.hashcode.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/microsoft.bcl.hashcode/6.0.0/microsoft.bcl.hashcode.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/microsoft.build.utilities.core/17.8.3/Customizations.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/microsoft.build.utilities.core/17.8.3/Customizations.props -------------------------------------------------------------------------------- /src/referencePackages/src/microsoft.build/17.11.48/Customizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/microsoft.build/17.11.48/Customizations.cs -------------------------------------------------------------------------------- /src/referencePackages/src/microsoft.build/17.11.48/Microsoft.Build.17.11.48.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/microsoft.build/17.11.48/Microsoft.Build.17.11.48.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/microsoft.build/17.11.48/microsoft.build.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/microsoft.build/17.11.48/microsoft.build.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/microsoft.build/17.11.48/ref/net8.0/Microsoft.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/microsoft.build/17.11.48/ref/net8.0/Microsoft.Build.cs -------------------------------------------------------------------------------- /src/referencePackages/src/microsoft.codeanalysis.common/4.12.0/Customizations.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/microsoft.codeanalysis.common/4.12.0/Customizations.props -------------------------------------------------------------------------------- /src/referencePackages/src/microsoft.csharp/4.7.0/Microsoft.CSharp.4.7.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/microsoft.csharp/4.7.0/Microsoft.CSharp.4.7.0.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/microsoft.csharp/4.7.0/microsoft.csharp.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/microsoft.csharp/4.7.0/microsoft.csharp.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/microsoft.csharp/4.7.0/ref/netstandard2.0/Microsoft.CSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/microsoft.csharp/4.7.0/ref/netstandard2.0/Microsoft.CSharp.cs -------------------------------------------------------------------------------- /src/referencePackages/src/microsoft.visualbasic/10.3.0/microsoft.visualbasic.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/microsoft.visualbasic/10.3.0/microsoft.visualbasic.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.commands/6.13.2/NuGet.Commands.6.13.2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.commands/6.13.2/NuGet.Commands.6.13.2.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.commands/6.13.2/lib/net8.0/NuGet.Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.commands/6.13.2/lib/net8.0/NuGet.Commands.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.commands/6.13.2/lib/netstandard2.0/NuGet.Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.commands/6.13.2/lib/netstandard2.0/NuGet.Commands.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.commands/6.13.2/nuget.commands.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.commands/6.13.2/nuget.commands.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.commands/6.14.0/NuGet.Commands.6.14.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.commands/6.14.0/NuGet.Commands.6.14.0.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.commands/6.14.0/lib/net8.0/NuGet.Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.commands/6.14.0/lib/net8.0/NuGet.Commands.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.commands/6.14.0/lib/netstandard2.0/NuGet.Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.commands/6.14.0/lib/netstandard2.0/NuGet.Commands.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.commands/6.14.0/nuget.commands.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.commands/6.14.0/nuget.commands.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.common/6.13.2/NuGet.Common.6.13.2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.common/6.13.2/NuGet.Common.6.13.2.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.common/6.13.2/lib/netstandard2.0/NuGet.Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.common/6.13.2/lib/netstandard2.0/NuGet.Common.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.common/6.13.2/nuget.common.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.common/6.13.2/nuget.common.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.common/6.14.0/NuGet.Common.6.14.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.common/6.14.0/NuGet.Common.6.14.0.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.common/6.14.0/lib/netstandard2.0/NuGet.Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.common/6.14.0/lib/netstandard2.0/NuGet.Common.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.common/6.14.0/nuget.common.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.common/6.14.0/nuget.common.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.configuration/6.13.2/Customizations.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.configuration/6.13.2/Customizations.props -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.configuration/6.13.2/NuGet.Configuration.6.13.2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.configuration/6.13.2/NuGet.Configuration.6.13.2.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.configuration/6.13.2/nuget.configuration.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.configuration/6.13.2/nuget.configuration.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.configuration/6.14.0/Customizations.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.configuration/6.14.0/Customizations.props -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.configuration/6.14.0/NuGet.Configuration.6.14.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.configuration/6.14.0/NuGet.Configuration.6.14.0.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.configuration/6.14.0/nuget.configuration.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.configuration/6.14.0/nuget.configuration.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.credentials/6.13.2/NuGet.Credentials.6.13.2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.credentials/6.13.2/NuGet.Credentials.6.13.2.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.credentials/6.13.2/lib/net8.0/NuGet.Credentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.credentials/6.13.2/lib/net8.0/NuGet.Credentials.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.credentials/6.13.2/nuget.credentials.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.credentials/6.13.2/nuget.credentials.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.credentials/6.14.0/NuGet.Credentials.6.14.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.credentials/6.14.0/NuGet.Credentials.6.14.0.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.credentials/6.14.0/lib/net8.0/NuGet.Credentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.credentials/6.14.0/lib/net8.0/NuGet.Credentials.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.credentials/6.14.0/nuget.credentials.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.credentials/6.14.0/nuget.credentials.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.frameworks/6.13.2/NuGet.Frameworks.6.13.2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.frameworks/6.13.2/NuGet.Frameworks.6.13.2.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.frameworks/6.13.2/nuget.frameworks.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.frameworks/6.13.2/nuget.frameworks.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.frameworks/6.14.0/NuGet.Frameworks.6.14.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.frameworks/6.14.0/NuGet.Frameworks.6.14.0.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.frameworks/6.14.0/nuget.frameworks.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.frameworks/6.14.0/nuget.frameworks.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.librarymodel/6.13.2/Customizations.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.librarymodel/6.13.2/Customizations.props -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.librarymodel/6.13.2/NuGet.LibraryModel.6.13.2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.librarymodel/6.13.2/NuGet.LibraryModel.6.13.2.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.librarymodel/6.13.2/nuget.librarymodel.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.librarymodel/6.13.2/nuget.librarymodel.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.librarymodel/6.14.0/Customizations.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.librarymodel/6.14.0/Customizations.props -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.librarymodel/6.14.0/NuGet.LibraryModel.6.14.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.librarymodel/6.14.0/NuGet.LibraryModel.6.14.0.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.librarymodel/6.14.0/nuget.librarymodel.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.librarymodel/6.14.0/nuget.librarymodel.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.packaging/6.13.2/Customizations.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.packaging/6.13.2/Customizations.props -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.packaging/6.13.2/NuGet.Packaging.6.13.2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.packaging/6.13.2/NuGet.Packaging.6.13.2.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.packaging/6.13.2/lib/net8.0/NuGet.Packaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.packaging/6.13.2/lib/net8.0/NuGet.Packaging.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.packaging/6.13.2/lib/netstandard2.0/NuGet.Packaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.packaging/6.13.2/lib/netstandard2.0/NuGet.Packaging.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.packaging/6.13.2/nuget.packaging.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.packaging/6.13.2/nuget.packaging.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.packaging/6.14.0/Customizations.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.packaging/6.14.0/Customizations.props -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.packaging/6.14.0/NuGet.Packaging.6.14.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.packaging/6.14.0/NuGet.Packaging.6.14.0.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.packaging/6.14.0/lib/net8.0/NuGet.Packaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.packaging/6.14.0/lib/net8.0/NuGet.Packaging.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.packaging/6.14.0/lib/netstandard2.0/NuGet.Packaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.packaging/6.14.0/lib/netstandard2.0/NuGet.Packaging.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.packaging/6.14.0/nuget.packaging.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.packaging/6.14.0/nuget.packaging.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.projectmodel/6.13.2/Customizations.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.projectmodel/6.13.2/Customizations.props -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.projectmodel/6.13.2/NuGet.ProjectModel.6.13.2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.projectmodel/6.13.2/NuGet.ProjectModel.6.13.2.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.projectmodel/6.13.2/lib/net8.0/NuGet.ProjectModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.projectmodel/6.13.2/lib/net8.0/NuGet.ProjectModel.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.projectmodel/6.13.2/nuget.projectmodel.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.projectmodel/6.13.2/nuget.projectmodel.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.projectmodel/6.14.0/Customizations.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.projectmodel/6.14.0/Customizations.props -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.projectmodel/6.14.0/NuGet.ProjectModel.6.14.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.projectmodel/6.14.0/NuGet.ProjectModel.6.14.0.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.projectmodel/6.14.0/lib/net8.0/NuGet.ProjectModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.projectmodel/6.14.0/lib/net8.0/NuGet.ProjectModel.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.projectmodel/6.14.0/nuget.projectmodel.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.projectmodel/6.14.0/nuget.projectmodel.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.protocol/6.13.2/NuGet.Protocol.6.13.2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.protocol/6.13.2/NuGet.Protocol.6.13.2.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.protocol/6.13.2/lib/net8.0/NuGet.Protocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.protocol/6.13.2/lib/net8.0/NuGet.Protocol.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.protocol/6.13.2/lib/netstandard2.0/NuGet.Protocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.protocol/6.13.2/lib/netstandard2.0/NuGet.Protocol.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.protocol/6.13.2/nuget.protocol.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.protocol/6.13.2/nuget.protocol.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.protocol/6.14.0/NuGet.Protocol.6.14.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.protocol/6.14.0/NuGet.Protocol.6.14.0.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.protocol/6.14.0/lib/net8.0/NuGet.Protocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.protocol/6.14.0/lib/net8.0/NuGet.Protocol.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.protocol/6.14.0/lib/netstandard2.0/NuGet.Protocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.protocol/6.14.0/lib/netstandard2.0/NuGet.Protocol.cs -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.protocol/6.14.0/nuget.protocol.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.protocol/6.14.0/nuget.protocol.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.versioning/6.13.2/NuGet.Versioning.6.13.2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.versioning/6.13.2/NuGet.Versioning.6.13.2.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.versioning/6.13.2/nuget.versioning.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.versioning/6.13.2/nuget.versioning.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.versioning/6.14.0/NuGet.Versioning.6.14.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.versioning/6.14.0/NuGet.Versioning.6.14.0.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/nuget.versioning/6.14.0/nuget.versioning.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/nuget.versioning/6.14.0/nuget.versioning.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.buffers/4.5.1/System.Buffers.4.5.1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.buffers/4.5.1/System.Buffers.4.5.1.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/system.buffers/4.5.1/ref/netstandard2.0/System.Buffers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.buffers/4.5.1/ref/netstandard2.0/System.Buffers.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.buffers/4.5.1/system.buffers.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.buffers/4.5.1/system.buffers.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.buffers/4.6.1/System.Buffers.4.6.1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.buffers/4.6.1/System.Buffers.4.6.1.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/system.buffers/4.6.1/lib/netstandard2.0/System.Buffers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.buffers/4.6.1/lib/netstandard2.0/System.Buffers.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.buffers/4.6.1/lib/netstandard2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/referencePackages/src/system.buffers/4.6.1/system.buffers.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.buffers/4.6.1/system.buffers.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.codedom/8.0.0/System.CodeDom.8.0.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.codedom/8.0.0/System.CodeDom.8.0.0.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/system.codedom/8.0.0/lib/net6.0/System.CodeDom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.codedom/8.0.0/lib/net6.0/System.CodeDom.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.codedom/8.0.0/lib/net7.0/System.CodeDom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.codedom/8.0.0/lib/net7.0/System.CodeDom.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.codedom/8.0.0/lib/net8.0/System.CodeDom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.codedom/8.0.0/lib/net8.0/System.CodeDom.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.codedom/8.0.0/lib/netstandard2.0/System.CodeDom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.codedom/8.0.0/lib/netstandard2.0/System.CodeDom.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.codedom/8.0.0/system.codedom.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.codedom/8.0.0/system.codedom.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.collections.immutable/8.0.0/Customizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.collections.immutable/8.0.0/Customizations.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.drawing.common/7.0.0/system.drawing.common.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.drawing.common/7.0.0/system.drawing.common.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.formats.asn1/6.0.0/System.Formats.Asn1.6.0.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.formats.asn1/6.0.0/System.Formats.Asn1.6.0.0.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/system.formats.asn1/6.0.0/lib/net6.0/System.Formats.Asn1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.formats.asn1/6.0.0/lib/net6.0/System.Formats.Asn1.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.formats.asn1/6.0.0/system.formats.asn1.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.formats.asn1/6.0.0/system.formats.asn1.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.formats.asn1/8.0.0/System.Formats.Asn1.8.0.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.formats.asn1/8.0.0/System.Formats.Asn1.8.0.0.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/system.formats.asn1/8.0.0/lib/net6.0/System.Formats.Asn1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.formats.asn1/8.0.0/lib/net6.0/System.Formats.Asn1.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.formats.asn1/8.0.0/lib/net7.0/System.Formats.Asn1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.formats.asn1/8.0.0/lib/net7.0/System.Formats.Asn1.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.formats.asn1/8.0.0/lib/net8.0/System.Formats.Asn1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.formats.asn1/8.0.0/lib/net8.0/System.Formats.Asn1.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.formats.asn1/8.0.0/system.formats.asn1.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.formats.asn1/8.0.0/system.formats.asn1.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.formats.asn1/8.0.1/System.Formats.Asn1.8.0.1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.formats.asn1/8.0.1/System.Formats.Asn1.8.0.1.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/system.formats.asn1/8.0.1/lib/net6.0/System.Formats.Asn1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.formats.asn1/8.0.1/lib/net6.0/System.Formats.Asn1.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.formats.asn1/8.0.1/lib/net7.0/System.Formats.Asn1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.formats.asn1/8.0.1/lib/net7.0/System.Formats.Asn1.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.formats.asn1/8.0.1/lib/net8.0/System.Formats.Asn1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.formats.asn1/8.0.1/lib/net8.0/System.Formats.Asn1.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.formats.asn1/8.0.1/system.formats.asn1.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.formats.asn1/8.0.1/system.formats.asn1.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.memory/4.5.4/System.Memory.4.5.4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.memory/4.5.4/System.Memory.4.5.4.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/system.memory/4.5.4/lib/netstandard2.0/System.Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.memory/4.5.4/lib/netstandard2.0/System.Memory.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.memory/4.5.4/system.memory.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.memory/4.5.4/system.memory.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.memory/4.5.5/System.Memory.4.5.5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.memory/4.5.5/System.Memory.4.5.5.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/system.memory/4.5.5/lib/netstandard2.0/System.Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.memory/4.5.5/lib/netstandard2.0/System.Memory.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.memory/4.5.5/system.memory.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.memory/4.5.5/system.memory.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.memory/4.6.3/System.Memory.4.6.3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.memory/4.6.3/System.Memory.4.6.3.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/system.memory/4.6.3/lib/netstandard2.0/System.Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.memory/4.6.3/lib/netstandard2.0/System.Memory.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.memory/4.6.3/lib/netstandard2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/referencePackages/src/system.memory/4.6.3/system.memory.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.memory/4.6.3/system.memory.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.numerics.vectors/4.4.0/system.numerics.vectors.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.numerics.vectors/4.4.0/system.numerics.vectors.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.numerics.vectors/4.5.0/system.numerics.vectors.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.numerics.vectors/4.5.0/system.numerics.vectors.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.numerics.vectors/4.6.1/lib/netstandard2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/referencePackages/src/system.numerics.vectors/4.6.1/system.numerics.vectors.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.numerics.vectors/4.6.1/system.numerics.vectors.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.reflection.emit.ilgeneration/4.7.0/ref/netstandard2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/referencePackages/src/system.reflection.emit/4.7.0/ref/netstandard2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/referencePackages/src/system.reflection.emit/4.7.0/system.reflection.emit.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.reflection.emit/4.7.0/system.reflection.emit.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.runtime.compilerservices.unsafe/6.1.2/lib/net7.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/referencePackages/src/system.text.encodings.web/6.0.0/Customizations.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.text.encodings.web/6.0.0/Customizations.props -------------------------------------------------------------------------------- /src/referencePackages/src/system.text.encodings.web/8.0.0/Customizations.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.text.encodings.web/8.0.0/Customizations.props -------------------------------------------------------------------------------- /src/referencePackages/src/system.text.json/6.0.0/Customizations.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.text.json/6.0.0/Customizations.props -------------------------------------------------------------------------------- /src/referencePackages/src/system.text.json/6.0.0/System.Text.Json.6.0.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.text.json/6.0.0/System.Text.Json.6.0.0.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/system.text.json/6.0.0/lib/net6.0/System.Text.Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.text.json/6.0.0/lib/net6.0/System.Text.Json.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.text.json/6.0.0/lib/netstandard2.0/System.Text.Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.text.json/6.0.0/lib/netstandard2.0/System.Text.Json.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.text.json/6.0.0/system.text.json.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.text.json/6.0.0/system.text.json.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.text.json/8.0.5/Customizations.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.text.json/8.0.5/Customizations.props -------------------------------------------------------------------------------- /src/referencePackages/src/system.text.json/8.0.5/System.Text.Json.8.0.5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.text.json/8.0.5/System.Text.Json.8.0.5.csproj -------------------------------------------------------------------------------- /src/referencePackages/src/system.text.json/8.0.5/lib/net6.0/System.Text.Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.text.json/8.0.5/lib/net6.0/System.Text.Json.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.text.json/8.0.5/lib/net7.0/System.Text.Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.text.json/8.0.5/lib/net7.0/System.Text.Json.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.text.json/8.0.5/lib/net8.0/System.Text.Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.text.json/8.0.5/lib/net8.0/System.Text.Json.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.text.json/8.0.5/lib/netstandard2.0/System.Text.Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.text.json/8.0.5/lib/netstandard2.0/System.Text.Json.cs -------------------------------------------------------------------------------- /src/referencePackages/src/system.text.json/8.0.5/system.text.json.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/referencePackages/src/system.text.json/8.0.5/system.text.json.nuspec -------------------------------------------------------------------------------- /src/referencePackages/src/system.threading.tasks.extensions/4.6.3/lib/netstandard2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/targetPacks/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/Directory.Build.props -------------------------------------------------------------------------------- /src/targetPacks/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/Directory.Build.targets -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.aspnetcore.app.ref/6.0.2/Microsoft.AspNetCore.App.Ref.6.0.2.csproj: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.aspnetcore.app.ref/6.0.2/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.aspnetcore.app.ref/6.0.2/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.aspnetcore.app.ref/6.0.2/data/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.aspnetcore.app.ref/6.0.2/data/FrameworkList.xml -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.aspnetcore.app.ref/6.0.2/data/PackageOverrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.aspnetcore.app.ref/6.0.2/data/PackageOverrides.txt -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.aspnetcore.app.ref/6.0.2/data/PlatformManifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.aspnetcore.app.ref/6.0.2/data/PlatformManifest.txt -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/Icon.png -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/LICENSE.TXT -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/Microsoft.NETCore.App.Ref.10.0.0.csproj: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/PACKAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/PACKAGE.md -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/data/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/data/FrameworkList.xml -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/data/PackageOverrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/data/PackageOverrides.txt -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/data/PlatformManifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/data/PlatformManifest.txt -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/microsoft.netcore.app.ref.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/microsoft.netcore.app.ref.nuspec -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/Microsoft.CSharp.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/Microsoft.CSharp.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.AppContext.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.AppContext.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Buffers.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Buffers.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Console.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Console.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Core.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Core.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Data.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Data.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Drawing.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Drawing.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.IO.Pipes.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.IO.Pipes.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.IO.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.IO.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Linq.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Linq.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Memory.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Memory.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Net.Http.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Net.Http.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Net.Mail.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Net.Mail.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Net.Ping.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Net.Ping.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Net.Quic.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Net.Quic.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Net.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Net.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Numerics.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Numerics.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Reflection.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Reflection.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Runtime.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Runtime.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Security.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Security.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Text.Json.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Text.Json.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Threading.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Threading.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.ValueTuple.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.ValueTuple.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Web.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Web.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Windows.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Windows.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Xml.Linq.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Xml.Linq.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Xml.XPath.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Xml.XPath.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Xml.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.Xml.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/System.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/WindowsBase.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/WindowsBase.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/mscorlib.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/mscorlib.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/netstandard.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/ref/net10.0/netstandard.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/10.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/Icon.png -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/LICENSE.TXT -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/Microsoft.NETCore.App.Ref.6.0.0.csproj: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/data/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/data/FrameworkList.xml -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/data/PackageOverrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/data/PackageOverrides.txt -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/data/PlatformManifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/data/PlatformManifest.txt -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/microsoft.netcore.app.ref.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/microsoft.netcore.app.ref.nuspec -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/Microsoft.CSharp.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/Microsoft.CSharp.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.AppContext.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.AppContext.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Buffers.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Buffers.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Collections.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Collections.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Console.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Console.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Core.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Core.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Data.Common.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Data.Common.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Data.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Data.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Drawing.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Drawing.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Formats.Asn1.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Formats.Asn1.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.IO.Pipes.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.IO.Pipes.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.IO.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.IO.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Linq.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Linq.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Memory.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Memory.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Net.Http.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Net.Http.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Net.Mail.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Net.Mail.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Net.Ping.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Net.Ping.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Net.Requests.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Net.Requests.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Net.Security.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Net.Security.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Net.Sockets.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Net.Sockets.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Net.WebProxy.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Net.WebProxy.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Net.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Net.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Numerics.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Numerics.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.ObjectModel.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.ObjectModel.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Reflection.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Reflection.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Runtime.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Runtime.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Security.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Security.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Text.Json.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Text.Json.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Threading.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Threading.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Transactions.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Transactions.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.ValueTuple.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.ValueTuple.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Web.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Web.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Windows.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Windows.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Xml.Linq.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Xml.Linq.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Xml.XPath.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Xml.XPath.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Xml.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.Xml.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/System.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/WindowsBase.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/WindowsBase.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/mscorlib.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/mscorlib.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/netstandard.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/6.0.0/ref/net6.0/netstandard.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/Icon.png -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/LICENSE.TXT -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/Microsoft.NETCore.App.Ref.7.0.0.csproj: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/data/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/data/FrameworkList.xml -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/data/PackageOverrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/data/PackageOverrides.txt -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/data/PlatformManifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/data/PlatformManifest.txt -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/microsoft.netcore.app.ref.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/microsoft.netcore.app.ref.nuspec -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/Microsoft.CSharp.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/Microsoft.CSharp.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.AppContext.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.AppContext.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Buffers.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Buffers.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Collections.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Collections.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Console.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Console.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Core.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Core.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Data.Common.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Data.Common.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Data.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Data.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Drawing.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Drawing.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Formats.Asn1.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Formats.Asn1.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Formats.Tar.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Formats.Tar.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.IO.Pipes.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.IO.Pipes.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.IO.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.IO.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Linq.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Linq.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Memory.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Memory.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Net.Http.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Net.Http.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Net.Mail.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Net.Mail.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Net.Ping.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Net.Ping.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Net.Quic.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Net.Quic.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Net.Requests.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Net.Requests.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Net.Security.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Net.Security.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Net.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Net.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Numerics.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Numerics.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Runtime.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Runtime.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Security.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Security.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Text.Json.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Text.Json.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Threading.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Threading.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Web.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Web.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Windows.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Windows.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Xml.Linq.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Xml.Linq.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Xml.XPath.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Xml.XPath.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Xml.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.Xml.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/System.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/WindowsBase.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/WindowsBase.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/mscorlib.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/mscorlib.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/netstandard.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/7.0.0/ref/net7.0/netstandard.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/Icon.png -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/LICENSE.TXT -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/Microsoft.NETCore.App.Ref.8.0.0.csproj: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/data/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/data/FrameworkList.xml -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/data/PackageOverrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/data/PackageOverrides.txt -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/data/PlatformManifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/data/PlatformManifest.txt -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/Microsoft.CSharp.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/Microsoft.CSharp.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Buffers.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Buffers.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Console.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Console.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Core.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Core.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Data.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Data.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Drawing.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Drawing.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Pipes.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.Pipes.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.IO.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Linq.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Linq.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Memory.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Memory.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Http.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Http.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Mail.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Mail.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Ping.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Ping.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Quic.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.Quic.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Net.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Numerics.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Numerics.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Runtime.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Security.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Json.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Text.Json.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Threading.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Web.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Web.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Windows.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Windows.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.Linq.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.Linq.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XPath.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.XPath.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.Xml.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/System.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/WindowsBase.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/WindowsBase.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/mscorlib.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/mscorlib.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/netstandard.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/ref/net8.0/netstandard.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/8.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/Icon.png -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/LICENSE.TXT -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/Microsoft.NETCore.App.Ref.9.0.0.csproj: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/PACKAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/PACKAGE.md -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/data/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/data/FrameworkList.xml -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/data/PackageOverrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/data/PackageOverrides.txt -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/data/PlatformManifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/data/PlatformManifest.txt -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/Microsoft.CSharp.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/Microsoft.CSharp.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Buffers.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Buffers.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Console.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Console.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Core.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Core.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Data.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Data.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Drawing.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Drawing.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.IO.Pipes.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.IO.Pipes.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.IO.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.IO.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Linq.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Linq.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Memory.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Memory.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Net.Http.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Net.Http.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Net.Mail.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Net.Mail.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Net.Ping.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Net.Ping.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Net.Quic.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Net.Quic.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Net.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Net.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Numerics.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Numerics.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Runtime.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Runtime.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Security.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Security.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Text.Json.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Text.Json.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Threading.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Threading.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Web.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Web.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Windows.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Windows.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Xml.Linq.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Xml.Linq.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Xml.XPath.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Xml.XPath.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Xml.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.Xml.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/System.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/WindowsBase.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/WindowsBase.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/mscorlib.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/mscorlib.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/netstandard.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/ref/net9.0/netstandard.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library.netframework/2.0.1-servicing-26011-01/NETStandard.Library.NETFramework.2.0.1-servicing-26011-01.csproj: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library.netframework/2.0.1-servicing-26011-01/build/net471/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library.netframework/2.0.1-servicing-26011-01/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library.netframework/2.0.1-servicing-26011-01/version.txt: -------------------------------------------------------------------------------- 1 | bd6a58d04fe8bd60452819571fd720513378ae0f 2 | -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/LICENSE.TXT -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/NETStandard.Library.Ref.2.1.0.csproj: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/data/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/data/FrameworkList.xml -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/data/PackageOverrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/data/PackageOverrides.txt -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/netstandard.library.ref.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/netstandard.library.ref.nuspec -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/ref/netstandard2.1/System.IO.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/ref/netstandard2.1/System.IO.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/ref/netstandard2.1/System.Net.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/ref/netstandard2.1/System.Net.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/ref/netstandard2.1/System.Web.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/ref/netstandard2.1/System.Web.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/ref/netstandard2.1/System.Xml.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/ref/netstandard2.1/System.Xml.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/ref/netstandard2.1/System.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/ref/netstandard2.1/System.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/ref/netstandard2.1/mscorlib.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/netstandard.library.ref/2.1.0/ref/netstandard2.1/mscorlib.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library/2.0.3/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/netstandard.library/2.0.3/LICENSE.TXT -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library/2.0.3/NETStandard.Library.2.0.3.csproj: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library/2.0.3/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/netstandard.library/2.0.3/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library/2.0.3/build/netstandard2.0/ref/System.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/netstandard.library/2.0.3/build/netstandard2.0/ref/System.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library/2.0.3/build/netstandard2.0/ref/mscorlib.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/netstandard.library/2.0.3/build/netstandard2.0/ref/mscorlib.il -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library/2.0.3/lib/netstandard1.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/targetPacks/ILsrc/netstandard.library/2.0.3/netstandard.library.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/ILsrc/netstandard.library/2.0.3/netstandard.library.nuspec -------------------------------------------------------------------------------- /src/targetPacks/build-il.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/build-il.sh -------------------------------------------------------------------------------- /src/targetPacks/targetPacks.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/targetPacks/targetPacks.proj -------------------------------------------------------------------------------- /src/textOnlyPackages/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/Directory.Build.props -------------------------------------------------------------------------------- /src/textOnlyPackages/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/Directory.Build.targets -------------------------------------------------------------------------------- /src/textOnlyPackages/src/fsharp.net.sdk/1.0.4-bundled-0100/Sdk/Sdk.OnRestore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/fsharp.net.sdk/1.0.4-bundled-0100/Sdk/Sdk.OnRestore.targets -------------------------------------------------------------------------------- /src/textOnlyPackages/src/fsharp.net.sdk/1.0.4-bundled-0100/Sdk/Sdk.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/fsharp.net.sdk/1.0.4-bundled-0100/Sdk/Sdk.props -------------------------------------------------------------------------------- /src/textOnlyPackages/src/fsharp.net.sdk/1.0.4-bundled-0100/Sdk/Sdk.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/fsharp.net.sdk/1.0.4-bundled-0100/Sdk/Sdk.targets -------------------------------------------------------------------------------- /src/textOnlyPackages/src/fsharp.net.sdk/1.0.4-bundled-0100/fsharp.net.sdk.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/fsharp.net.sdk/1.0.4-bundled-0100/fsharp.net.sdk.nuspec -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microbuild.core/0.3.0/MicroBuild.Core.0.3.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microbuild.core/0.3.0/MicroBuild.Core.0.3.0.csproj -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microbuild.core/0.3.0/build/MicroBuild.Core.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microbuild.core/0.3.0/build/MicroBuild.Core.props -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microbuild.core/0.3.0/build/MicroBuild.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microbuild.core/0.3.0/build/MicroBuild.Core.targets -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microbuild.core/0.3.0/build/MicroBuild.Plugin.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microbuild.core/0.3.0/build/MicroBuild.Plugin.props -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microbuild.core/0.3.0/microbuild.core.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microbuild.core/0.3.0/microbuild.core.nuspec -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.build.notargets/3.7.0/MSBuild-NuGet-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.build.notargets/3.7.0/MSBuild-NuGet-Icon.png -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.build.notargets/3.7.0/Sdk/Sdk.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.build.notargets/3.7.0/Sdk/Sdk.props -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.build.notargets/3.7.0/Sdk/Sdk.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.build.notargets/3.7.0/Sdk/Sdk.targets -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.build.traversal/3.4.0/MSBuild-NuGet-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.build.traversal/3.4.0/MSBuild-NuGet-Icon.png -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.build.traversal/3.4.0/Sdk/Sdk.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.build.traversal/3.4.0/Sdk/Sdk.props -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.build.traversal/3.4.0/Sdk/Sdk.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.build.traversal/3.4.0/Sdk/Sdk.targets -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.codeanalysis.contracts/5.0.0-1.25277.114/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.codeanalysis.contracts/5.0.0-1.25277.114/Icon.png -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.docker.sdk/1.1.0/Sdk/Sdk.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.docker.sdk/1.1.0/Sdk/Sdk.props -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.docker.sdk/1.1.0/Sdk/Sdk.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.docker.sdk/1.1.0/Sdk/Sdk.targets -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.docker.sdk/1.1.0/microsoft.docker.sdk.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.docker.sdk/1.1.0/microsoft.docker.sdk.nuspec -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.netcore.platforms/1.1.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.netcore.platforms/1.1.0/LICENSE.TXT -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.netcore.platforms/1.1.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.netcore.platforms/1.1.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.netcore.platforms/1.1.0/lib/netstandard1.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.netcore.platforms/1.1.0/runtime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.netcore.platforms/1.1.0/runtime.json -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.netcore.platforms/5.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.netcore.platforms/5.0.0/Icon.png -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.netcore.platforms/5.0.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.netcore.platforms/5.0.0/LICENSE.TXT -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.netcore.platforms/5.0.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.netcore.platforms/5.0.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.netcore.platforms/5.0.0/lib/netstandard1.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.netcore.platforms/5.0.0/runtime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/microsoft.netcore.platforms/5.0.0/runtime.json -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.netcore.platforms/5.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/textOnlyPackages/src/microsoft.netcore.platforms/5.0.0/version.txt: -------------------------------------------------------------------------------- 1 | cf258a14b70ad9069470a108f13765e0e5988f51 2 | -------------------------------------------------------------------------------- /src/textOnlyPackages/src/wcwidth.sources/2.0.0/Wcwidth.Sources.2.0.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/wcwidth.sources/2.0.0/Wcwidth.Sources.2.0.0.csproj -------------------------------------------------------------------------------- /src/textOnlyPackages/src/wcwidth.sources/2.0.0/wcwidth.sources.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/wcwidth.sources/2.0.0/wcwidth.sources.nuspec -------------------------------------------------------------------------------- /src/textOnlyPackages/src/wcwidth.sources/4.0.1/Wcwidth.Sources.4.0.1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/wcwidth.sources/4.0.1/Wcwidth.Sources.4.0.1.csproj -------------------------------------------------------------------------------- /src/textOnlyPackages/src/wcwidth.sources/4.0.1/wcwidth.sources.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/src/wcwidth.sources/4.0.1/wcwidth.sources.nuspec -------------------------------------------------------------------------------- /src/textOnlyPackages/textOnlyPackages.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/src/textOnlyPackages/textOnlyPackages.proj -------------------------------------------------------------------------------- /test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/test.cmd -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/test.sh -------------------------------------------------------------------------------- /tests/SbrpTests/DummyAttributeTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/tests/SbrpTests/DummyAttributeTypeProvider.cs -------------------------------------------------------------------------------- /tests/SbrpTests/ExecuteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/tests/SbrpTests/ExecuteHelper.cs -------------------------------------------------------------------------------- /tests/SbrpTests/GenerateScriptTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/tests/SbrpTests/GenerateScriptTests.cs -------------------------------------------------------------------------------- /tests/SbrpTests/PackageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/tests/SbrpTests/PackageType.cs -------------------------------------------------------------------------------- /tests/SbrpTests/PathUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/tests/SbrpTests/PathUtilities.cs -------------------------------------------------------------------------------- /tests/SbrpTests/Sbrp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/tests/SbrpTests/Sbrp.Tests.csproj -------------------------------------------------------------------------------- /tests/SbrpTests/ValidationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/source-build-reference-packages/HEAD/tests/SbrpTests/ValidationTests.cs --------------------------------------------------------------------------------