├── .github
└── workflows
│ └── ci.yml
├── .gitignore
├── Directory.Build.props
├── LICENSE
├── Makefile
├── README.md
├── dn.sln
├── docs
├── ARCHITECTURE.md
├── NUGET_RESTORE_RESEARCH.md
└── RESTORE_PROGRESS.md
├── external
└── nuget.client
│ ├── .azuredevops
│ └── policies
│ │ └── branchClassification.yml
│ ├── .config
│ ├── CredScanSuppressions.json
│ └── TSAOptions.json
│ ├── .editorconfig
│ ├── .gdn
│ └── .gdnsuppress
│ ├── .git-blame-ignore-revs
│ ├── .gitattributes
│ ├── .github
│ ├── CODEOWNERS
│ ├── PULL_REQUEST_TEMPLATE.md
│ ├── copilot-instructions.md
│ ├── policies
│ │ ├── breaking-changes.yml
│ │ ├── ci-changes.yml
│ │ ├── community.yml
│ │ ├── compliance-reminders.yml
│ │ └── stalebot.yml
│ └── workflows
│ │ └── backport.yml
│ ├── .gitignore
│ ├── .gitmodules
│ ├── .vsconfig
│ ├── CODE-OF-CONDUCT.md
│ ├── CONTRIBUTING.md
│ ├── Directory.Build.props
│ ├── Directory.Build.rsp
│ ├── Directory.Build.targets
│ ├── Directory.Packages.props
│ ├── Directory.Solution.targets
│ ├── LICENSE.txt
│ ├── NuGet-Commandline-WithTests.slnf
│ ├── NuGet-Src-Commandline.slnf
│ ├── NuGet-Src.slnf
│ ├── NuGet-UnitTests.slnf
│ ├── NuGet-VS.slnf
│ ├── NuGet.Config
│ ├── NuGet.sln
│ ├── NuGet.vssettings
│ ├── README.md
│ ├── SECURITY.md
│ ├── build.cmd
│ ├── build.ps1
│ ├── build.sh
│ ├── build
│ ├── BannedSymbols.txt
│ ├── BuildValidator.proj
│ ├── DotNetSdkTestVersions.txt
│ ├── DotNetSdkVersions.txt
│ ├── NOTICES.txt
│ ├── OptProfV2.props
│ ├── Shared
│ │ ├── DeconstructionExtensions.cs
│ │ ├── DynamicallyAccessedMemberTypes.cs
│ │ ├── DynamicallyAccessedMembersAttribute.cs
│ │ ├── EncodingUtility.cs
│ │ ├── EqualityUtility.cs
│ │ ├── HashCodeCombiner.cs
│ │ ├── IsExternalInit.cs
│ │ ├── NoAllocEnumerateExtensions.cs
│ │ ├── NullableAttributes.cs
│ │ ├── RequiredModifierAttributes.cs
│ │ ├── RequiresDynamicCodeAttribute.cs
│ │ ├── RequiresUnreferencedCodeAttribute.cs
│ │ ├── SharedExtensions.cs
│ │ ├── SimplePool.cs
│ │ ├── StringBuilderPool.cs
│ │ ├── TaskResult.cs
│ │ ├── TaskResultCache.cs
│ │ ├── UnconditionalSuppressMessageAttribute.cs
│ │ ├── Utf8JsonReaderExtensions.cs
│ │ ├── Utf8JsonStreamReader.cs
│ │ ├── Utf8JsonStreamReaderConverter.cs
│ │ ├── XmlUtility.cs
│ │ ├── vs-threading.MainThreadAssertingMethods.txt
│ │ ├── vs-threading.MainThreadSwitchingMethods.txt
│ │ └── vs-threading.MembersRequiringMainThread.txt
│ ├── TestShared
│ │ ├── CommonAssemblyInfo.cs
│ │ ├── IsExternalInit.cs
│ │ └── RequiredModifierAttributes.cs
│ ├── UpdateNuGetModuleManifest.ps1
│ ├── build.proj
│ ├── common.project.props
│ ├── common.props
│ ├── common.ps1
│ ├── common.targets
│ ├── config.props
│ ├── docs.proj
│ ├── ignorecodesign.csv
│ ├── publish.proj
│ ├── restorehelper.targets
│ ├── runsettings.proj
│ ├── sign.proj
│ ├── sign.targets
│ ├── symbols.proj
│ ├── template.runsettingsproj
│ ├── test.targets
│ ├── tests.optprof.vsconfig
│ ├── tests.vsconfig
│ └── xunit.runsettings
│ ├── configure.cmd
│ ├── configure.ps1
│ ├── configure.sh
│ ├── docs
│ ├── coding-guidelines.md
│ ├── cross-platform-debugging.md
│ ├── debugging.md
│ ├── design-review-guide.md
│ ├── feature-guide.md
│ ├── images
│ │ ├── bad-commit-message.png
│ │ ├── enable-child-process-debugging.png
│ │ ├── enable-mixed-mode-debugging.png
│ │ ├── good-commit-message-expanded.png
│ │ ├── good-commit-message.png
│ │ ├── project-tfm-selection.png
│ │ ├── release-branch-commit-message.png
│ │ └── vs-debugger-processes-list.png
│ ├── localizability.md
│ ├── nuget-project-types.md
│ ├── nuget-sdk.md
│ ├── plugin-logging.md
│ ├── project-overview.md
│ ├── ui-guidelines.md
│ ├── updating-packages.md
│ ├── updating-target-frameworks.md
│ └── workflow.md
│ ├── eng
│ ├── Publishing.props
│ ├── 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.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
│ │ │ └── x86
│ │ │ │ └── tizen
│ │ │ │ └── tizen.patch
│ │ ├── 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
│ ├── dotnet-build
│ │ ├── ExcludeFromDotNetBuild.AfterCommonTargets.targets
│ │ ├── Noop.proj
│ │ ├── build.cmd
│ │ ├── build.ps1
│ │ ├── build.sh
│ │ └── dotnet-build.proj
│ └── pipelines
│ │ ├── backup_build_artifacts.yml
│ │ ├── ci.yml
│ │ ├── compliance.yml
│ │ ├── dailytests.yml
│ │ ├── official.yml
│ │ ├── optprof.yml
│ │ ├── pr.job.yml
│ │ ├── pr.yml
│ │ ├── pull_request.yml
│ │ ├── templates
│ │ ├── Build_and_UnitTest.yml
│ │ ├── CrossFramework_Tests_On_Windows.yml
│ │ ├── Functional_Tests_On_Windows.yml
│ │ ├── Initialize_Build.yml
│ │ ├── Initialize_Build_SemanticVersion.yml
│ │ ├── Source_Build.yml
│ │ ├── Static_Source_Analysis.yml
│ │ ├── Tests_On_Linux.yml
│ │ ├── Tests_On_Mac.yml
│ │ ├── Validate_Build_Output.yml
│ │ └── pipeline.yml
│ │ ├── vs-test
│ │ ├── apex.yml
│ │ ├── build.yml
│ │ └── end_to_end.yml
│ │ └── vs-tests.yml
│ ├── es-metadata.yml
│ ├── global.json
│ ├── icon.png
│ ├── keys
│ ├── 35MSSharedLib1024.snk
│ ├── NuGetKey.snk
│ └── Test.snk
│ ├── runTests.cmd
│ ├── runTests.ps1
│ ├── scripts
│ ├── cibuild
│ │ ├── ConfigureVstsBuild.ps1
│ │ └── CopyArtifacts.ps1
│ ├── common.ps1
│ ├── e2etests
│ │ ├── CreateTestDataPackage.ps1
│ │ ├── InstallNuGetVSIX.ps1
│ │ ├── NuGetFunctionalTestUtils.ps1
│ │ ├── README.md
│ │ ├── RunFunctionalTests.ps1
│ │ ├── SetupFunctionalTests.ps1
│ │ ├── SetupMachine.ps1
│ │ ├── Utils.ps1
│ │ └── VSUtils.ps1
│ ├── funcTests
│ │ └── runFuncTests.sh
│ ├── nuget-debug-helpers.ps1
│ ├── perftests
│ │ ├── PerformanceTestRunner.ps1
│ │ ├── PerformanceTestUtilities.ps1
│ │ ├── README.md
│ │ ├── RunPerformanceTests.ps1
│ │ └── testCases
│ │ │ ├── Test-NuGetClient.ps1
│ │ │ └── Test-OrchardCore.ps1
│ └── utils
│ │ ├── DisableStrongNameVerification.ps1
│ │ ├── EnableStrongNameVerification.ps1
│ │ ├── EnsureAllPackagesExist.ps1
│ │ ├── StrongNameVerification.ps1
│ │ ├── TagNuGetClientGitRepostoryOnRelease.ps1
│ │ ├── UpdateNuGetLicenseSPDXList.ps1
│ │ ├── UpdateNuGetVersion.ps1
│ │ ├── docsPRGen.ps1
│ │ └── ttGen.ps1
│ ├── setup
│ ├── After.Microsoft.Common.targets
│ ├── Directory.Build.props
│ ├── Directory.Build.targets
│ ├── Microsoft.VisualStudio.NuGet.BuildTools.Swix
│ │ ├── Microsoft.VisualStudio.NuGet.BuildTools.Swix.swixproj
│ │ └── Microsoft.VisualStudio.NuGet.BuildTools.swr
│ ├── Microsoft.VisualStudio.NuGet.BuildTools
│ │ └── Microsoft.VisualStudio.NuGet.BuildTools.vsmanproj
│ └── Microsoft.VisualStudio.NuGet.Core
│ │ └── Microsoft.VisualStudio.NuGet.Core.vsmanproj
│ ├── spelling.dic
│ ├── src
│ ├── NuGet.Clients
│ │ ├── NuGet.CommandLine
│ │ │ ├── CommandLineMachineWideSettings.cs
│ │ │ ├── CommandLineParser.cs
│ │ │ ├── CommandLineSourceRepositoryProvider.cs
│ │ │ ├── CommandManager.cs
│ │ │ ├── Commands
│ │ │ │ ├── AddCommand.cs
│ │ │ │ ├── ClientCertificatesCommand.cs
│ │ │ │ ├── Command.cs
│ │ │ │ ├── CommandAttribute.cs
│ │ │ │ ├── ConfigCommand.cs
│ │ │ │ ├── DeleteCommand.cs
│ │ │ │ ├── DeprecatedCommandAttribute.cs
│ │ │ │ ├── DownloadCommandBase.cs
│ │ │ │ ├── EulaCommand.cs
│ │ │ │ ├── HelpCommand.cs
│ │ │ │ ├── HelpCommandMarkdownTemplate.cs
│ │ │ │ ├── ICommand.cs
│ │ │ │ ├── InitCommand.cs
│ │ │ │ ├── InstallCommand.cs
│ │ │ │ ├── ListCommand.cs
│ │ │ │ ├── LocalsCommand.cs
│ │ │ │ ├── OptionAttribute.cs
│ │ │ │ ├── Pack
│ │ │ │ │ ├── AssemblyMetadata.cs
│ │ │ │ │ └── AssemblyMetadataExtractor.cs
│ │ │ │ ├── PackCommand.cs
│ │ │ │ ├── ProjectFactory.cs
│ │ │ │ ├── PushCommand.cs
│ │ │ │ ├── RestoreCommand.cs
│ │ │ │ ├── SearchCommand.cs
│ │ │ │ ├── SetApiKeyCommand.cs
│ │ │ │ ├── SignCommand.cs
│ │ │ │ ├── SourcesCommand.cs
│ │ │ │ ├── SpecCommand.cs
│ │ │ │ ├── TrustedSignersCommand.cs
│ │ │ │ ├── UpdateCommand.cs
│ │ │ │ └── VerifyCommand.cs
│ │ │ ├── Common
│ │ │ │ ├── CommandLineConstants.cs
│ │ │ │ ├── CommandLineRepositoryFactory.cs
│ │ │ │ ├── CommandLineResponseFile.cs
│ │ │ │ ├── CommandLineUtility.cs
│ │ │ │ ├── Console.cs
│ │ │ │ ├── ConsoleCredentialProvider.cs
│ │ │ │ ├── DependencyBehaviorHelper.cs
│ │ │ │ ├── ExitCodeException.cs
│ │ │ │ ├── IConsole.cs
│ │ │ │ ├── IMSBuildProjectSystem.cs
│ │ │ │ ├── InstallCommandProject.cs
│ │ │ │ ├── LocalizedResourceManager.cs
│ │ │ │ ├── MSBuildAssemblyResolver.cs
│ │ │ │ ├── MSBuildProjectSystem.cs
│ │ │ │ ├── PackageSourceProviderExtensions.cs
│ │ │ │ ├── ProjectHelper.cs
│ │ │ │ ├── ProjectInSolution.cs
│ │ │ │ ├── ResourceHelper.cs
│ │ │ │ ├── SelfUpdater.cs
│ │ │ │ ├── Solution.cs
│ │ │ │ ├── TypeHelper.cs
│ │ │ │ └── Verbosity.cs
│ │ │ ├── ConsoleExtensions.cs
│ │ │ ├── ConsolePasswordProvider.cs
│ │ │ ├── Credentials
│ │ │ │ ├── CredentialProviderAdapter.cs
│ │ │ │ └── CredentialServiceAdapter.cs
│ │ │ ├── ExtensionLocator.cs
│ │ │ ├── FileConflictAction.cs
│ │ │ ├── GlobalSuppressions.cs
│ │ │ ├── ICommandManager.cs
│ │ │ ├── MsBuildToolset.cs
│ │ │ ├── MsBuildUtility.cs
│ │ │ ├── NuGet.CommandLine.csproj
│ │ │ ├── NuGetCommand.Designer.cs
│ │ │ ├── NuGetCommand.resx
│ │ │ ├── NuGetResources.Designer.cs
│ │ │ ├── NuGetResources.resx
│ │ │ ├── PackageSourceBuilder.cs
│ │ │ ├── Program.cs
│ │ │ ├── README.md
│ │ │ ├── RegistryKeyUtility.cs
│ │ │ ├── SettingsCredentialProvider.cs
│ │ │ ├── StreamExtensions.cs
│ │ │ ├── UILanguageOverride.cs
│ │ │ ├── app.manifest
│ │ │ ├── ilmerge.props
│ │ │ └── xlf
│ │ │ │ ├── NuGetCommand.cs.xlf
│ │ │ │ ├── NuGetCommand.de.xlf
│ │ │ │ ├── NuGetCommand.es.xlf
│ │ │ │ ├── NuGetCommand.fr.xlf
│ │ │ │ ├── NuGetCommand.it.xlf
│ │ │ │ ├── NuGetCommand.ja.xlf
│ │ │ │ ├── NuGetCommand.ko.xlf
│ │ │ │ ├── NuGetCommand.pl.xlf
│ │ │ │ ├── NuGetCommand.pt-BR.xlf
│ │ │ │ ├── NuGetCommand.ru.xlf
│ │ │ │ ├── NuGetCommand.tr.xlf
│ │ │ │ ├── NuGetCommand.zh-Hans.xlf
│ │ │ │ ├── NuGetCommand.zh-Hant.xlf
│ │ │ │ ├── NuGetResources.cs.xlf
│ │ │ │ ├── NuGetResources.de.xlf
│ │ │ │ ├── NuGetResources.es.xlf
│ │ │ │ ├── NuGetResources.fr.xlf
│ │ │ │ ├── NuGetResources.it.xlf
│ │ │ │ ├── NuGetResources.ja.xlf
│ │ │ │ ├── NuGetResources.ko.xlf
│ │ │ │ ├── NuGetResources.pl.xlf
│ │ │ │ ├── NuGetResources.pt-BR.xlf
│ │ │ │ ├── NuGetResources.ru.xlf
│ │ │ │ ├── NuGetResources.tr.xlf
│ │ │ │ ├── NuGetResources.zh-Hans.xlf
│ │ │ │ └── NuGetResources.zh-Hant.xlf
│ │ ├── NuGet.Console
│ │ │ ├── Console
│ │ │ │ ├── ConsoleDispatcher.cs
│ │ │ │ ├── IHostNameMetadata.cs
│ │ │ │ ├── IPrivateConsoleStatus.cs
│ │ │ │ ├── InputHistory.cs
│ │ │ │ ├── OleCommandFilter.cs
│ │ │ │ ├── OrderedSpans.cs
│ │ │ │ └── TextFormatClassifier.cs
│ │ │ ├── ConsoleInitializer.cs
│ │ │ ├── DisplayNameAttribute.cs
│ │ │ ├── GlobalSuppressions.cs
│ │ │ ├── Guids.cs
│ │ │ ├── HostNameAttribute.cs
│ │ │ ├── ICommandExpansion.cs
│ │ │ ├── ICommandExpansionProvider.cs
│ │ │ ├── ICommandTokenizer.cs
│ │ │ ├── ICommandTokenizerProvider.cs
│ │ │ ├── IConsoleInitializer.cs
│ │ │ ├── IHostInitializer.cs
│ │ │ ├── IHostMetadata.cs
│ │ │ ├── IHostProvider.cs
│ │ │ ├── IPSNuGetProjectContext.cs
│ │ │ ├── IPathExpansion.cs
│ │ │ ├── IPowerConsoleService.cs
│ │ │ ├── IPowerConsoleWindow.cs
│ │ │ ├── ITabExpansion.cs
│ │ │ ├── IWpfConsole.cs
│ │ │ ├── IWpfConsoleService.cs
│ │ │ ├── NativeMethods.cs
│ │ │ ├── NuGet.Console.csproj
│ │ │ ├── OutputConsole
│ │ │ │ ├── BaseOutputConsole.cs
│ │ │ │ ├── BuildOutputConsole.cs
│ │ │ │ ├── ChannelOutputConsole.cs
│ │ │ │ ├── OutputConsole.cs
│ │ │ │ ├── OutputConsoleProvider.cs
│ │ │ │ └── SharedOutputConsole.cs
│ │ │ ├── PkgCmdID.cs
│ │ │ ├── PowerConsole
│ │ │ │ ├── ClassifierProvider.cs
│ │ │ │ ├── CompletionSourceProvider.cs
│ │ │ │ ├── HostInfo.cs
│ │ │ │ └── PowerConsoleWindow.cs
│ │ │ ├── PowerConsoleToolWindow.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── ScriptExecutor.cs
│ │ │ ├── SimpleExpansion.cs
│ │ │ ├── Token.cs
│ │ │ ├── TokenType.cs
│ │ │ ├── Utils
│ │ │ │ ├── CommandUiUtilities.cs
│ │ │ │ ├── CommonExtensionMethods.cs
│ │ │ │ ├── ExtensionMethods.cs
│ │ │ │ ├── Marshaler.cs
│ │ │ │ ├── ObjectWithFactory.cs
│ │ │ │ └── UtilityMethods.cs
│ │ │ ├── WpfConsole
│ │ │ │ ├── WpfConsole.cs
│ │ │ │ ├── WpfConsoleClassifier.cs
│ │ │ │ ├── WpfConsoleCompletionSource.cs
│ │ │ │ ├── WpfConsoleKeyProcessor.cs
│ │ │ │ └── WpfConsoleService.cs
│ │ │ ├── Xamls
│ │ │ │ ├── ConsoleContainer.xaml
│ │ │ │ └── ConsoleContainer.xaml.cs
│ │ │ └── xlf
│ │ │ │ ├── Resources.cs.xlf
│ │ │ │ ├── Resources.de.xlf
│ │ │ │ ├── Resources.es.xlf
│ │ │ │ ├── Resources.fr.xlf
│ │ │ │ ├── Resources.it.xlf
│ │ │ │ ├── Resources.ja.xlf
│ │ │ │ ├── Resources.ko.xlf
│ │ │ │ ├── Resources.pl.xlf
│ │ │ │ ├── Resources.pt-BR.xlf
│ │ │ │ ├── Resources.ru.xlf
│ │ │ │ ├── Resources.tr.xlf
│ │ │ │ ├── Resources.zh-Hans.xlf
│ │ │ │ └── Resources.zh-Hant.xlf
│ │ ├── NuGet.Indexing
│ │ │ ├── CamelCaseFilter.cs
│ │ │ ├── DescriptionAnalyzer.cs
│ │ │ ├── DotTokenizer.cs
│ │ │ ├── DownloadCountResultsIndexer.cs
│ │ │ ├── GlobalSuppressions.cs
│ │ │ ├── IPackageSearchMetadataSplicer.cs
│ │ │ ├── ISearchResultsAggregator.cs
│ │ │ ├── ISearchResultsIndexer.cs
│ │ │ ├── IdentifierAnalyzer.cs
│ │ │ ├── IdentifierKeywordAnalyzer.cs
│ │ │ ├── NuGet.Indexing.csproj
│ │ │ ├── NuGetQuery.cs
│ │ │ ├── OwnerAnalyzer.cs
│ │ │ ├── PackageAnalyzer.cs
│ │ │ ├── PackageSearchMetadataSplicer.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── PublicAPI.Shipped.txt
│ │ │ ├── PublicAPI.Unshipped.txt
│ │ │ ├── README.md
│ │ │ ├── RelevanceSearchResultsIndexer.cs
│ │ │ ├── SearchResultsAggregator.cs
│ │ │ ├── SemanticVersionFilter.cs
│ │ │ ├── SortExtensions.cs
│ │ │ ├── TagsAnalyzer.cs
│ │ │ ├── TokenizingHelper.cs
│ │ │ └── VersionAnalyzer.cs
│ │ ├── NuGet.MSSigning.Extensions
│ │ │ ├── GlobalSuppressions.cs
│ │ │ ├── MSSignAbstract.cs
│ │ │ ├── MSSignCommand.cs
│ │ │ ├── NuGet.MSSigning.Extensions.csproj
│ │ │ ├── NuGetMSSignCommand.Designer.cs
│ │ │ ├── NuGetMSSignCommand.resx
│ │ │ ├── RepoSignCommand.cs
│ │ │ ├── ilmerge.props
│ │ │ └── xlf
│ │ │ │ ├── NuGetMSSignCommand.cs.xlf
│ │ │ │ ├── NuGetMSSignCommand.de.xlf
│ │ │ │ ├── NuGetMSSignCommand.es.xlf
│ │ │ │ ├── NuGetMSSignCommand.fr.xlf
│ │ │ │ ├── NuGetMSSignCommand.it.xlf
│ │ │ │ ├── NuGetMSSignCommand.ja.xlf
│ │ │ │ ├── NuGetMSSignCommand.ko.xlf
│ │ │ │ ├── NuGetMSSignCommand.pl.xlf
│ │ │ │ ├── NuGetMSSignCommand.pt-BR.xlf
│ │ │ │ ├── NuGetMSSignCommand.ru.xlf
│ │ │ │ ├── NuGetMSSignCommand.tr.xlf
│ │ │ │ ├── NuGetMSSignCommand.zh-Hans.xlf
│ │ │ │ └── NuGetMSSignCommand.zh-Hant.xlf
│ │ ├── NuGet.PackageManagement.PowerShellCmdlets
│ │ │ ├── AsyncPowerShellHost.cs
│ │ │ ├── Cmdlets
│ │ │ │ ├── AddBindingRedirectCommand.cs
│ │ │ │ ├── FindPackageCommand.cs
│ │ │ │ ├── GetPackageCommand.cs
│ │ │ │ ├── GetProjectCommand.cs
│ │ │ │ ├── InstallPackageCommand.cs
│ │ │ │ ├── SyncPackageCommand.cs
│ │ │ │ ├── TabExpansionCommand.cs
│ │ │ │ ├── UninstallPackageCommand.cs
│ │ │ │ └── UpdatePackageCommand.cs
│ │ │ ├── Command.cs
│ │ │ ├── CommandParser.cs
│ │ │ ├── CommandTokenizer.cs
│ │ │ ├── Common
│ │ │ │ └── CommonResources.cs
│ │ │ ├── DebugConstants.cs
│ │ │ ├── Exceptions
│ │ │ │ └── PackageSourceException.cs
│ │ │ ├── GlobalSuppressions.cs
│ │ │ ├── HostUtilities.cs
│ │ │ ├── IRunspaceManager.cs
│ │ │ ├── Model
│ │ │ │ ├── PowerShellExecutionMessage.cs
│ │ │ │ ├── PowerShellInstalledPackage.cs
│ │ │ │ ├── PowerShellPackage.cs
│ │ │ │ ├── PowerShellRemotePackage.cs
│ │ │ │ ├── PowerShellUpdatePackage.cs
│ │ │ │ └── VersionType.cs
│ │ │ ├── NativeMethods.cs
│ │ │ ├── NuGet.PackageManagement.PowerShellCmdlets.csproj
│ │ │ ├── NuGetHostRawUserInterface.cs
│ │ │ ├── NuGetHostUserInterface.cs
│ │ │ ├── NuGetPSHost.cs
│ │ │ ├── NuGetPowerShellBaseCommand.cs
│ │ │ ├── PSTypeWrapper.cs
│ │ │ ├── PackageActionBaseCommand.cs
│ │ │ ├── PowerShellHost.cs
│ │ │ ├── PowerShellHostService.cs
│ │ │ ├── ProjectExtensions.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── Providers
│ │ │ │ ├── CommandTokenizerProvider.cs
│ │ │ │ ├── PowerShellCommandExpansionProvider.cs
│ │ │ │ └── PowerShellHostProvider.cs
│ │ │ ├── RegistryHelper.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── RunspaceDispatcher.cs
│ │ │ ├── RunspaceManager.cs
│ │ │ ├── Scripts
│ │ │ │ ├── Add-WrapperMembers.ps1
│ │ │ │ ├── NuGet.Format.ps1xml
│ │ │ │ ├── NuGet.PackageManagement.PowerShellCmdlets.dll-Help.xml
│ │ │ │ ├── NuGet.Types.ps1xml
│ │ │ │ ├── NuGet.psd1
│ │ │ │ ├── Profile.ps1
│ │ │ │ ├── about_NuGet.Cmdlets.help.txt
│ │ │ │ ├── cs
│ │ │ │ │ └── about_NuGet.Cmdlets.help.txt
│ │ │ │ ├── de
│ │ │ │ │ └── about_NuGet.Cmdlets.help.txt
│ │ │ │ ├── es
│ │ │ │ │ └── about_NuGet.Cmdlets.help.txt
│ │ │ │ ├── fr
│ │ │ │ │ └── about_NuGet.Cmdlets.help.txt
│ │ │ │ ├── it
│ │ │ │ │ └── about_NuGet.Cmdlets.help.txt
│ │ │ │ ├── ja
│ │ │ │ │ └── about_NuGet.Cmdlets.help.txt
│ │ │ │ ├── ko
│ │ │ │ │ └── about_NuGet.Cmdlets.help.txt
│ │ │ │ ├── nuget.psm1
│ │ │ │ ├── pl
│ │ │ │ │ └── about_NuGet.Cmdlets.help.txt
│ │ │ │ ├── pt-BR
│ │ │ │ │ └── about_NuGet.Cmdlets.help.txt
│ │ │ │ ├── ru
│ │ │ │ │ └── about_NuGet.Cmdlets.help.txt
│ │ │ │ ├── tr
│ │ │ │ │ └── about_NuGet.Cmdlets.help.txt
│ │ │ │ ├── zh-Hans
│ │ │ │ │ └── about_NuGet.Cmdlets.help.txt
│ │ │ │ └── zh-Hant
│ │ │ │ │ └── about_NuGet.Cmdlets.help.txt
│ │ │ ├── SourceValidationResult.cs
│ │ │ ├── SourceValidity.cs
│ │ │ ├── SyncPowerShellHost.cs
│ │ │ ├── UnsupportedHost.cs
│ │ │ ├── Utility
│ │ │ │ ├── IErrorHandler.cs
│ │ │ │ ├── NuGetErrorId.cs
│ │ │ │ ├── PSPathUtility.cs
│ │ │ │ ├── PackageSourceMappingUtility.cs
│ │ │ │ ├── PowerShellCmdletsUtility.cs
│ │ │ │ ├── ProgressActivityIds.cs
│ │ │ │ └── WebRequestEventArgs.cs
│ │ │ ├── Utils
│ │ │ │ ├── CommandExpansion.cs
│ │ │ │ ├── ComplexCommand.cs
│ │ │ │ ├── InstalledPackageEnumerator.cs
│ │ │ │ ├── MethodBinder.cs
│ │ │ │ └── TypeWrapper.cs
│ │ │ └── xlf
│ │ │ │ ├── Resources.cs.xlf
│ │ │ │ ├── Resources.de.xlf
│ │ │ │ ├── Resources.es.xlf
│ │ │ │ ├── Resources.fr.xlf
│ │ │ │ ├── Resources.it.xlf
│ │ │ │ ├── Resources.ja.xlf
│ │ │ │ ├── Resources.ko.xlf
│ │ │ │ ├── Resources.pl.xlf
│ │ │ │ ├── Resources.pt-BR.xlf
│ │ │ │ ├── Resources.ru.xlf
│ │ │ │ ├── Resources.tr.xlf
│ │ │ │ ├── Resources.zh-Hans.xlf
│ │ │ │ └── Resources.zh-Hant.xlf
│ │ ├── NuGet.PackageManagement.UI
│ │ │ ├── Actions
│ │ │ │ ├── AccessiblePackageIdentity.cs
│ │ │ │ ├── PackagesConfigToPackageReferenceMigrator.cs
│ │ │ │ ├── PreviewResult.cs
│ │ │ │ ├── UIActionEngine.cs
│ │ │ │ ├── UpdatePreviewResult.cs
│ │ │ │ └── UpgradeLogger.cs
│ │ │ ├── Automation
│ │ │ │ ├── ButtonHyperlinkAutomationPeer.cs
│ │ │ │ ├── ISelectableItem.cs
│ │ │ │ ├── ISelectableItemsControl.cs
│ │ │ │ ├── ListBoxToggleableItemsAutomationPeer.cs
│ │ │ │ ├── ListViewToggleableItemsAutomationPeer.cs
│ │ │ │ └── ToggleableItemAutomationPeer.cs
│ │ │ ├── Common
│ │ │ │ └── ErrorFloodGate.cs
│ │ │ ├── Constants.cs
│ │ │ ├── Controls
│ │ │ │ └── ButtonHyperlink.cs
│ │ │ ├── Converters
│ │ │ │ ├── AccessibleConverter.cs
│ │ │ │ ├── AdditionConverter.cs
│ │ │ │ ├── BooleanToFontWeightConverter.cs
│ │ │ │ ├── BooleanToGridRowHeightConverter.cs
│ │ │ │ ├── CollectionToStringConverter.cs
│ │ │ │ ├── DeprecationToDeprecationLabelStateConverter.cs
│ │ │ │ ├── EnumDescriptionValueConverter.cs
│ │ │ │ ├── EnumerableToVisibilityConverter.cs
│ │ │ │ ├── FontSizeConverter.cs
│ │ │ │ ├── FormattedStringPartConverter.cs
│ │ │ │ ├── GreaterThanThresholdToVisibilityConverter.cs
│ │ │ │ ├── InstalledVersionsCountConverter.cs
│ │ │ │ ├── IntToVulnerabilitySeverityConverter.cs
│ │ │ │ ├── InverseBooleanConverter.cs
│ │ │ │ ├── InverseNullToVisibilityConverter.cs
│ │ │ │ ├── NotEqualConverter.cs
│ │ │ │ ├── NotNullOrTrueToBooleanConverter.cs
│ │ │ │ ├── NotNullToBooleanConverter.cs
│ │ │ │ ├── NuGetFrameworkToStringConverter.cs
│ │ │ │ ├── NuGetFrameworkToVisibilityConverter.cs
│ │ │ │ ├── NullToBooleanConverter.cs
│ │ │ │ ├── NullToVisibilityConverter.cs
│ │ │ │ ├── PackageLevelGroupToBooleanConverter.cs
│ │ │ │ ├── PackageLevelToGroupNameConverter.cs
│ │ │ │ ├── ParametersToHyperlinkTupleConverter.cs
│ │ │ │ ├── ProjectAndSolutionViewHeightConverter.cs
│ │ │ │ ├── ProjectAndSolutionViewMinHeightConverter.cs
│ │ │ │ ├── RadioBoolToIntConverter.cs
│ │ │ │ ├── StringFormatConverter.cs
│ │ │ │ ├── StyleKeyConverter.cs
│ │ │ │ ├── SubstractionConverter.cs
│ │ │ │ ├── SummaryToFontStyleConverter.cs
│ │ │ │ ├── SummaryToStringConverter.cs
│ │ │ │ ├── TooltipConverter.cs
│ │ │ │ └── VersionToStringConverter.cs
│ │ │ ├── Design
│ │ │ │ └── LoadingStatusViewModelSampleData.xaml
│ │ │ ├── DisplayVersion.cs
│ │ │ ├── GlobalSuppressions.cs
│ │ │ ├── IItemLoader.cs
│ │ │ ├── IPackageItemLoader.cs
│ │ │ ├── InfiniteScrollListItemStyleSelector.cs
│ │ │ ├── LoadingStatusIndicator.cs
│ │ │ ├── Models
│ │ │ │ ├── DependencyBehaviorItem.cs
│ │ │ │ ├── DetailControlModel.cs
│ │ │ │ ├── DetailedPackageMetadata.cs
│ │ │ │ ├── FileConflictActionOptionItem.cs
│ │ │ │ ├── FilterItem.cs
│ │ │ │ ├── FreeText.cs
│ │ │ │ ├── IText.cs
│ │ │ │ ├── IconBitmapStatus.cs
│ │ │ │ ├── ItemFilter.cs
│ │ │ │ ├── ItemsChangeObservableCollectionBase.cs
│ │ │ │ ├── LicenseFileData.cs
│ │ │ │ ├── LicenseFileText.cs
│ │ │ │ ├── LicenseText.cs
│ │ │ │ ├── NuGetProjectUpgradeDependencyItem.cs
│ │ │ │ ├── NuGetProjectUpgradeWindowModel.cs
│ │ │ │ ├── Package
│ │ │ │ │ ├── DeprecationPackageMetadataCapability.cs
│ │ │ │ │ ├── DirectlyReferencedPackageModel.cs
│ │ │ │ │ ├── EmbeddedResourcesCapability.cs
│ │ │ │ │ ├── IDeprecationCapable.cs
│ │ │ │ │ ├── IEmbeddedResourcesCapable.cs
│ │ │ │ │ ├── IPackageMetadataRetrievalAdapter.cs
│ │ │ │ │ ├── IVulnerableCapable.cs
│ │ │ │ │ ├── LocalPackageModel.cs
│ │ │ │ │ ├── PackageDeprecationReason.cs
│ │ │ │ │ ├── PackageMetadataRetrievalAdapter.cs
│ │ │ │ │ ├── PackageModel.cs
│ │ │ │ │ ├── PackageModelFactory.cs
│ │ │ │ │ ├── RecommendedPackageModel.cs
│ │ │ │ │ ├── RemotePackageModel.cs
│ │ │ │ │ ├── TransitivelyReferencedPackageModel.cs
│ │ │ │ │ ├── VulnerableCapabilityBase.cs
│ │ │ │ │ ├── VulnerableDatabaseCapability.cs
│ │ │ │ │ └── VulnerablePackageMetadataCapability.cs
│ │ │ │ ├── PackageDependencyMetadata.cs
│ │ │ │ ├── PackageDependencySetMetadata.cs
│ │ │ │ ├── PackageDetailControlModel.cs
│ │ │ │ ├── PackageFilterOptions.cs
│ │ │ │ ├── PackageIconMonikers.cs
│ │ │ │ ├── PackageItemDeprecationLabelState.cs
│ │ │ │ ├── PackageLicenseInfo.cs
│ │ │ │ ├── PackageManagerModel.cs
│ │ │ │ ├── PackageMetadataTab.cs
│ │ │ │ ├── PackageSearchStatus.cs
│ │ │ │ ├── PackageSolutionDetailControlModel.cs
│ │ │ │ ├── PackageStatus.cs
│ │ │ │ ├── PreviewWindowModel.cs
│ │ │ │ ├── ProjectVersionConstraint.cs
│ │ │ │ └── WarningText.cs
│ │ │ ├── NativeMethods.cs
│ │ │ ├── NuGet.PackageManagement.UI.csproj
│ │ │ ├── NuGetPackageManagerControlSearchTask.cs
│ │ │ ├── Options
│ │ │ │ └── xlf
│ │ │ │ │ ├── GeneralOptionControl.cs.xlf
│ │ │ │ │ ├── GeneralOptionControl.de.xlf
│ │ │ │ │ ├── GeneralOptionControl.es.xlf
│ │ │ │ │ ├── GeneralOptionControl.fr.xlf
│ │ │ │ │ ├── GeneralOptionControl.it.xlf
│ │ │ │ │ ├── GeneralOptionControl.ja.xlf
│ │ │ │ │ ├── GeneralOptionControl.ko.xlf
│ │ │ │ │ ├── GeneralOptionControl.pl.xlf
│ │ │ │ │ ├── GeneralOptionControl.pt-BR.xlf
│ │ │ │ │ ├── GeneralOptionControl.ru.xlf
│ │ │ │ │ ├── GeneralOptionControl.tr.xlf
│ │ │ │ │ ├── GeneralOptionControl.zh-Hans.xlf
│ │ │ │ │ ├── GeneralOptionControl.zh-Hant.xlf
│ │ │ │ │ ├── PackageSourcesOptionsControl.cs.xlf
│ │ │ │ │ ├── PackageSourcesOptionsControl.de.xlf
│ │ │ │ │ ├── PackageSourcesOptionsControl.es.xlf
│ │ │ │ │ ├── PackageSourcesOptionsControl.fr.xlf
│ │ │ │ │ ├── PackageSourcesOptionsControl.it.xlf
│ │ │ │ │ ├── PackageSourcesOptionsControl.ja.xlf
│ │ │ │ │ ├── PackageSourcesOptionsControl.ko.xlf
│ │ │ │ │ ├── PackageSourcesOptionsControl.pl.xlf
│ │ │ │ │ ├── PackageSourcesOptionsControl.pt-BR.xlf
│ │ │ │ │ ├── PackageSourcesOptionsControl.ru.xlf
│ │ │ │ │ ├── PackageSourcesOptionsControl.tr.xlf
│ │ │ │ │ ├── PackageSourcesOptionsControl.zh-Hans.xlf
│ │ │ │ │ └── PackageSourcesOptionsControl.zh-Hant.xlf
│ │ │ ├── OptionsViewModel.cs
│ │ │ ├── PackageInstallationInfo.cs
│ │ │ ├── PackageItemLoader.cs
│ │ │ ├── PackageLicenseUtilities.cs
│ │ │ ├── PackageLoadContext.cs
│ │ │ ├── PackageManagerControlCommands.cs
│ │ │ ├── PackageManagerToolWindowPane.cs
│ │ │ ├── PackageManagerWindowPane.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Resources
│ │ │ │ ├── Brushes.cs
│ │ │ │ ├── Commands.cs
│ │ │ │ ├── Images.cs
│ │ │ │ ├── PackageIconMonikers.tt
│ │ │ │ ├── Resources.xaml
│ │ │ │ ├── Resources.xaml.cs
│ │ │ │ ├── UpgradeReport.xslt
│ │ │ │ └── packageicon.png
│ │ │ ├── ShowUpdatePackageOptions.cs
│ │ │ ├── Styles
│ │ │ │ └── LastItemToVisibilityConverter.cs
│ │ │ ├── Telemetry
│ │ │ │ └── UpgradeInformationTelemetryEvent.cs
│ │ │ ├── Themes
│ │ │ │ └── generic.xaml
│ │ │ ├── UserAction.cs
│ │ │ ├── UserInterfaceService
│ │ │ │ ├── DataStreamFromComStream.cs
│ │ │ │ ├── IModalProgressDialogSession.cs
│ │ │ │ ├── INuGetUI.cs
│ │ │ │ ├── INuGetUIContext.cs
│ │ │ │ ├── INuGetUIFactory.cs
│ │ │ │ ├── INuGetUIOptionsContext.cs
│ │ │ │ ├── IUserSettingsManager.cs
│ │ │ │ ├── NuGetSettings.cs
│ │ │ │ ├── NuGetSettingsSerializer.cs
│ │ │ │ ├── NuGetSolutionManagerServiceWrapper.cs
│ │ │ │ ├── NuGetSourcesServiceWrapper.cs
│ │ │ │ ├── NuGetUI.cs
│ │ │ │ ├── NuGetUIContext.cs
│ │ │ │ ├── NuGetUIFactory.cs
│ │ │ │ ├── NuGetUIOptionsContext.cs
│ │ │ │ ├── NuGetUIProjectContext.cs
│ │ │ │ ├── ProgressDialogData.cs
│ │ │ │ ├── SolutionUserOptions.cs
│ │ │ │ ├── VisualStudioProgress.cs
│ │ │ │ └── VisualStudioProgressDialogSession.cs
│ │ │ ├── UserSettings.cs
│ │ │ ├── Utility
│ │ │ │ ├── IconBitmapStatusUtility.cs
│ │ │ │ ├── NuGetSearchServiceReconnector.cs
│ │ │ │ ├── PackageSourceMappingUtility.cs
│ │ │ │ ├── ProjectUtility.cs
│ │ │ │ ├── RestoreBarLogger.cs
│ │ │ │ ├── UIUtility.cs
│ │ │ │ └── VsUtility.cs
│ │ │ ├── ViewModels
│ │ │ │ ├── ClearNuGetLocalsViewModel.cs
│ │ │ │ ├── IPackageManagerViewModel.cs
│ │ │ │ ├── KnownOwnerViewModel.cs
│ │ │ │ ├── LoadingStatusViewModel.cs
│ │ │ │ ├── PackageDetailsTabViewModel.cs
│ │ │ │ ├── PackageItemViewModel.cs
│ │ │ │ ├── PackageSourceMappingActionViewModel.cs
│ │ │ │ ├── ReadmePreviewViewModel.cs
│ │ │ │ ├── TitledPageViewModelBase.cs
│ │ │ │ └── ViewModelBase.cs
│ │ │ ├── Xamls
│ │ │ │ ├── ArrowGlyphAdorner.cs
│ │ │ │ ├── AuthorAndDownloadCount.xaml
│ │ │ │ ├── AuthorAndDownloadCount.xaml.cs
│ │ │ │ ├── ClearNuGetLocalResourcesWindow.xaml
│ │ │ │ ├── ClearNuGetLocalResourcesWindow.xaml.cs
│ │ │ │ ├── DeprecatedFrameworkWindow.xaml
│ │ │ │ ├── DeprecatedFrameworkWindow.xaml.cs
│ │ │ │ ├── DeprecationControl.xaml
│ │ │ │ ├── DeprecationControl.xaml.cs
│ │ │ │ ├── DetailControl.xaml
│ │ │ │ ├── DetailControl.xaml.cs
│ │ │ │ ├── DownloadIndicator.xaml
│ │ │ │ ├── FileConflictDialog.xaml
│ │ │ │ ├── FileConflictDialog.xaml.cs
│ │ │ │ ├── InfiniteScrollList.xaml
│ │ │ │ ├── InfiniteScrollList.xaml.cs
│ │ │ │ ├── InfiniteScrollListBox.cs
│ │ │ │ ├── LicenseAcceptanceWindow.xaml
│ │ │ │ ├── LicenseAcceptanceWindow.xaml.cs
│ │ │ │ ├── LicenseFileWindow.xaml
│ │ │ │ ├── LicenseFileWindow.xaml.cs
│ │ │ │ ├── LoadingStatusBar.xaml
│ │ │ │ ├── LoadingStatusBar.xaml.cs
│ │ │ │ ├── NuGetProjectUpgradeWindow.xaml
│ │ │ │ ├── NuGetProjectUpgradeWindow.xaml.cs
│ │ │ │ ├── OptionsControl.xaml
│ │ │ │ ├── OptionsControl.xaml.cs
│ │ │ │ ├── PRMigratorBar.xaml
│ │ │ │ ├── PRMigratorBar.xaml.cs
│ │ │ │ ├── PackageDetailsTabControl.xaml
│ │ │ │ ├── PackageDetailsTabControl.xaml.cs
│ │ │ │ ├── PackageItemControl.xaml
│ │ │ │ ├── PackageItemControl.xaml.cs
│ │ │ │ ├── PackageItemDeprecationLabel.xaml
│ │ │ │ ├── PackageItemDeprecationLabel.xaml.cs
│ │ │ │ ├── PackageManagementFormatWindow.xaml
│ │ │ │ ├── PackageManagementFormatWindow.xaml.cs
│ │ │ │ ├── PackageManagerControl.xaml
│ │ │ │ ├── PackageManagerControl.xaml.cs
│ │ │ │ ├── PackageManagerTopPanel.xaml
│ │ │ │ ├── PackageManagerTopPanel.xaml.cs
│ │ │ │ ├── PackageMetadataControl.xaml
│ │ │ │ ├── PackageMetadataControl.xaml.cs
│ │ │ │ ├── PackageReadmeControl.xaml
│ │ │ │ ├── PackageReadmeControl.xaml.cs
│ │ │ │ ├── PackageRestoreBar.xaml
│ │ │ │ ├── PackageRestoreBar.xaml.cs
│ │ │ │ ├── PackageSourceMappingActionControl.xaml
│ │ │ │ ├── PackageSourceMappingActionControl.xaml.cs
│ │ │ │ ├── PrefixReservedIndicator.xaml
│ │ │ │ ├── PreviewWindow.xaml
│ │ │ │ ├── PreviewWindow.xaml.cs
│ │ │ │ ├── ProductUpdateBar.xaml
│ │ │ │ ├── ProductUpdateBar.xaml.cs
│ │ │ │ ├── ProjectView.xaml
│ │ │ │ ├── ProjectView.xaml.cs
│ │ │ │ ├── RestartRequestBar.xaml
│ │ │ │ ├── RestartRequestBar.xaml.cs
│ │ │ │ ├── SolutionView.xaml
│ │ │ │ ├── SolutionView.xaml.cs
│ │ │ │ ├── SortableColumnHeaderAttachedProperties.cs
│ │ │ │ ├── Spinner.xaml
│ │ │ │ ├── Spinner.xaml.cs
│ │ │ │ ├── ToggleableListView.cs
│ │ │ │ ├── UninstallIndicator.xaml
│ │ │ │ ├── UpdateAvailableIndicator.xaml
│ │ │ │ ├── VulnerabilitiesControl.xaml
│ │ │ │ └── VulnerabilitiesControl.xaml.cs
│ │ │ └── xlf
│ │ │ │ ├── Resources.cs.xlf
│ │ │ │ ├── Resources.de.xlf
│ │ │ │ ├── Resources.es.xlf
│ │ │ │ ├── Resources.fr.xlf
│ │ │ │ ├── Resources.it.xlf
│ │ │ │ ├── Resources.ja.xlf
│ │ │ │ ├── Resources.ko.xlf
│ │ │ │ ├── Resources.pl.xlf
│ │ │ │ ├── Resources.pt-BR.xlf
│ │ │ │ ├── Resources.ru.xlf
│ │ │ │ ├── Resources.tr.xlf
│ │ │ │ ├── Resources.zh-Hans.xlf
│ │ │ │ └── Resources.zh-Hant.xlf
│ │ ├── NuGet.PackageManagement.VisualStudio
│ │ │ ├── Common
│ │ │ │ ├── AsyncLockAwaiter.cs
│ │ │ │ ├── AsyncLockReleaser.cs
│ │ │ │ ├── IAsyncLockAwaitable.cs
│ │ │ │ ├── IProjectContextInfoExtensions.cs
│ │ │ │ ├── InstalledAndTransitivePackageCollections.cs
│ │ │ │ ├── PackageCollection.cs
│ │ │ │ ├── PackageCollectionExtensions.cs
│ │ │ │ ├── PackageCollectionItem.cs
│ │ │ │ ├── PackageCollectionItemExtensions.cs
│ │ │ │ └── VersionCollectionExtensions.cs
│ │ │ ├── CommonResources.cs
│ │ │ ├── CommonResources.resx
│ │ │ ├── DefaultVSCredentialServiceProvider.cs
│ │ │ ├── Exceptions
│ │ │ │ └── ProjectNotNominatedException.cs
│ │ │ ├── GlobalSuppressions.cs
│ │ │ ├── Handlers
│ │ │ │ ├── ProjectRetargetingHandler.cs
│ │ │ │ └── ProjectUpgradeHandler.cs
│ │ │ ├── ICredentialServiceProvider.cs
│ │ │ ├── IDE
│ │ │ │ ├── ExtensibleSourceRepositoryProvider.cs
│ │ │ │ ├── IDocumentOpener.cs
│ │ │ │ ├── VSDeleteOnRestartManager.cs
│ │ │ │ ├── VSDocumentOpener.cs
│ │ │ │ ├── VSPackageRestoreManager.cs
│ │ │ │ ├── VSProductUpdateService.cs
│ │ │ │ ├── VSSolutionManager.cs
│ │ │ │ └── VsCommonOperations.cs
│ │ │ ├── INuGetUIOptionsContext.cs
│ │ │ ├── Migrate
│ │ │ │ ├── PackageSpecProjectJsonMigrationCandidate.cs
│ │ │ │ ├── ProjectJsonMigrationCandidatePackageSpecReader.cs
│ │ │ │ └── ProjectJsonToPackageRefMigrator.cs
│ │ │ ├── NuGet.PackageManagement.VisualStudio.csproj
│ │ │ ├── NuGetUIOptionsContext.cs
│ │ │ ├── Options
│ │ │ │ ├── ConfigurationFilesPage.cs
│ │ │ │ ├── GeneralPage.cs
│ │ │ │ ├── NuGetExternalSettingsProvider.cs
│ │ │ │ ├── OpenFileArrayItemCommand.cs
│ │ │ │ ├── PackageSourceMappingPage.cs
│ │ │ │ ├── PackageSourceMappingUtility.cs
│ │ │ │ ├── PackageSourceValidator.cs
│ │ │ │ └── PackageSourcesPage.cs
│ │ │ ├── OptionsPageActivator.cs
│ │ │ ├── PackageFeeds
│ │ │ │ ├── ConsolidatePackageFeed.cs
│ │ │ │ ├── ContinuationToken.cs
│ │ │ │ ├── IAutoCompleteProvider.cs
│ │ │ │ ├── IPackageFeed.cs
│ │ │ │ ├── IPackageMetadataProvider.cs
│ │ │ │ ├── InstalledAndTransitivePackageFeed.cs
│ │ │ │ ├── InstalledPackageFeed.cs
│ │ │ │ ├── LoadingStatusExtensionMethods.cs
│ │ │ │ ├── MultiSourceAutoCompleteProvider.cs
│ │ │ │ ├── MultiSourcePackageFeed.cs
│ │ │ │ ├── MultiSourcePackageMetadataProvider.cs
│ │ │ │ ├── PackageFeedEnumerator.cs
│ │ │ │ ├── PackageSearchMetadataCache.cs
│ │ │ │ ├── PackageSourceMoniker.cs
│ │ │ │ ├── PlainPackageFeedBase.cs
│ │ │ │ ├── RecommenderPackageFeed.cs
│ │ │ │ ├── RefreshToken.cs
│ │ │ │ ├── SearchResult.cs
│ │ │ │ ├── SourceRepositoryExtensions.cs
│ │ │ │ └── UpdatePackageFeed.cs
│ │ │ ├── ProjectServices
│ │ │ │ ├── CpsProjectSystemReferenceReader.cs
│ │ │ │ ├── CpsProjectSystemServices.cs
│ │ │ │ ├── NativeProjectSystemReferencesReader.cs
│ │ │ │ ├── VsCoreProjectSystemReferenceReader.cs
│ │ │ │ ├── VsCoreProjectSystemServices.cs
│ │ │ │ ├── VsManagedLanguagesProjectSystemServices.cs
│ │ │ │ ├── VsProjectBuildProperties.cs
│ │ │ │ └── VsProjectScriptHostService.cs
│ │ │ ├── ProjectSystems
│ │ │ │ ├── CpsProjectSystem.cs
│ │ │ │ ├── FSharpProjectSystem.cs
│ │ │ │ ├── JsProjectSystem.cs
│ │ │ │ ├── MSBuildNuGetProjectSystemFactory.cs
│ │ │ │ ├── NativeProjectSystem.cs
│ │ │ │ ├── VsCoreProjectSystem.cs
│ │ │ │ ├── VsMSBuildProjectSystem.cs
│ │ │ │ ├── WebProjectSystem.cs
│ │ │ │ ├── WebSiteProjectSystem.cs
│ │ │ │ ├── WindowsStoreProjectSystem.cs
│ │ │ │ └── WixProjectSystem.cs
│ │ │ ├── Projects
│ │ │ │ ├── CpsPackageReferenceProject.cs
│ │ │ │ ├── CpsPackageReferenceProjectProvider.cs
│ │ │ │ ├── FrameworkInstalledPackages.cs
│ │ │ │ ├── INuGetProjectProvider.cs
│ │ │ │ ├── IPackageReferenceProject.cs
│ │ │ │ ├── IVsProjectAdapterProvider.cs
│ │ │ │ ├── LegacyPackageReferenceProject.cs
│ │ │ │ ├── LegacyPackageReferenceProjectProvider.cs
│ │ │ │ ├── MSBuildNuGetProjectProvider.cs
│ │ │ │ ├── NuGetProjectFactory.cs
│ │ │ │ ├── PackageReferenceProject.cs
│ │ │ │ ├── ProjectJsonProjectProvider.cs
│ │ │ │ ├── ProjectPackages.cs
│ │ │ │ ├── ProjectProviderContext.cs
│ │ │ │ ├── ProjectSystemCache.cs
│ │ │ │ ├── VsMSBuildNuGetProject.cs
│ │ │ │ ├── VsMSBuildProjectSystemServices.cs
│ │ │ │ ├── VsProjectAdapter.cs
│ │ │ │ ├── VsProjectAdapterProvider.cs
│ │ │ │ └── VsProjectJsonNuGetProject.cs
│ │ │ ├── Prompts
│ │ │ │ ├── DeprecatedFrameworkModel.cs
│ │ │ │ └── DotnetDeprecatedPrompt.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── Runtime
│ │ │ │ ├── BindingRedirectManager.cs
│ │ │ │ ├── BindingRedirectResolver.cs
│ │ │ │ └── RemoteAssembly.cs
│ │ │ ├── Services
│ │ │ │ ├── BrokeredServicesUtilities.cs
│ │ │ │ ├── DefaultProjectThreadingService.cs
│ │ │ │ ├── IPackageVulnerabilityService.cs
│ │ │ │ ├── ISharedServiceState.cs
│ │ │ │ ├── IVsProjectThreadingService.cs
│ │ │ │ ├── NuGetLockService.cs
│ │ │ │ ├── NuGetPackageFileService.cs
│ │ │ │ ├── NuGetPackageSearchService.cs
│ │ │ │ ├── NuGetProjectManagerService.cs
│ │ │ │ ├── NuGetProjectManagerServiceState.cs
│ │ │ │ ├── NuGetProjectUpgraderService.cs
│ │ │ │ ├── NuGetSolutionManagerService.cs
│ │ │ │ ├── NuGetSourcesService.cs
│ │ │ │ ├── PackageSearchMetadataCacheItem.cs
│ │ │ │ ├── PackageSearchMetadataCacheItemEntry.cs
│ │ │ │ ├── PackageVulnerabilityService.cs
│ │ │ │ ├── SearchObject.cs
│ │ │ │ └── SharedServiceState.cs
│ │ │ ├── SourceControl
│ │ │ │ ├── DTESourceControlUtility.cs
│ │ │ │ ├── DefaultTFSSourceControlManager.cs
│ │ │ │ ├── VSSourceControlManagerProvider.cs
│ │ │ │ └── VsSourceControlTracker.cs
│ │ │ ├── Strings.Designer.cs
│ │ │ ├── Strings.resx
│ │ │ ├── Telemetry
│ │ │ │ ├── CacheMissException.cs
│ │ │ │ ├── DiagnosticTelemetryEvent.cs
│ │ │ │ ├── GetInstalledPackagesAsyncTelemetryEvent.cs
│ │ │ │ ├── HyperlinkType.cs
│ │ │ │ ├── IVsProjectBuildPropertiesTelemetry.cs
│ │ │ │ ├── NavigatedTelemetryEvent.cs
│ │ │ │ ├── NavigationOrigin.cs
│ │ │ │ ├── NavigationType.cs
│ │ │ │ ├── NuGetProjectType.cs
│ │ │ │ ├── PackageManagerCloseEvent.cs
│ │ │ │ ├── PackageManagerInstalledTabData.cs
│ │ │ │ ├── PackageManagerUIRefreshEvent.cs
│ │ │ │ ├── PackageSourceMappingStatus.cs
│ │ │ │ ├── ProjectTelemetryEvent.cs
│ │ │ │ ├── SearchPageTelemetryEvent.cs
│ │ │ │ ├── SearchSelectionTelemetryEvent.cs
│ │ │ │ ├── SearchTelemetryEvent.cs
│ │ │ │ ├── SourceTelemetry.cs
│ │ │ │ ├── TelemetryOnceEmitter.cs
│ │ │ │ ├── VSTelemetryServiceUtility.cs
│ │ │ │ └── VsProjectBuildPropertiesTelemetry.cs
│ │ │ ├── Utility
│ │ │ │ ├── EnvDTEProjectUtility.cs
│ │ │ │ ├── EnvDTESolutionUtility.cs
│ │ │ │ ├── FileWatchers
│ │ │ │ │ ├── FileWatcherFactory.cs
│ │ │ │ │ ├── IFileWatcher.cs
│ │ │ │ │ ├── IFileWatcherFactory.cs
│ │ │ │ │ ├── SolutionConfigFileWatcher.cs
│ │ │ │ │ └── UserConfigFileWatcher.cs
│ │ │ │ ├── FrameworkAssembly.cs
│ │ │ │ ├── FrameworkAssemblyResolver.cs
│ │ │ │ ├── GetPackageReferenceUtility.cs
│ │ │ │ ├── IProjectContextInfoUtility.cs
│ │ │ │ ├── MicrosoftBuildEvaluationProjectUtility.cs
│ │ │ │ ├── NativeMethods.cs
│ │ │ │ ├── NuGetProjectUpgradeUtility.cs
│ │ │ │ ├── ProjectInstalledPackage.cs
│ │ │ │ ├── ProjectRetargetingUtility.cs
│ │ │ │ ├── RefreshFileUtility.cs
│ │ │ │ ├── RegistrySettingUtility.cs
│ │ │ │ ├── RuntimeHelpers.cs
│ │ │ │ ├── SettingsHelper.cs
│ │ │ │ ├── SolutionUtility.cs
│ │ │ │ ├── TaskCombinators.cs
│ │ │ │ ├── VCProjectHelper.cs
│ │ │ │ └── VSRestoreSettingsUtilities.cs
│ │ │ ├── VSMachineWideSettings.cs
│ │ │ ├── VSSettings.cs
│ │ │ ├── VisualStudioActivityLogger.cs
│ │ │ ├── VisualStudioCredentialProvider.cs
│ │ │ ├── VsCredentialProviderAdapter.cs
│ │ │ ├── VsCredentialProviderImporter.cs
│ │ │ └── xlf
│ │ │ │ ├── CommonResources.cs.xlf
│ │ │ │ ├── CommonResources.de.xlf
│ │ │ │ ├── CommonResources.es.xlf
│ │ │ │ ├── CommonResources.fr.xlf
│ │ │ │ ├── CommonResources.it.xlf
│ │ │ │ ├── CommonResources.ja.xlf
│ │ │ │ ├── CommonResources.ko.xlf
│ │ │ │ ├── CommonResources.pl.xlf
│ │ │ │ ├── CommonResources.pt-BR.xlf
│ │ │ │ ├── CommonResources.ru.xlf
│ │ │ │ ├── CommonResources.tr.xlf
│ │ │ │ ├── CommonResources.zh-Hans.xlf
│ │ │ │ ├── CommonResources.zh-Hant.xlf
│ │ │ │ ├── Strings.cs.xlf
│ │ │ │ ├── Strings.de.xlf
│ │ │ │ ├── Strings.es.xlf
│ │ │ │ ├── Strings.fr.xlf
│ │ │ │ ├── Strings.it.xlf
│ │ │ │ ├── Strings.ja.xlf
│ │ │ │ ├── Strings.ko.xlf
│ │ │ │ ├── Strings.pl.xlf
│ │ │ │ ├── Strings.pt-BR.xlf
│ │ │ │ ├── Strings.ru.xlf
│ │ │ │ ├── Strings.tr.xlf
│ │ │ │ ├── Strings.zh-Hans.xlf
│ │ │ │ └── Strings.zh-Hant.xlf
│ │ ├── NuGet.SolutionRestoreManager
│ │ │ ├── AuditCheckResultCachingService.cs
│ │ │ ├── BrokeredServicesUtility.cs
│ │ │ ├── Directory.Build.targets
│ │ │ ├── GlobalSuppressions.cs
│ │ │ ├── Guids.cs
│ │ │ ├── IAuditCheckResultCachingService.cs
│ │ │ ├── ISolutionRestoreChecker.cs
│ │ │ ├── ISolutionRestoreJob.cs
│ │ │ ├── IVsNuGetProgressReporter.cs
│ │ │ ├── IVulnerabilitiesNotificationService.cs
│ │ │ ├── Logger
│ │ │ │ └── NuGetFileLogger.cs
│ │ │ ├── NuGet.SolutionRestoreManager.csproj
│ │ │ ├── NuGetSolutionService.cs
│ │ │ ├── PkgCmdID.cs
│ │ │ ├── ProjectRestoreReferenceComparer.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── RestoreEventPublisher.cs
│ │ │ ├── RestoreManagerPackage.cs
│ │ │ ├── RestoreOperationLogger.cs
│ │ │ ├── RestoreOperationProgressUI.cs
│ │ │ ├── SolutionRestoreBuildHandler.cs
│ │ │ ├── SolutionRestoreCommand.cs
│ │ │ ├── SolutionRestoreJob.cs
│ │ │ ├── SolutionRestoreJobContext.cs
│ │ │ ├── SolutionRestoreWorker.cs
│ │ │ ├── SolutionUpToDateChecker.cs
│ │ │ ├── VSNominationUtilities.cs
│ │ │ ├── VerbosityLevel.cs
│ │ │ ├── VsRestoreProgressEvents.cs
│ │ │ ├── VsSolutionRestoreService.cs
│ │ │ ├── VsSolutionRestoreStatusProvider.cs
│ │ │ ├── VulnerablePackagesInfoBar.cs
│ │ │ └── xlf
│ │ │ │ ├── Resources.cs.xlf
│ │ │ │ ├── Resources.de.xlf
│ │ │ │ ├── Resources.es.xlf
│ │ │ │ ├── Resources.fr.xlf
│ │ │ │ ├── Resources.it.xlf
│ │ │ │ ├── Resources.ja.xlf
│ │ │ │ ├── Resources.ko.xlf
│ │ │ │ ├── Resources.pl.xlf
│ │ │ │ ├── Resources.pt-BR.xlf
│ │ │ │ ├── Resources.ru.xlf
│ │ │ │ ├── Resources.tr.xlf
│ │ │ │ ├── Resources.zh-Hans.xlf
│ │ │ │ └── Resources.zh-Hant.xlf
│ │ ├── NuGet.Tools
│ │ │ ├── Commands
│ │ │ │ ├── ClearNuGetLocalResourcesCommand.cs
│ │ │ │ └── ShowErrorsCommand.cs
│ │ │ ├── Directory.Build.targets
│ │ │ ├── FontAndColorsRegistrationAttribute.cs
│ │ │ ├── GlobalSuppressions.cs
│ │ │ ├── Guids.cs
│ │ │ ├── NuGet.Tools.csproj
│ │ │ ├── NuGetBrokeredServiceFactory.cs
│ │ │ ├── NuGetPackage.cs
│ │ │ ├── NuGetSearchProvider.cs
│ │ │ ├── NuGetSearchTask.cs
│ │ │ ├── NuGetStaticSearchResult.cs
│ │ │ ├── NuGetTools.vsct
│ │ │ ├── PackageManagerLaunchService.cs
│ │ │ ├── PackageManagerShowOptions.cs
│ │ │ ├── PkgCmdID.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── ProvideExpressLoadKeyAttribute.cs
│ │ │ ├── ProvideSearchProviderAttribute.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── VSPackage.resx
│ │ │ └── xlf
│ │ │ │ ├── NuGetTools.vsct.cs.xlf
│ │ │ │ ├── NuGetTools.vsct.de.xlf
│ │ │ │ ├── NuGetTools.vsct.es.xlf
│ │ │ │ ├── NuGetTools.vsct.fr.xlf
│ │ │ │ ├── NuGetTools.vsct.it.xlf
│ │ │ │ ├── NuGetTools.vsct.ja.xlf
│ │ │ │ ├── NuGetTools.vsct.ko.xlf
│ │ │ │ ├── NuGetTools.vsct.pl.xlf
│ │ │ │ ├── NuGetTools.vsct.pt-BR.xlf
│ │ │ │ ├── NuGetTools.vsct.ru.xlf
│ │ │ │ ├── NuGetTools.vsct.tr.xlf
│ │ │ │ ├── NuGetTools.vsct.zh-Hans.xlf
│ │ │ │ ├── NuGetTools.vsct.zh-Hant.xlf
│ │ │ │ ├── Resources.cs.xlf
│ │ │ │ ├── Resources.de.xlf
│ │ │ │ ├── Resources.es.xlf
│ │ │ │ ├── Resources.fr.xlf
│ │ │ │ ├── Resources.it.xlf
│ │ │ │ ├── Resources.ja.xlf
│ │ │ │ ├── Resources.ko.xlf
│ │ │ │ ├── Resources.pl.xlf
│ │ │ │ ├── Resources.pt-BR.xlf
│ │ │ │ ├── Resources.ru.xlf
│ │ │ │ ├── Resources.tr.xlf
│ │ │ │ ├── Resources.zh-Hans.xlf
│ │ │ │ ├── Resources.zh-Hant.xlf
│ │ │ │ ├── VSPackage.cs.xlf
│ │ │ │ ├── VSPackage.de.xlf
│ │ │ │ ├── VSPackage.es.xlf
│ │ │ │ ├── VSPackage.fr.xlf
│ │ │ │ ├── VSPackage.it.xlf
│ │ │ │ ├── VSPackage.ja.xlf
│ │ │ │ ├── VSPackage.ko.xlf
│ │ │ │ ├── VSPackage.pl.xlf
│ │ │ │ ├── VSPackage.pt-BR.xlf
│ │ │ │ ├── VSPackage.ru.xlf
│ │ │ │ ├── VSPackage.tr.xlf
│ │ │ │ ├── VSPackage.zh-Hans.xlf
│ │ │ │ └── VSPackage.zh-Hant.xlf
│ │ ├── NuGet.VisualStudio.Client
│ │ │ ├── .vsixignore
│ │ │ ├── .vsixinclude
│ │ │ ├── Directory.Build.targets
│ │ │ ├── NuGet.VisualStudio.Client.csproj
│ │ │ ├── Resources
│ │ │ │ ├── cs
│ │ │ │ │ └── extension.vsixlangpack
│ │ │ │ ├── de
│ │ │ │ │ └── extension.vsixlangpack
│ │ │ │ ├── es
│ │ │ │ │ └── extension.vsixlangpack
│ │ │ │ ├── fr
│ │ │ │ │ └── extension.vsixlangpack
│ │ │ │ ├── it
│ │ │ │ │ └── extension.vsixlangpack
│ │ │ │ ├── ja
│ │ │ │ │ └── extension.vsixlangpack
│ │ │ │ ├── ko
│ │ │ │ │ └── extension.vsixlangpack
│ │ │ │ ├── pl
│ │ │ │ │ └── extension.vsixlangpack
│ │ │ │ ├── pt-BR
│ │ │ │ │ └── extension.vsixlangpack
│ │ │ │ ├── ru
│ │ │ │ │ └── extension.vsixlangpack
│ │ │ │ ├── tr
│ │ │ │ │ └── extension.vsixlangpack
│ │ │ │ ├── zh-Hans
│ │ │ │ │ └── extension.vsixlangpack
│ │ │ │ └── zh-Hant
│ │ │ │ │ └── extension.vsixlangpack
│ │ │ ├── extension.vsixlangpack
│ │ │ ├── mcp.json
│ │ │ ├── registration.json
│ │ │ └── source.extension.vsixmanifest
│ │ ├── NuGet.VisualStudio.Common
│ │ │ ├── BindingRedirectBehavior.cs
│ │ │ ├── Console
│ │ │ │ ├── IConsole.cs
│ │ │ │ ├── IConsoleDispatcher.cs
│ │ │ │ ├── IConsoleStatus.cs
│ │ │ │ ├── IHost.cs
│ │ │ │ ├── IOutputConsole.cs
│ │ │ │ ├── IOutputConsoleProvider.cs
│ │ │ │ └── VsKeyInfo.cs
│ │ │ ├── ErrorListTableDataSource.cs
│ │ │ ├── ErrorListTableEntry.cs
│ │ │ ├── Etw
│ │ │ │ ├── EventSourceExtensions.cs
│ │ │ │ └── NuGetETW.cs
│ │ │ ├── Events
│ │ │ │ ├── IRestoreEvents.cs
│ │ │ │ ├── IRestoreEventsPublisher.cs
│ │ │ │ └── SolutionRestoredEventArgs.cs
│ │ │ ├── ExceptionHelper.cs
│ │ │ ├── Experimentation
│ │ │ │ ├── ExperimentationConstants.cs
│ │ │ │ ├── INuGetExperimentationService.cs
│ │ │ │ └── NuGetExperimentationService.cs
│ │ │ ├── GlobalSuppressions.cs
│ │ │ ├── IDE
│ │ │ │ ├── EnvDteExtensions.cs
│ │ │ │ ├── EnvDteProjectExtensions.cs
│ │ │ │ ├── INonThrowingDTEProjectProperties.cs
│ │ │ │ ├── IScriptExecutor.cs
│ │ │ │ ├── IVsSolutionManager.cs
│ │ │ │ ├── PackageInitPS1State.cs
│ │ │ │ ├── ProjectCapabilities.cs
│ │ │ │ ├── VsHierarchyItem.cs
│ │ │ │ ├── VsHierarchyUtility.cs
│ │ │ │ ├── VsMonitorSelectionExtensions.cs
│ │ │ │ └── VsMultiItemSelectExtensions.cs
│ │ │ ├── INuGetErrorList.cs
│ │ │ ├── IOptionsPageActivator.cs
│ │ │ ├── IPackageAssemblyReference.cs
│ │ │ ├── IScriptPackage.cs
│ │ │ ├── IScriptPackageFile.cs
│ │ │ ├── IServiceBrokerProvider.cs
│ │ │ ├── IVisualStudioShell.cs
│ │ │ ├── IVsProjectAdapter.cs
│ │ │ ├── IVsProjectBuildProperties.cs
│ │ │ ├── MessageHelper.cs
│ │ │ ├── NuGet.VisualStudio.Common.csproj
│ │ │ ├── NuGetFeedbackDiagnosticFileProvider.cs
│ │ │ ├── NuGetUIThreadHelper.cs
│ │ │ ├── OptionsPage.cs
│ │ │ ├── OutputConsoleLogger.cs
│ │ │ ├── PackageAssemblyReference.cs
│ │ │ ├── PackageLevel.cs
│ │ │ ├── PackageManagementFormat.cs
│ │ │ ├── PathHelper.cs
│ │ │ ├── PathValidator.cs
│ │ │ ├── ProjectHelper.cs
│ │ │ ├── ProjectSystems
│ │ │ │ ├── IProjectSystemCache.cs
│ │ │ │ └── ProjectNames.cs
│ │ │ ├── ProjectType.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Runtime
│ │ │ │ ├── AssemblyBinding.cs
│ │ │ │ └── IAssembly.cs
│ │ │ ├── ScriptExecutionRequest.cs
│ │ │ ├── ScriptPackage.cs
│ │ │ ├── ScriptPackageFile.cs
│ │ │ ├── ServiceLocator.cs
│ │ │ ├── ServiceProviderExtensions.cs
│ │ │ ├── Services
│ │ │ │ ├── INuGetFeatureFlagService.cs
│ │ │ │ ├── INuGetLockService.cs
│ │ │ │ ├── IPackageManagerLaunchService.cs
│ │ │ │ ├── IProjectJsonToPackageReferenceMigratorExt.cs
│ │ │ │ ├── NuGetFeatureFlagConstants.cs
│ │ │ │ └── NuGetFeatureFlagService.cs
│ │ │ ├── SolutionEventsListener.cs
│ │ │ ├── SolutionRestore
│ │ │ │ ├── ISolutionRestoreWorker.cs
│ │ │ │ ├── RestoreOperationSource.cs
│ │ │ │ └── SolutionRestoreRequest.cs
│ │ │ ├── SourceControl
│ │ │ │ └── IVsSourceControlTracker.cs
│ │ │ ├── Telemetry
│ │ │ │ ├── EtwLogActivity.cs
│ │ │ │ ├── ExplicitRestoreReason.cs
│ │ │ │ ├── ExtensibilityTelemetryCollector.cs
│ │ │ │ ├── INuGetTelemetryProvider.cs
│ │ │ │ ├── ImplicitRestoreReason.cs
│ │ │ │ ├── InstanceCloseTelemetryEmitter.cs
│ │ │ │ ├── IntervalTracker.cs
│ │ │ │ ├── JoinableTaskExtensions.cs
│ │ │ │ ├── NuGetPowerShellUsageCollector.cs
│ │ │ │ ├── NuGetTelemetryProvider.cs
│ │ │ │ ├── NuGetVSTelemetryService.cs
│ │ │ │ ├── OperationSource.cs
│ │ │ │ ├── PackageSourceTelemetry.cs
│ │ │ │ ├── Powershell
│ │ │ │ │ ├── NuGetPowerShellUsage.cs
│ │ │ │ │ ├── PowerShellLoadedEvent.cs
│ │ │ │ │ └── SolutionCloseEvent.cs
│ │ │ │ ├── RestoreTelemetryEvent.cs
│ │ │ │ ├── TaskExtensions.cs
│ │ │ │ ├── TelemetrySession.cs
│ │ │ │ ├── TelemetryUtility.cs
│ │ │ │ └── VSActionsTelemetryEvent.cs
│ │ │ ├── UserInterfaceService
│ │ │ │ └── INuGetUILogger.cs
│ │ │ ├── Verify.cs
│ │ │ ├── VisualStudioBuildItemStorageCallback.cs
│ │ │ ├── VisualStudioContextHelper.cs
│ │ │ ├── VisualStudioShell.cs
│ │ │ ├── VsProjectTypes.cs
│ │ │ ├── WindowFrameHelper.cs
│ │ │ └── xlf
│ │ │ │ ├── Resources.cs.xlf
│ │ │ │ ├── Resources.de.xlf
│ │ │ │ ├── Resources.es.xlf
│ │ │ │ ├── Resources.fr.xlf
│ │ │ │ ├── Resources.it.xlf
│ │ │ │ ├── Resources.ja.xlf
│ │ │ │ ├── Resources.ko.xlf
│ │ │ │ ├── Resources.pl.xlf
│ │ │ │ ├── Resources.pt-BR.xlf
│ │ │ │ ├── Resources.ru.xlf
│ │ │ │ ├── Resources.tr.xlf
│ │ │ │ ├── Resources.zh-Hans.xlf
│ │ │ │ └── Resources.zh-Hant.xlf
│ │ ├── NuGet.VisualStudio.Contracts
│ │ │ ├── INuGetProjectService.cs
│ │ │ ├── InstalledPackageResultStatus.cs
│ │ │ ├── InstalledPackagesResult.cs
│ │ │ ├── NuGet.VisualStudio.Contracts.csproj
│ │ │ ├── NuGetContractsFactory.cs
│ │ │ ├── NuGetInstalledPackage.cs
│ │ │ ├── NuGetServices.cs
│ │ │ ├── PublicAPI.Shipped.txt
│ │ │ ├── PublicAPI.Unshipped.txt
│ │ │ └── README.md
│ │ ├── NuGet.VisualStudio.Implementation
│ │ │ ├── CachingIServiceBrokerProvider.cs
│ │ │ ├── CommonResources.cs
│ │ │ ├── CommonResources.resx
│ │ │ ├── Exceptions
│ │ │ │ └── ProjectNotRestoredException.cs
│ │ │ ├── Extensibility
│ │ │ │ ├── NuGetProjectService.cs
│ │ │ │ ├── PackageServiceUtilities.cs
│ │ │ │ ├── ProjectJsonMigrationEvent.cs
│ │ │ │ ├── VsFrameworkCompatibility.cs
│ │ │ │ ├── VsFrameworkParser.cs
│ │ │ │ ├── VsIndexedPathContext.cs
│ │ │ │ ├── VsNuGetFramework.cs
│ │ │ │ ├── VsPackageInstaller.cs
│ │ │ │ ├── VsPackageInstallerEvents.cs
│ │ │ │ ├── VsPackageInstallerProjectEvents.cs
│ │ │ │ ├── VsPackageInstallerServices.cs
│ │ │ │ ├── VsPackageMetadata.cs
│ │ │ │ ├── VsPackageMetadataComparer.cs
│ │ │ │ ├── VsPackageProjectMetadata.cs
│ │ │ │ ├── VsPackageRestorer.cs
│ │ │ │ ├── VsPackageSourceProvider.cs
│ │ │ │ ├── VsPackageUninstaller.cs
│ │ │ │ ├── VsPathContext.cs
│ │ │ │ ├── VsPathContextProvider.cs
│ │ │ │ ├── VsProjectJsonToPackageReferenceMigrateResult.cs
│ │ │ │ ├── VsProjectJsonToPackageReferenceMigrator.cs
│ │ │ │ └── VsSemanticVersionComparer.cs
│ │ │ ├── ExtensionManagerShim.cs
│ │ │ ├── GlobalSuppressions.cs
│ │ │ ├── NativeMethods.cs
│ │ │ ├── NuGet.VisualStudio.Implementation.csproj
│ │ │ ├── PackageManagementHelpers.cs
│ │ │ ├── PackageOperationEventArgs.cs
│ │ │ ├── PreinstalledPackageConfiguration.cs
│ │ │ ├── PreinstalledPackageInfo.cs
│ │ │ ├── PreinstalledPackageInstaller.cs
│ │ │ ├── PreinstalledRepositoryProvider.cs
│ │ │ ├── RegistryKeyWrapper.cs
│ │ │ ├── Resources
│ │ │ │ ├── VsResources.Designer.cs
│ │ │ │ ├── VsResources.resx
│ │ │ │ ├── VsResourcesFormat.cs
│ │ │ │ └── xlf
│ │ │ │ │ ├── VsResources.cs.xlf
│ │ │ │ │ ├── VsResources.de.xlf
│ │ │ │ │ ├── VsResources.es.xlf
│ │ │ │ │ ├── VsResources.fr.xlf
│ │ │ │ │ ├── VsResources.it.xlf
│ │ │ │ │ ├── VsResources.ja.xlf
│ │ │ │ │ ├── VsResources.ko.xlf
│ │ │ │ │ ├── VsResources.pl.xlf
│ │ │ │ │ ├── VsResources.pt-BR.xlf
│ │ │ │ │ ├── VsResources.ru.xlf
│ │ │ │ │ ├── VsResources.tr.xlf
│ │ │ │ │ ├── VsResources.zh-Hans.xlf
│ │ │ │ │ └── VsResources.zh-Hant.xlf
│ │ │ ├── SolutionExplorer
│ │ │ │ ├── AssetsFileDependenciesDataSource.cs
│ │ │ │ ├── AssetsFileDependenciesTreeSearchProvider.cs
│ │ │ │ ├── AssetsFileTopLevelDependenciesCollectionSourceProvider.cs
│ │ │ │ ├── BrowseObjectDescriptionAttribute.cs
│ │ │ │ ├── BrowseObjectDisplayNameAttribute.cs
│ │ │ │ ├── DependencyTreeFlags.cs
│ │ │ │ ├── FileOpener.cs
│ │ │ │ ├── IAssetsFileDependenciesDataSource.cs
│ │ │ │ ├── Items
│ │ │ │ │ ├── AttachedItemPriority.cs
│ │ │ │ │ ├── DiagnosticItem.cs
│ │ │ │ │ ├── IProjectTreeExtensions.cs
│ │ │ │ │ ├── MenuController.cs
│ │ │ │ │ ├── PackageAssemblyGroupItem.cs
│ │ │ │ │ ├── PackageAssemblyItem.cs
│ │ │ │ │ ├── PackageBuildFileGroupItem.cs
│ │ │ │ │ ├── PackageBuildFileItem.cs
│ │ │ │ │ ├── PackageContentFileGroupItem.cs
│ │ │ │ │ ├── PackageContentFileItem.cs
│ │ │ │ │ ├── PackageDocumentGroupItem.cs
│ │ │ │ │ ├── PackageDocumentItem.cs
│ │ │ │ │ ├── PackageReferenceItem.cs
│ │ │ │ │ └── ProjectReferenceItem.cs
│ │ │ │ ├── Models
│ │ │ │ │ ├── AssetsFileDependenciesSnapshot.cs
│ │ │ │ │ ├── AssetsFileLibraryType.cs
│ │ │ │ │ ├── AssetsFileLogMessage.cs
│ │ │ │ │ ├── AssetsFileTarget.cs
│ │ │ │ │ ├── AssetsFileTargetLibrary.cs
│ │ │ │ │ └── AssetsFileTargetLibraryContentFile.cs
│ │ │ │ ├── PackageAssemblyGroupType.cs
│ │ │ │ ├── PackageBuildFileGroupType.cs
│ │ │ │ ├── PackageReferenceAttachedCollectionSourceProvider.cs
│ │ │ │ ├── ProjectCapability.cs
│ │ │ │ ├── ProjectReferenceAttachedCollectionSourceProvider.cs
│ │ │ │ ├── Relations
│ │ │ │ │ ├── AssemblyGroupToAssemblyRelation.cs
│ │ │ │ │ ├── BuildFilesGroupToBuildFilesRelation.cs
│ │ │ │ │ ├── ContentFilesGroupToContentFilesRelation.cs
│ │ │ │ │ ├── DocumentGroupToDocumentRelation.cs
│ │ │ │ │ ├── PackageToBuildFileGroupRelation.cs
│ │ │ │ │ ├── PackageToBuildMultiTargetingFileGroupRelation.cs
│ │ │ │ │ ├── PackageToCompileTimeAssemblyGroupRelation.cs
│ │ │ │ │ ├── PackageToContentFilesGroupRelation.cs
│ │ │ │ │ ├── PackageToDiagnosticRelation.cs
│ │ │ │ │ ├── PackageToDocumentGroupRelation.cs
│ │ │ │ │ ├── PackageToFrameworkAssemblyGroupRelation.cs
│ │ │ │ │ ├── PackageToPackageRelation.cs
│ │ │ │ │ ├── ProjectToDiagnosticRelation.cs
│ │ │ │ │ ├── ProjectToPackageRelation.cs
│ │ │ │ │ └── ProjectToProjectRelation.cs
│ │ │ │ └── Rules.cs
│ │ │ ├── Utility
│ │ │ │ ├── DisposableBag.cs
│ │ │ │ ├── PathLookupTrie.cs
│ │ │ │ └── PumpingJTF.cs
│ │ │ ├── VSAPIProjectContext.cs
│ │ │ ├── VsTemplateWizard.cs
│ │ │ └── xlf
│ │ │ │ ├── CommonResources.cs.xlf
│ │ │ │ ├── CommonResources.de.xlf
│ │ │ │ ├── CommonResources.es.xlf
│ │ │ │ ├── CommonResources.fr.xlf
│ │ │ │ ├── CommonResources.it.xlf
│ │ │ │ ├── CommonResources.ja.xlf
│ │ │ │ ├── CommonResources.ko.xlf
│ │ │ │ ├── CommonResources.pl.xlf
│ │ │ │ ├── CommonResources.pt-BR.xlf
│ │ │ │ ├── CommonResources.ru.xlf
│ │ │ │ ├── CommonResources.tr.xlf
│ │ │ │ ├── CommonResources.zh-Hans.xlf
│ │ │ │ └── CommonResources.zh-Hant.xlf
│ │ ├── NuGet.VisualStudio.Internal.Contracts
│ │ │ ├── ContextInfos
│ │ │ │ ├── AlternatePackageMetadataContextInfo.cs
│ │ │ │ ├── IPackageReferenceContextInfo.cs
│ │ │ │ ├── IProjectContextInfo.cs
│ │ │ │ ├── ITransitivePackageReferenceContextInfo.cs
│ │ │ │ ├── PackageDeprecationMetadataContextInfo.cs
│ │ │ │ ├── PackageReferenceContextInfo.cs
│ │ │ │ ├── PackageSearchMetadataContextInfo.cs
│ │ │ │ ├── PackageSourceContextInfo.cs
│ │ │ │ ├── PackageVulnerabilityMetadataContextInfo.cs
│ │ │ │ ├── ProjectContextInfo.cs
│ │ │ │ ├── SearchResultContextInfo.cs
│ │ │ │ ├── TransitivePackageReferenceContextInfo.cs
│ │ │ │ └── VersionInfoContextInfo.cs
│ │ │ ├── Formatters
│ │ │ │ ├── AlternatePackageMetadataContextInfoFormatter.cs
│ │ │ │ ├── FloatRangeFormatter.cs
│ │ │ │ ├── IInstalledAndTransitivePackagesFormatter.cs
│ │ │ │ ├── ILogMessageFormatter.cs
│ │ │ │ ├── IPackageReferenceContextInfoFormatter.cs
│ │ │ │ ├── IProjectContextInfoFormatter.cs
│ │ │ │ ├── IProjectMetadataContextInfoFormatter.cs
│ │ │ │ ├── ITransitivePackageReferenceContextInfoFormatter.cs
│ │ │ │ ├── ImplicitProjectActionFormatter.cs
│ │ │ │ ├── LicenseMetadataFormatter.cs
│ │ │ │ ├── NuGetFrameworkFormatter.cs
│ │ │ │ ├── NuGetMessagePackFormatter.cs
│ │ │ │ ├── NuGetVersionFormatter.cs
│ │ │ │ ├── PackageDependencyFormatter.cs
│ │ │ │ ├── PackageDependencyGroupFormatter.cs
│ │ │ │ ├── PackageDependencyInfoFormatter.cs
│ │ │ │ ├── PackageDeprecationMetadataContextInfoFormatter.cs
│ │ │ │ ├── PackageIdentityFormatter.cs
│ │ │ │ ├── PackageReferenceFormatter.cs
│ │ │ │ ├── PackageSearchMetadataContextInfoFormatter.cs
│ │ │ │ ├── PackageSourceContextInfoFormatter.cs
│ │ │ │ ├── PackageSourceFormatter.cs
│ │ │ │ ├── PackageVulnerabilityMetadataContextInfoFormatter.cs
│ │ │ │ ├── ProjectActionFormatter.cs
│ │ │ │ ├── RemoteErrorFormatter.cs
│ │ │ │ ├── SearchFilterFormatter.cs
│ │ │ │ ├── SearchResultContextInfoFormatter.cs
│ │ │ │ ├── VersionInfoContextInfoFormatter.cs
│ │ │ │ └── VersionRangeFormatter.cs
│ │ │ ├── IInstalledAndTransitivePackages.cs
│ │ │ ├── INuGetPackageFileService.cs
│ │ │ ├── INuGetProjectManagerService.cs
│ │ │ ├── INuGetProjectManagerServiceState.cs
│ │ │ ├── INuGetProjectUpgraderService.cs
│ │ │ ├── INuGetSearchService.cs
│ │ │ ├── INuGetSolutionManagerService.cs
│ │ │ ├── INuGetSolutionService.cs
│ │ │ ├── INuGetSourcesService.cs
│ │ │ ├── IOwnerDetailsUriService.cs
│ │ │ ├── IProjectMetadataContextInfo.cs
│ │ │ ├── ImplicitProjectAction.cs
│ │ │ ├── InstalledAndTransitivePackages.cs
│ │ │ ├── ItemFilter.cs
│ │ │ ├── KnownOwner.cs
│ │ │ ├── LoadingStatus.cs
│ │ │ ├── NuGet.VisualStudio.Internal.Contracts.csproj
│ │ │ ├── NuGetJsonRpc.cs
│ │ │ ├── NuGetProjectKind.cs
│ │ │ ├── NuGetServiceMessagePackRpcDescriptor.cs
│ │ │ ├── NuGetServices.cs
│ │ │ ├── ProjectAction.cs
│ │ │ ├── ProjectMetadataContextInfo.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── RecommendedPackageSearchMetadata.cs
│ │ │ ├── RemoteErrorCode.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── TransitivePackageReference.cs
│ │ │ ├── TransitivePackageSearchMetadata.cs
│ │ │ ├── Utility
│ │ │ │ ├── RemoteError.cs
│ │ │ │ └── RemoteErrorUtility.cs
│ │ │ └── xlf
│ │ │ │ ├── Resources.cs.xlf
│ │ │ │ ├── Resources.de.xlf
│ │ │ │ ├── Resources.es.xlf
│ │ │ │ ├── Resources.fr.xlf
│ │ │ │ ├── Resources.it.xlf
│ │ │ │ ├── Resources.ja.xlf
│ │ │ │ ├── Resources.ko.xlf
│ │ │ │ ├── Resources.pl.xlf
│ │ │ │ ├── Resources.pt-BR.xlf
│ │ │ │ ├── Resources.ru.xlf
│ │ │ │ ├── Resources.tr.xlf
│ │ │ │ ├── Resources.zh-Hans.xlf
│ │ │ │ └── Resources.zh-Hant.xlf
│ │ ├── NuGet.VisualStudio.Interop
│ │ │ ├── NuGet.VisualStudio.Interop.csproj
│ │ │ └── TemplateWizard.cs
│ │ └── NuGet.VisualStudio
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extensibility
│ │ │ ├── IVsCredentialProvider.cs
│ │ │ ├── IVsFrameworkCompatibility.cs
│ │ │ ├── IVsFrameworkCompatibility2.cs
│ │ │ ├── IVsFrameworkCompatibility3.cs
│ │ │ ├── IVsFrameworkParser.cs
│ │ │ ├── IVsFrameworkParser2.cs
│ │ │ ├── IVsNuGetFramework.cs
│ │ │ ├── IVsNuGetProjectUpdateEvents.cs
│ │ │ ├── IVsPackageInstaller.cs
│ │ │ ├── IVsPackageInstaller2.cs
│ │ │ ├── IVsPackageInstallerEvents.cs
│ │ │ ├── IVsPackageInstallerProjectEvents.cs
│ │ │ ├── IVsPackageInstallerServices.cs
│ │ │ ├── IVsPackageMetadata.cs
│ │ │ ├── IVsPackageProjectMetadata.cs
│ │ │ ├── IVsPackageRestorer.cs
│ │ │ ├── IVsPackageSourceProvider.cs
│ │ │ ├── IVsPackageUninstaller.cs
│ │ │ ├── IVsPathContext.cs
│ │ │ ├── IVsPathContext2.cs
│ │ │ ├── IVsPathContextProvider.cs
│ │ │ ├── IVsPathContextProvider2.cs
│ │ │ ├── IVsProjectJsonToPackageReferenceMigrateResult.cs
│ │ │ ├── IVsProjectJsonToPackageReferenceMigrator.cs
│ │ │ ├── IVsSemanticVersionComparer.cs
│ │ │ └── VsPackageEventHandler.cs
│ │ │ ├── GlobalSuppressions.cs
│ │ │ ├── IRegistryKey.cs
│ │ │ ├── IVsTemplateWizard.cs
│ │ │ ├── LegacyTypes
│ │ │ ├── IFileSystem.cs
│ │ │ ├── IPackage.cs
│ │ │ ├── IPackageAssemblyReference.cs
│ │ │ ├── IPackageFile.cs
│ │ │ ├── IPackageRepository.cs
│ │ │ ├── PackageSaveModes.cs
│ │ │ └── SemanticVersion.cs
│ │ │ ├── NuGet.VisualStudio.csproj
│ │ │ ├── PublicAPI.Shipped.txt
│ │ │ ├── PublicAPI.Unshipped.txt
│ │ │ ├── README.md
│ │ │ ├── SolutionRestoreManager
│ │ │ ├── IVsProjectProperties.cs
│ │ │ ├── IVsProjectProperty.cs
│ │ │ ├── IVsProjectRestoreInfo.cs
│ │ │ ├── IVsProjectRestoreInfo2.cs
│ │ │ ├── IVsProjectRestoreInfo3.cs
│ │ │ ├── IVsProjectRestoreInfoSource.cs
│ │ │ ├── IVsReferenceItem.cs
│ │ │ ├── IVsReferenceItem2.cs
│ │ │ ├── IVsReferenceItems.cs
│ │ │ ├── IVsReferenceProperties.cs
│ │ │ ├── IVsReferenceProperty.cs
│ │ │ ├── IVsSolutionRestoreService.cs
│ │ │ ├── IVsSolutionRestoreService2.cs
│ │ │ ├── IVsSolutionRestoreService3.cs
│ │ │ ├── IVsSolutionRestoreService4.cs
│ │ │ ├── IVsSolutionRestoreService5.cs
│ │ │ ├── IVsSolutionRestoreStatusProvider.cs
│ │ │ ├── IVsTargetFrameworkInfo.cs
│ │ │ ├── IVsTargetFrameworkInfo2.cs
│ │ │ ├── IVsTargetFrameworkInfo3.cs
│ │ │ ├── IVsTargetFrameworkInfo4.cs
│ │ │ ├── IVsTargetFrameworks.cs
│ │ │ └── IVsTargetFrameworks2.cs
│ │ │ ├── Strings.Designer.cs
│ │ │ ├── Strings.resx
│ │ │ └── xlf
│ │ │ ├── Strings.cs.xlf
│ │ │ ├── Strings.de.xlf
│ │ │ ├── Strings.es.xlf
│ │ │ ├── Strings.fr.xlf
│ │ │ ├── Strings.it.xlf
│ │ │ ├── Strings.ja.xlf
│ │ │ ├── Strings.ko.xlf
│ │ │ ├── Strings.pl.xlf
│ │ │ ├── Strings.pt-BR.xlf
│ │ │ ├── Strings.ru.xlf
│ │ │ ├── Strings.tr.xlf
│ │ │ ├── Strings.zh-Hans.xlf
│ │ │ └── Strings.zh-Hant.xlf
│ └── NuGet.Core
│ │ ├── Directory.Build.props
│ │ ├── Microsoft.Build.NuGetSdkResolver
│ │ ├── FileSystemInfoFullNameEqualityComparer.cs
│ │ ├── GlobalJsonReader.cs
│ │ ├── GlobalSuppressions.cs
│ │ ├── IGlobalJsonReader.cs
│ │ ├── Microsoft.Build.NuGetSdkResolver.csproj
│ │ ├── NuGetSdkLogger.cs
│ │ ├── NuGetSdkResolver.cs
│ │ ├── PublicAPI.Shipped.txt
│ │ ├── PublicAPI.Unshipped.txt
│ │ ├── README.md
│ │ ├── RestoreRunnerEx.cs
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ └── xlf
│ │ │ ├── Strings.cs.xlf
│ │ │ ├── Strings.de.xlf
│ │ │ ├── Strings.es.xlf
│ │ │ ├── Strings.fr.xlf
│ │ │ ├── Strings.it.xlf
│ │ │ ├── Strings.ja.xlf
│ │ │ ├── Strings.ko.xlf
│ │ │ ├── Strings.pl.xlf
│ │ │ ├── Strings.pt-BR.xlf
│ │ │ ├── Strings.ru.xlf
│ │ │ ├── Strings.tr.xlf
│ │ │ ├── Strings.zh-Hans.xlf
│ │ │ └── Strings.zh-Hant.xlf
│ │ ├── NuGet.Build.Tasks.Console
│ │ ├── App.config
│ │ ├── ConsoleLoggingQueue.cs
│ │ ├── ExtensionMethods.cs
│ │ ├── GlobalSuppressions.cs
│ │ ├── IMSBuildProject.cs
│ │ ├── ItemAdapter.cs
│ │ ├── MSBuildFeatureFlags.cs
│ │ ├── MSBuildItemBase.cs
│ │ ├── MSBuildProjectInstance.cs
│ │ ├── MSBuildProjectItemInstance.cs
│ │ ├── MSBuildStaticGraphRestore.cs
│ │ ├── NuGet.Build.Tasks.Console.csproj
│ │ ├── Program.cs
│ │ ├── ProjectItemInstanceEvaluatedIncludeComparer.cs
│ │ ├── ProjectWithInnerNodes.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── README.md
│ │ ├── RestoreProjectAdapter.cs
│ │ ├── TargetFrameworkAdapter.cs
│ │ └── app.manifest
│ │ ├── NuGet.Build.Tasks.Pack
│ │ ├── Common
│ │ │ ├── MSBuildTaskItem.cs
│ │ │ └── MSBuildUtility.cs
│ │ ├── GetPackOutputItemsTask.cs
│ │ ├── GetProjectReferencesFromAssetsFileTask.cs
│ │ ├── GlobalSuppressions.cs
│ │ ├── IPackTaskLogic.cs
│ │ ├── IPackTaskRequest.cs
│ │ ├── IsPackableFalseWarningTask.cs
│ │ ├── NuGet.Build.Tasks.Pack.csproj
│ │ ├── PackTask.cs
│ │ ├── PackTaskLogic.cs
│ │ ├── PackTaskRequest.cs
│ │ ├── README.md
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ └── xlf
│ │ │ ├── Strings.cs.xlf
│ │ │ ├── Strings.de.xlf
│ │ │ ├── Strings.es.xlf
│ │ │ ├── Strings.fr.xlf
│ │ │ ├── Strings.it.xlf
│ │ │ ├── Strings.ja.xlf
│ │ │ ├── Strings.ko.xlf
│ │ │ ├── Strings.pl.xlf
│ │ │ ├── Strings.pt-BR.xlf
│ │ │ ├── Strings.ru.xlf
│ │ │ ├── Strings.tr.xlf
│ │ │ ├── Strings.zh-Hans.xlf
│ │ │ └── Strings.zh-Hant.xlf
│ │ ├── NuGet.Build.Tasks
│ │ ├── BuildTasksUtility.cs
│ │ ├── CheckForDuplicateNuGetItemsTask.cs
│ │ ├── Common
│ │ │ ├── MSBuildLogger.cs
│ │ │ ├── MSBuildTaskItem.cs
│ │ │ └── MSBuildUtility.cs
│ │ ├── ConsoleOutLogEmbedInBinlog.cs
│ │ ├── ConsoleOutLogItem.cs
│ │ ├── ConsoleOutLogMessage.cs
│ │ ├── ConsoleOutLogMessageType.cs
│ │ ├── GenerateRestoreGraphFileTask.cs
│ │ ├── GetCentralPackageVersionsTask.cs
│ │ ├── GetGlobalPropertyValueTask.cs
│ │ ├── GetProjectTargetFrameworksTask.cs
│ │ ├── GetReferenceNearestTargetFrameworkTask.cs
│ │ ├── GetRestoreDotnetCliToolsTask.cs
│ │ ├── GetRestoreFrameworkReferencesTask.cs
│ │ ├── GetRestoreNuGetAuditSuppressionsTask.cs
│ │ ├── GetRestorePackageDownloadsTask.cs
│ │ ├── GetRestorePackageReferencesTask.cs
│ │ ├── GetRestoreProjectReferencesTask.cs
│ │ ├── GetRestoreProjectStyleTask.cs
│ │ ├── GetRestorePrunedPackageReferencesTask.cs
│ │ ├── GetRestoreSettingsTask.cs
│ │ ├── GetRestoreSolutionProjectsTask.cs
│ │ ├── GlobalSuppressions.cs
│ │ ├── LoggingQueue.cs
│ │ ├── NuGet.Build.Tasks.Pack.targets
│ │ ├── NuGet.Build.Tasks.csproj
│ │ ├── NuGet.RestoreEx.targets
│ │ ├── NuGet.props
│ │ ├── NuGet.targets
│ │ ├── NuGetMessageTask.cs
│ │ ├── README.md
│ │ ├── RestoreSettingsUtils.cs
│ │ ├── RestoreTask.cs
│ │ ├── RestoreTaskEx.cs
│ │ ├── StaticGraphRestoreTaskBase.cs
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ ├── TaskLoggingQueue.cs
│ │ ├── WarnForInvalidProjectsTask.cs
│ │ ├── WriteRestoreGraphTask.cs
│ │ └── xlf
│ │ │ ├── Strings.cs.xlf
│ │ │ ├── Strings.de.xlf
│ │ │ ├── Strings.es.xlf
│ │ │ ├── Strings.fr.xlf
│ │ │ ├── Strings.it.xlf
│ │ │ ├── Strings.ja.xlf
│ │ │ ├── Strings.ko.xlf
│ │ │ ├── Strings.pl.xlf
│ │ │ ├── Strings.pt-BR.xlf
│ │ │ ├── Strings.ru.xlf
│ │ │ ├── Strings.tr.xlf
│ │ │ ├── Strings.zh-Hans.xlf
│ │ │ └── Strings.zh-Hant.xlf
│ │ ├── NuGet.CommandLine.XPlat
│ │ ├── Commands
│ │ │ ├── CommandConstants.cs
│ │ │ ├── CommandParsers.cs
│ │ │ ├── CommonOptions.cs
│ │ │ ├── ConfigCommands
│ │ │ │ ├── ConfigArgs.cs
│ │ │ │ ├── ConfigCommand.cs
│ │ │ │ └── ConfigRunners.cs
│ │ │ ├── DeleteCommand.cs
│ │ │ ├── DocumentedCommand.cs
│ │ │ ├── LocalsCommand.cs
│ │ │ ├── Package
│ │ │ │ ├── PackageWithNuGetVersion.cs
│ │ │ │ ├── PackageWithVersionRange.cs
│ │ │ │ └── Update
│ │ │ │ │ ├── IPackageUpdateIO.cs
│ │ │ │ │ ├── PackageUpdateArgs.cs
│ │ │ │ │ ├── PackageUpdateCommand.cs
│ │ │ │ │ ├── PackageUpdateCommandRunner.cs
│ │ │ │ │ └── PackageUpdateIO.cs
│ │ │ ├── PackageReferenceCommands
│ │ │ │ ├── AddPackageReferenceCommand.cs
│ │ │ │ ├── AddPackageReferenceCommandRunner.cs
│ │ │ │ ├── IPackageReferenceCommandRunner.cs
│ │ │ │ ├── ListPackage
│ │ │ │ │ ├── FrameworkPackages.cs
│ │ │ │ │ ├── IListPackageCommandRunner.cs
│ │ │ │ │ ├── InstalledPackageReference.cs
│ │ │ │ │ ├── ListPackageArgs.cs
│ │ │ │ │ ├── ListPackageCommand.cs
│ │ │ │ │ ├── ListPackageCommandRunner.cs
│ │ │ │ │ └── ReportType.cs
│ │ │ │ ├── PackageReferenceArgs.cs
│ │ │ │ ├── RemovePackageReferenceCommand.cs
│ │ │ │ └── RemovePackageReferenceCommandRunner.cs
│ │ │ ├── PackageSearch
│ │ │ │ ├── IPackageSearchResultRenderer.cs
│ │ │ │ ├── JsonFormat
│ │ │ │ │ ├── PackageSearchMainOutput.cs
│ │ │ │ │ ├── PackageSearchProblem.cs
│ │ │ │ │ ├── PackageSearchResult.cs
│ │ │ │ │ └── SearchResultPackagesConverter.cs
│ │ │ │ ├── PackageSearchArgs.cs
│ │ │ │ ├── PackageSearchCommand.cs
│ │ │ │ ├── PackageSearchResultJsonRenderer.cs
│ │ │ │ ├── PackageSearchResultTableRenderer.cs
│ │ │ │ ├── PackageSearchRunner.cs
│ │ │ │ ├── Table.cs
│ │ │ │ └── TableFormat
│ │ │ │ │ ├── DetailedTableFormatStrategy.cs
│ │ │ │ │ ├── ExactDetailedTableFormatStrategy.cs
│ │ │ │ │ ├── ExactMinimalTableFormatStrategy.cs
│ │ │ │ │ ├── ExactNormalTableFormatStrategy.cs
│ │ │ │ │ ├── ITableFormatStrategy.cs
│ │ │ │ │ ├── MinimalTableFormatStrategy.cs
│ │ │ │ │ ├── NormalTableFormatStrategy.cs
│ │ │ │ │ └── TableFormatStrategyFactory.cs
│ │ │ ├── PushCommand.cs
│ │ │ ├── Signing
│ │ │ │ ├── SignCommand.cs
│ │ │ │ ├── TrustedSignersCommand.cs
│ │ │ │ └── VerifyCommand.cs
│ │ │ ├── VerbosityEnum.cs
│ │ │ ├── Verbs.cs
│ │ │ └── Why
│ │ │ │ ├── DependencyGraphFinder.cs
│ │ │ │ ├── DependencyGraphPrinter.cs
│ │ │ │ ├── DependencyNode.cs
│ │ │ │ ├── WhyCommand.cs
│ │ │ │ ├── WhyCommandArgs.cs
│ │ │ │ └── WhyCommandRunner.cs
│ │ ├── Enums
│ │ │ ├── PackageSearchFormat.cs
│ │ │ ├── PackageSearchProblemType.cs
│ │ │ ├── PackageSearchVerbosity.cs
│ │ │ └── TrustCommand.cs
│ │ ├── ExitCodes.cs
│ │ ├── GlobalSuppressions.cs
│ │ ├── ListPackage
│ │ │ ├── IReportRenderer.cs
│ │ │ ├── ListPackageConsoleRenderer.cs
│ │ │ ├── ListPackageJsonRenderer.cs
│ │ │ ├── ListPackageProjectModel.cs
│ │ │ ├── ListPackageReportFrameworkPackage.cs
│ │ │ ├── ListPackageReportModel.cs
│ │ │ ├── ListReportPackage.cs
│ │ │ ├── ProblemType.cs
│ │ │ ├── ReportOutputFormat.cs
│ │ │ └── ReportProblem.cs
│ │ ├── Messages.cs
│ │ ├── NuGet.CommandLine.XPlat.csproj
│ │ ├── NuGetCommands.cs
│ │ ├── Program.cs
│ │ ├── PublicAPI.Shipped.txt
│ │ ├── PublicAPI.Unshipped.txt
│ │ ├── README.md
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ ├── UILanguageOverride.cs
│ │ ├── Utility
│ │ │ ├── AddPackageCommandUtility.cs
│ │ │ ├── CommandLineUtility.cs
│ │ │ ├── CommandOutputLogger.cs
│ │ │ ├── FormattedCell.cs
│ │ │ ├── HttpSourcesUtility.cs
│ │ │ ├── ILoggerWithColor.cs
│ │ │ ├── ListPackageHelper.cs
│ │ │ ├── MSBuildAPIUtility.cs
│ │ │ ├── ProjectPackagesPrintUtility.cs
│ │ │ ├── RemappedLevelLogger.cs
│ │ │ ├── TableParser.cs
│ │ │ └── XPlatUtility.cs
│ │ └── xlf
│ │ │ ├── Strings.cs.xlf
│ │ │ ├── Strings.de.xlf
│ │ │ ├── Strings.es.xlf
│ │ │ ├── Strings.fr.xlf
│ │ │ ├── Strings.it.xlf
│ │ │ ├── Strings.ja.xlf
│ │ │ ├── Strings.ko.xlf
│ │ │ ├── Strings.pl.xlf
│ │ │ ├── Strings.pt-BR.xlf
│ │ │ ├── Strings.ru.xlf
│ │ │ ├── Strings.tr.xlf
│ │ │ ├── Strings.zh-Hans.xlf
│ │ │ └── Strings.zh-Hant.xlf
│ │ ├── NuGet.Commands
│ │ ├── ClientCertificatesCommand
│ │ │ ├── AddClientCertArgs.cs
│ │ │ ├── AddClientCertRunner.cs
│ │ │ ├── ClientCertArgsExtensions.cs
│ │ │ ├── ClientCertArgsInterfaces.cs
│ │ │ ├── ListClientCertArgs.cs
│ │ │ ├── ListClientCertRunner.cs
│ │ │ ├── RemoveClientCertArgs.cs
│ │ │ ├── RemoveClientCertRunner.cs
│ │ │ ├── UpdateClientCertArgs.cs
│ │ │ └── UpdateClientCertRunner.cs
│ │ ├── CommandArgs
│ │ │ ├── LocalsArgs.cs
│ │ │ ├── PackArgs.cs
│ │ │ └── VerbArgs.cs
│ │ ├── CommandRunners
│ │ │ ├── DeleteRunner.cs
│ │ │ ├── ILocalsCommandRunner.cs
│ │ │ ├── LocalsCommandRunner.cs
│ │ │ ├── PackCommandRunner.cs
│ │ │ └── PushRunner.cs
│ │ ├── Common
│ │ │ └── CommandException.cs
│ │ ├── ContentMetadata.cs
│ │ ├── GlobalSuppressions.cs
│ │ ├── IProjectFactory.cs
│ │ ├── Internal
│ │ │ └── HashCodeCombiner.cs
│ │ ├── ListCommand
│ │ │ ├── IListCommandRunner.cs
│ │ │ ├── ListArgs.cs
│ │ │ └── ListCommandRunner.cs
│ │ ├── MSBuildPackTargetArgs.cs
│ │ ├── MSBuildProjectFactory.cs
│ │ ├── NuGet.Commands.csproj
│ │ ├── PackCollectorLogger.cs
│ │ ├── PackCommand
│ │ │ └── Logging
│ │ │ │ └── PackageSpecificWarningProperties.cs
│ │ ├── PackagesLockFileBuilder.cs
│ │ ├── PublicAPI
│ │ │ ├── net472
│ │ │ │ ├── PublicAPI.Shipped.txt
│ │ │ │ └── PublicAPI.Unshipped.txt
│ │ │ ├── net8.0
│ │ │ │ ├── PublicAPI.Shipped.txt
│ │ │ │ └── PublicAPI.Unshipped.txt
│ │ │ └── netstandard2.0
│ │ │ │ ├── PublicAPI.Shipped.txt
│ │ │ │ └── PublicAPI.Unshipped.txt
│ │ ├── README.md
│ │ ├── RestoreCommand
│ │ │ ├── CompatibilityCheckResult.cs
│ │ │ ├── CompatibilityChecker.cs
│ │ │ ├── CompatibilityIssue.cs
│ │ │ ├── ContentFiles
│ │ │ │ ├── ContentFileUtils.cs
│ │ │ │ ├── FileProviderGlobbingDirectory.cs
│ │ │ │ ├── FileProviderGlobbingFile.cs
│ │ │ │ ├── SingleFileProvider.cs
│ │ │ │ └── VirtualFileInfo.cs
│ │ │ ├── DependencyGraphResolver.DependencyGraphItem.cs
│ │ │ ├── DependencyGraphResolver.DependencyGraphItemIndexer.cs
│ │ │ ├── DependencyGraphResolver.LibraryRangeComparer.cs
│ │ │ ├── DependencyGraphResolver.ResolvedDependencyGraphItem.cs
│ │ │ ├── DependencyGraphResolver.cs
│ │ │ ├── Diagnostics
│ │ │ │ ├── DiagnosticUtility.cs
│ │ │ │ ├── IndexedRestoreTargetGraph.cs
│ │ │ │ ├── UnexpectedDependencyMessages.cs
│ │ │ │ └── UnresolvedMessages.cs
│ │ │ ├── DownloadDependencyResolutionResult.cs
│ │ │ ├── FrameworkRuntimeDefinition.cs
│ │ │ ├── IItem.cs
│ │ │ ├── IProject.cs
│ │ │ ├── IRestoreProgressReporter.cs
│ │ │ ├── IRestoreResult.cs
│ │ │ ├── IRestoreTargetGraph.cs
│ │ │ ├── ITargetFramework.cs
│ │ │ ├── IVulnerabilityInformationProvider.cs
│ │ │ ├── LockFileBuilder.cs
│ │ │ ├── LockFileBuilderCache.cs
│ │ │ ├── Logging
│ │ │ │ ├── PackageSpecificWarningProperties.cs
│ │ │ │ ├── RestoreCollectorLogger.cs
│ │ │ │ ├── TransitiveNoWarnUtils.cs
│ │ │ │ └── WarningPropertiesCollection.cs
│ │ │ ├── MSBuildOutputFile.cs
│ │ │ ├── MSBuildRestoreItemGroup.cs
│ │ │ ├── OriginalCaseGlobalPackageFolder.cs
│ │ │ ├── ProjectRestoreCommand.cs
│ │ │ ├── ProjectRestoreRequest.cs
│ │ │ ├── RequestFactory
│ │ │ │ ├── DependencyGraphFileRequestProvider.cs
│ │ │ │ ├── DependencyGraphSpecRequestProvider.cs
│ │ │ │ ├── IMSBuildItem.cs
│ │ │ │ ├── IPreLoadedRestoreRequestProvider.cs
│ │ │ │ ├── IRestoreRequestProvider.cs
│ │ │ │ ├── MSBuildItem.cs
│ │ │ │ ├── MSBuildItemIdentityComparer.cs
│ │ │ │ ├── NoOpRestoreResult.cs
│ │ │ │ ├── RestoreArgs.cs
│ │ │ │ └── RestoreSpecException.cs
│ │ │ ├── ResolvedDependencyKey.cs
│ │ │ ├── ResolverConflict.cs
│ │ │ ├── ResolverRequest.cs
│ │ │ ├── RestoreCommand.cs
│ │ │ ├── RestoreCommandException.cs
│ │ │ ├── RestoreCommandProviders.cs
│ │ │ ├── RestoreCommandProvidersCache.cs
│ │ │ ├── RestoreRequest.cs
│ │ │ ├── RestoreResult.cs
│ │ │ ├── RestoreResultPair.cs
│ │ │ ├── RestoreRunner.cs
│ │ │ ├── RestoreSummary.cs
│ │ │ ├── RestoreSummaryRequest.cs
│ │ │ ├── RestoreTargetGraph.cs
│ │ │ ├── SourceRepositoryDependencyProvider.cs
│ │ │ ├── Utility
│ │ │ │ ├── AuditUtility.cs
│ │ │ │ ├── BuildAssetsUtils.cs
│ │ │ │ ├── IncludeFlagUtils.cs
│ │ │ │ ├── LockFileUtils.cs
│ │ │ │ ├── MSBuildRestoreUtility.cs
│ │ │ │ ├── NoOpRestoreUtilities.cs
│ │ │ │ ├── PackageSpecFactory.cs
│ │ │ │ ├── ProjectItemIdentityComparer.cs
│ │ │ │ ├── SpecValidationUtility.cs
│ │ │ │ └── ToolRestoreUtility.cs
│ │ │ └── VulnerabilityInformationProvider.cs
│ │ ├── SignCommand
│ │ │ ├── CertificateFindOptions.cs
│ │ │ ├── CertificateProvider.cs
│ │ │ ├── IPasswordProvider.cs
│ │ │ ├── ISignCommandRunner.cs
│ │ │ ├── SignArgs.cs
│ │ │ ├── SignCommandException.cs
│ │ │ └── SignCommandRunner.cs
│ │ ├── SourcesCommands
│ │ │ ├── SourceRunners.cs
│ │ │ ├── SourcesAction.cs
│ │ │ └── SourcesListFormat.cs
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ ├── TrustedSignersCommand
│ │ │ ├── ITrustedSignersCommandRunner.cs
│ │ │ ├── TrustedSignerActionsProvider.cs
│ │ │ ├── TrustedSignersArgs.cs
│ │ │ └── TrustedSignersCommandRunner.cs
│ │ ├── Utility
│ │ │ ├── AssetTargetFallbackUtility.cs
│ │ │ ├── CommandRunnerUtility.cs
│ │ │ ├── Extensions.cs
│ │ │ ├── MSBuildProjectFrameworkUtility.cs
│ │ │ ├── PackageSourceProviderExtensions.cs
│ │ │ ├── RequestRuntimeUtility.cs
│ │ │ └── SdkAnalysisLevelMinimums.cs
│ │ ├── VerifyCommand
│ │ │ ├── IVerifyCommandRunner.cs
│ │ │ ├── VerifyArgs.cs
│ │ │ └── VerifyCommandRunner.cs
│ │ └── xlf
│ │ │ ├── Strings.cs.xlf
│ │ │ ├── Strings.de.xlf
│ │ │ ├── Strings.es.xlf
│ │ │ ├── Strings.fr.xlf
│ │ │ ├── Strings.it.xlf
│ │ │ ├── Strings.ja.xlf
│ │ │ ├── Strings.ko.xlf
│ │ │ ├── Strings.pl.xlf
│ │ │ ├── Strings.pt-BR.xlf
│ │ │ ├── Strings.ru.xlf
│ │ │ ├── Strings.tr.xlf
│ │ │ ├── Strings.zh-Hans.xlf
│ │ │ └── Strings.zh-Hant.xlf
│ │ ├── NuGet.Common
│ │ ├── ActivityCorrelationId.cs
│ │ ├── AsyncEnumerable
│ │ │ ├── AggregateEnumerableAsync.cs
│ │ │ ├── AggregateEnumeratorAsync.cs
│ │ │ ├── IEnumerableAsync.cs
│ │ │ └── IEnumeratorAsync.cs
│ │ ├── AsyncLazy.cs
│ │ ├── AuthTypeFilteredCredentials.cs
│ │ ├── ClientVersionUtility.cs
│ │ ├── CommandLineArgumentCombinationException.cs
│ │ ├── ComparisonUtility.cs
│ │ ├── ConcurrencyUtilities.cs
│ │ ├── CryptoHashProvider.cs
│ │ ├── CryptoHashUtility.cs
│ │ ├── CultureUtility.cs
│ │ ├── DatetimeUtility.cs
│ │ ├── EnvironmentVariableWrapper.cs
│ │ ├── Errors
│ │ │ ├── ILogFileContext.cs
│ │ │ ├── ILogMessage.cs
│ │ │ ├── ILogMessageException.cs
│ │ │ ├── INuGetLogMessage.cs
│ │ │ ├── IPackLogMessage.cs
│ │ │ ├── IRestoreLogMessage.cs
│ │ │ ├── LogLevel.cs
│ │ │ ├── LogMessage.cs
│ │ │ ├── LogMessageProperties.cs
│ │ │ ├── NuGetLogCode.cs
│ │ │ ├── PackagingLogMessage.cs
│ │ │ ├── RestoreLogMessage.cs
│ │ │ └── WarningLevel.cs
│ │ ├── ExceptionUtilities.cs
│ │ ├── GlobalSuppressions.cs
│ │ ├── HashAlgorithmName.cs
│ │ ├── IEnvironmentVariableReader.cs
│ │ ├── KeyedLock.cs
│ │ ├── LocalResourceUtils.cs
│ │ ├── Logging
│ │ │ ├── ExceptionLogger.cs
│ │ │ ├── ICollectorLogger.cs
│ │ │ ├── ILogger.cs
│ │ │ ├── LegacyLoggerAdapter.cs
│ │ │ ├── LoggerBase.cs
│ │ │ ├── LoggingExtensions.cs
│ │ │ └── NullLogger.cs
│ │ ├── Migrations
│ │ │ ├── Migration1.cs
│ │ │ ├── MigrationRunner.cs
│ │ │ └── PosixPermissions.cs
│ │ ├── MsBuildStringUtility.cs
│ │ ├── NetworkProtocolUtility.cs
│ │ ├── NuGet.Common.csproj
│ │ ├── NuGetEventSource.cs
│ │ ├── PathUtil
│ │ │ ├── FileUtility.cs
│ │ │ ├── INuGetPathContext.cs
│ │ │ ├── NuGetEnvironment.cs
│ │ │ ├── NuGetFolderPath.cs
│ │ │ ├── PathResolver.cs
│ │ │ ├── PathUtility.cs
│ │ │ ├── PathValidator.cs
│ │ │ └── ProjectJsonPathUtilities.cs
│ │ ├── Preprocessor.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── PublicAPI.Shipped.txt
│ │ ├── PublicAPI.Unshipped.txt
│ │ ├── README.md
│ │ ├── RevocationMode.cs
│ │ ├── RuntimeEnvironmentHelper.cs
│ │ ├── SignatureAlgorithmName.cs
│ │ ├── SignatureValidationMode.cs
│ │ ├── StringExtensions.cs
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ ├── Telemetry
│ │ │ ├── INuGetTelemetryService.cs
│ │ │ ├── ITelemetrySession.cs
│ │ │ ├── NuGetOperationStatus.cs
│ │ │ ├── TelemetryActivity.cs
│ │ │ ├── TelemetryEvent.cs
│ │ │ └── TelemetryServiceUtility.cs
│ │ ├── Tokenizer
│ │ │ ├── Token.cs
│ │ │ ├── TokenCategory.cs
│ │ │ └── Tokenizer.cs
│ │ ├── UriUtility.cs
│ │ └── xlf
│ │ │ ├── Strings.cs.xlf
│ │ │ ├── Strings.de.xlf
│ │ │ ├── Strings.es.xlf
│ │ │ ├── Strings.fr.xlf
│ │ │ ├── Strings.it.xlf
│ │ │ ├── Strings.ja.xlf
│ │ │ ├── Strings.ko.xlf
│ │ │ ├── Strings.pl.xlf
│ │ │ ├── Strings.pt-BR.xlf
│ │ │ ├── Strings.ru.xlf
│ │ │ ├── Strings.tr.xlf
│ │ │ ├── Strings.zh-Hans.xlf
│ │ │ └── Strings.zh-Hant.xlf
│ │ ├── NuGet.Configuration
│ │ ├── ClientCertificate
│ │ │ ├── ClientCertificateProvider.cs
│ │ │ └── IClientCertificateProvider.cs
│ │ ├── Credential
│ │ │ ├── CredentialRequestType.cs
│ │ │ ├── ICredentialCache.cs
│ │ │ └── ICredentialService.cs
│ │ ├── Exceptions
│ │ │ └── NuGetConfigurationException.cs
│ │ ├── GlobalSuppressions.cs
│ │ ├── NuGet.Configuration.csproj
│ │ ├── PackageSource
│ │ │ ├── IPackageSourceProvider.cs
│ │ │ ├── NuGetConstants.cs
│ │ │ ├── PackageSource.cs
│ │ │ ├── PackageSourceCredential.cs
│ │ │ └── PackageSourceProvider.cs
│ │ ├── PackageSourceMapping
│ │ │ ├── PackageSourceMapping.cs
│ │ │ ├── PackageSourceMappingProvider.cs
│ │ │ ├── SearchNode.cs
│ │ │ └── SearchTree.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Proxy
│ │ │ ├── IProxyCache.cs
│ │ │ ├── IProxyCredentialCache.cs
│ │ │ ├── ProxyCache.cs
│ │ │ └── WebProxy.cs
│ │ ├── PublicAPI.Shipped.txt
│ │ ├── PublicAPI.Unshipped.txt
│ │ ├── README.md
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings
│ │ │ ├── ConfigurationDefaults.cs
│ │ │ ├── IMachineWideSettings.cs
│ │ │ ├── ISettings.cs
│ │ │ ├── ISettingsGroup.cs
│ │ │ ├── ImmutableSettings.cs
│ │ │ ├── Items
│ │ │ │ ├── AddItem.cs
│ │ │ │ ├── AuthorItem.cs
│ │ │ │ ├── CertificateItem.cs
│ │ │ │ ├── ClearItem.cs
│ │ │ │ ├── ClientCertItem.cs
│ │ │ │ ├── CredentialsItem.cs
│ │ │ │ ├── FileClientCertItem.cs
│ │ │ │ ├── OwnersItem.cs
│ │ │ │ ├── PackagePatternItem.cs
│ │ │ │ ├── PackageSourceMappingSourceItem.cs
│ │ │ │ ├── RepositoryItem.cs
│ │ │ │ ├── SourceItem.cs
│ │ │ │ ├── StoreClientCertItem.cs
│ │ │ │ ├── TrustedSignerItem.cs
│ │ │ │ └── UnknownItem.cs
│ │ │ ├── NuGetConfiguration.cs
│ │ │ ├── NuGetPathContext.cs
│ │ │ ├── NullSettings.cs
│ │ │ ├── ParsedSettingSection.cs
│ │ │ ├── SettingBase.cs
│ │ │ ├── SettingElement.cs
│ │ │ ├── SettingElementType.cs
│ │ │ ├── SettingFactory.cs
│ │ │ ├── SettingItem.cs
│ │ │ ├── SettingSection.cs
│ │ │ ├── SettingText.cs
│ │ │ ├── Settings.cs
│ │ │ ├── SettingsFile.cs
│ │ │ ├── SettingsGroup.cs
│ │ │ ├── SettingsLoadingContext.cs
│ │ │ ├── VirtualSettingSection.cs
│ │ │ └── XPlatMachineWideSetting.cs
│ │ ├── Utility
│ │ │ ├── ConfigurationContants.cs
│ │ │ ├── EncryptionUtility.cs
│ │ │ ├── FileSystemUtility.cs
│ │ │ ├── IExtensionLocator.cs
│ │ │ ├── SettingsUtility.cs
│ │ │ └── XElementUtility.cs
│ │ └── xlf
│ │ │ ├── Resources.cs.xlf
│ │ │ ├── Resources.de.xlf
│ │ │ ├── Resources.es.xlf
│ │ │ ├── Resources.fr.xlf
│ │ │ ├── Resources.it.xlf
│ │ │ ├── Resources.ja.xlf
│ │ │ ├── Resources.ko.xlf
│ │ │ ├── Resources.pl.xlf
│ │ │ ├── Resources.pt-BR.xlf
│ │ │ ├── Resources.ru.xlf
│ │ │ ├── Resources.tr.xlf
│ │ │ ├── Resources.zh-Hans.xlf
│ │ │ └── Resources.zh-Hant.xlf
│ │ ├── NuGet.Credentials
│ │ ├── CredentialResponse.cs
│ │ ├── CredentialService.cs
│ │ ├── CredentialStatus.cs
│ │ ├── CredentialsConstants.cs
│ │ ├── DefaultCredentialServiceUtility.cs
│ │ ├── DefaultNetworkCredentialsCredentialProvider.cs
│ │ ├── DelegatingLogger.cs
│ │ ├── GlobalSuppressions.cs
│ │ ├── ICredentialProvider.cs
│ │ ├── NuGet.Credentials.csproj
│ │ ├── PluginCredentialProvider.cs
│ │ ├── PluginCredentialProviderBuilder.cs
│ │ ├── PluginCredentialRequest.cs
│ │ ├── PluginCredentialResponse.cs
│ │ ├── PluginException.cs
│ │ ├── PluginUnexpectedStatusException.cs
│ │ ├── PreviewFeatureSettings.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── ProviderException.cs
│ │ ├── PublicAPI
│ │ │ ├── net472
│ │ │ │ ├── PublicAPI.Shipped.txt
│ │ │ │ └── PublicAPI.Unshipped.txt
│ │ │ └── net8.0
│ │ │ │ ├── PublicAPI.Shipped.txt
│ │ │ │ └── PublicAPI.Unshipped.txt
│ │ ├── README.md
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── SecurePluginCredentialProvider.cs
│ │ ├── SecurePluginCredentialProviderBuilder.cs
│ │ └── xlf
│ │ │ ├── Resources.cs.xlf
│ │ │ ├── Resources.de.xlf
│ │ │ ├── Resources.es.xlf
│ │ │ ├── Resources.fr.xlf
│ │ │ ├── Resources.it.xlf
│ │ │ ├── Resources.ja.xlf
│ │ │ ├── Resources.ko.xlf
│ │ │ ├── Resources.pl.xlf
│ │ │ ├── Resources.pt-BR.xlf
│ │ │ ├── Resources.ru.xlf
│ │ │ ├── Resources.tr.xlf
│ │ │ ├── Resources.zh-Hans.xlf
│ │ │ └── Resources.zh-Hant.xlf
│ │ ├── NuGet.DependencyResolver.Core
│ │ ├── GlobalSuppressions.cs
│ │ ├── GraphItemKeyComparer.cs
│ │ ├── GraphModel
│ │ │ ├── AnalyzeResult.cs
│ │ │ ├── Disposition.cs
│ │ │ ├── DowngradeResult.cs
│ │ │ ├── GraphEdge.cs
│ │ │ ├── GraphItem.cs
│ │ │ ├── GraphNode.cs
│ │ │ ├── GraphOperations.cs
│ │ │ ├── Tracker.cs
│ │ │ └── VersionConflictResult.cs
│ │ ├── LibraryRangeCacheKey.cs
│ │ ├── LockFileCacheKey.cs
│ │ ├── NuGet.DependencyResolver.Core.csproj
│ │ ├── PackagingUtility.cs
│ │ ├── Providers
│ │ │ ├── IDependencyProvider.cs
│ │ │ ├── IRemoteDependencyProvider.cs
│ │ │ └── LocalDependencyProvider.cs
│ │ ├── PublicAPI.Shipped.txt
│ │ ├── PublicAPI.Unshipped.txt
│ │ ├── README.md
│ │ ├── Remote
│ │ │ ├── LocalMatch.cs
│ │ │ ├── RemoteDependencyWalker.cs
│ │ │ ├── RemoteMatch.cs
│ │ │ ├── RemoteResolveResult.cs
│ │ │ └── RemoteWalkContext.cs
│ │ ├── ResolverUtility.cs
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ └── xlf
│ │ │ ├── Strings.cs.xlf
│ │ │ ├── Strings.de.xlf
│ │ │ ├── Strings.es.xlf
│ │ │ ├── Strings.fr.xlf
│ │ │ ├── Strings.it.xlf
│ │ │ ├── Strings.ja.xlf
│ │ │ ├── Strings.ko.xlf
│ │ │ ├── Strings.pl.xlf
│ │ │ ├── Strings.pt-BR.xlf
│ │ │ ├── Strings.ru.xlf
│ │ │ ├── Strings.tr.xlf
│ │ │ ├── Strings.zh-Hans.xlf
│ │ │ └── Strings.zh-Hant.xlf
│ │ ├── NuGet.Frameworks
│ │ ├── AssetTargetFallbackFramework.cs
│ │ ├── CompatibilityCacheKey.cs
│ │ ├── CompatibilityListProvider.cs
│ │ ├── CompatibilityProvider.cs
│ │ ├── CompatibilityTable.cs
│ │ ├── DefaultCompatibilityProvider.cs
│ │ ├── DefaultFrameworkMappings.cs
│ │ ├── DefaultFrameworkNameProvider.cs
│ │ ├── DefaultPortableFrameworkMappings.cs
│ │ ├── DualCompatibilityFramework.cs
│ │ ├── FallbackFramework.cs
│ │ ├── FrameworkConstants.cs
│ │ ├── FrameworkException.cs
│ │ ├── FrameworkExpander.cs
│ │ ├── FrameworkExtensions.cs
│ │ ├── FrameworkNameHelpers.cs
│ │ ├── FrameworkNameProvider.cs
│ │ ├── FrameworkRange.cs
│ │ ├── FrameworkReducer.cs
│ │ ├── FrameworkRuntimePair.cs
│ │ ├── FrameworkSpecificMapping.cs
│ │ ├── GlobalSuppressions.cs
│ │ ├── NuGet.Frameworks.csproj
│ │ ├── NuGetFramework.cs
│ │ ├── NuGetFrameworkFactory.cs
│ │ ├── NuGetFrameworkUtility.cs
│ │ ├── OneWayCompatibilityMappingEntry.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── PublicAPI.Shipped.txt
│ │ ├── PublicAPI.Unshipped.txt
│ │ ├── README.md
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ ├── comparers
│ │ │ ├── CompatibilityMappingComparer.cs
│ │ │ ├── FrameworkPrecedenceSorter.cs
│ │ │ ├── FrameworkRangeComparer.cs
│ │ │ ├── NuGetFrameworkFullComparer.cs
│ │ │ ├── NuGetFrameworkNameComparer.cs
│ │ │ └── NuGetFrameworkSorter.cs
│ │ ├── def
│ │ │ ├── IFrameworkCompatibilityListProvider.cs
│ │ │ ├── IFrameworkCompatibilityProvider.cs
│ │ │ ├── IFrameworkMappings.cs
│ │ │ ├── IFrameworkNameProvider.cs
│ │ │ ├── IFrameworkSpecific.cs
│ │ │ └── IPortableFrameworkMappings.cs
│ │ └── xlf
│ │ │ ├── Strings.cs.xlf
│ │ │ ├── Strings.de.xlf
│ │ │ ├── Strings.es.xlf
│ │ │ ├── Strings.fr.xlf
│ │ │ ├── Strings.it.xlf
│ │ │ ├── Strings.ja.xlf
│ │ │ ├── Strings.ko.xlf
│ │ │ ├── Strings.pl.xlf
│ │ │ ├── Strings.pt-BR.xlf
│ │ │ ├── Strings.ru.xlf
│ │ │ ├── Strings.tr.xlf
│ │ │ ├── Strings.zh-Hans.xlf
│ │ │ └── Strings.zh-Hant.xlf
│ │ ├── NuGet.LibraryModel
│ │ ├── CentralPackageVersion.cs
│ │ ├── CentralPackageVersionNameComparer.cs
│ │ ├── DownloadDependency.cs
│ │ ├── FrameworkDependency.cs
│ │ ├── FrameworkDependencyFlags.cs
│ │ ├── FrameworkDependencyFlagsUtils.cs
│ │ ├── GlobalSuppressions.cs
│ │ ├── KnownLibraryProperties.cs
│ │ ├── Library.cs
│ │ ├── LibraryDependency.cs
│ │ ├── LibraryDependencyInfo.cs
│ │ ├── LibraryDependencyReferenceType.cs
│ │ ├── LibraryDependencyTarget.cs
│ │ ├── LibraryDependencyTargetUtils.cs
│ │ ├── LibraryExtensions.cs
│ │ ├── LibraryIdentity.cs
│ │ ├── LibraryIncludeFlag.cs
│ │ ├── LibraryIncludeFlagUtils.cs
│ │ ├── LibraryRange.cs
│ │ ├── LibraryType.cs
│ │ ├── NuGet.LibraryModel.csproj
│ │ ├── PrunePackageReference.cs
│ │ ├── PublicAPI.Shipped.txt
│ │ ├── PublicAPI.Unshipped.txt
│ │ ├── README.md
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ └── xlf
│ │ │ ├── Strings.cs.xlf
│ │ │ ├── Strings.de.xlf
│ │ │ ├── Strings.es.xlf
│ │ │ ├── Strings.fr.xlf
│ │ │ ├── Strings.it.xlf
│ │ │ ├── Strings.ja.xlf
│ │ │ ├── Strings.ko.xlf
│ │ │ ├── Strings.pl.xlf
│ │ │ ├── Strings.pt-BR.xlf
│ │ │ ├── Strings.ru.xlf
│ │ │ ├── Strings.tr.xlf
│ │ │ ├── Strings.zh-Hans.xlf
│ │ │ └── Strings.zh-Hant.xlf
│ │ ├── NuGet.Localization
│ │ ├── NuGet.Localization.csproj
│ │ └── README.md
│ │ ├── NuGet.PackageManagement
│ │ ├── Audit
│ │ │ ├── AuditCheckResult.cs
│ │ │ └── AuditChecker.cs
│ │ ├── BuildIntegratedInstallationContext.cs
│ │ ├── BuildIntegratedPackageReference.cs
│ │ ├── BuildIntegration
│ │ │ ├── BuildIntegratedProjectAction.cs
│ │ │ ├── BuildIntegratedRestoreUtility.cs
│ │ │ ├── DependencyGraphRestoreUtility.cs
│ │ │ └── PackageReferenceRollbackException.cs
│ │ ├── ConsoleProjectContext.cs
│ │ ├── Context
│ │ │ ├── IDEExecutionContext.cs
│ │ │ ├── PackageManagementContext.cs
│ │ │ ├── ResolutionContext.cs
│ │ │ ├── UninstallationContext.cs
│ │ │ └── VersionConstraints.cs
│ │ ├── DependencyGraphCacheContext.cs
│ │ ├── EmptyNuGetProjectContext.cs
│ │ ├── Events
│ │ │ ├── IPackageEventsProvider.cs
│ │ │ ├── IPackageProjectEventsProvider.cs
│ │ │ ├── PackageEventArgs.cs
│ │ │ ├── PackageEvents.cs
│ │ │ ├── PackageEventsProvider.cs
│ │ │ ├── PackageProjectEventArgs.cs
│ │ │ ├── PackageProjectEvents.cs
│ │ │ └── PackageProjectEventsProvider.cs
│ │ ├── ExecutionContext.cs
│ │ ├── FileConflictAction.cs
│ │ ├── FileModifiers
│ │ │ ├── FileTransformExtensions.cs
│ │ │ ├── IPackageFileTransformer.cs
│ │ │ ├── Preprocessor.cs
│ │ │ ├── XdtTransformer.cs
│ │ │ └── XmlTransformer.cs
│ │ ├── GlobalSuppressions.cs
│ │ ├── IDE
│ │ │ ├── ActionsExecutedEventArgs.cs
│ │ │ ├── ICommonOperations.cs
│ │ │ ├── IDeleteOnRestartManager.cs
│ │ │ ├── IPackageRestoreManager.cs
│ │ │ ├── IProductUpdateService.cs
│ │ │ ├── ISolutionManager.cs
│ │ │ ├── PackageRestoreContext.cs
│ │ │ ├── PackageRestoreData.cs
│ │ │ ├── PackageRestoreFailedEventArgs.cs
│ │ │ ├── PackageRestoreManager.cs
│ │ │ ├── PackageRestoreResult.cs
│ │ │ └── PackagesMarkedForDeletionEventArgs.cs
│ │ ├── IDependencyGraphProject.cs
│ │ ├── IInstallationCompatibility.cs
│ │ ├── INuGetProjectContext.cs
│ │ ├── InstallationCompatibility.cs
│ │ ├── LoggerAdapter.cs
│ │ ├── MessageLevel.cs
│ │ ├── MessageLevelExtensions.cs
│ │ ├── NuGet.PackageManagement.csproj
│ │ ├── NuGetActionType.cs
│ │ ├── NuGetPackageManager.cs
│ │ ├── NuGetProjectAction.cs
│ │ ├── NuGetProjectActionType.cs
│ │ ├── PackageDownloader.cs
│ │ ├── PackageManagementConstants.cs
│ │ ├── PackagePreFetcher.cs
│ │ ├── PackagePreFetcherResult.cs
│ │ ├── PackageRestoreConsent.cs
│ │ ├── PackageWithDependants.cs
│ │ ├── ProjectContextLogger.cs
│ │ ├── Projects
│ │ │ ├── BuildIntegratedNuGetProject.cs
│ │ │ ├── DefaultProjectServices.cs
│ │ │ ├── FolderNuGetProject.cs
│ │ │ ├── IMSBuildNuGetProjectContext.cs
│ │ │ ├── IMSBuildProjectSystem.cs
│ │ │ ├── INuGetIntegratedProject.cs
│ │ │ ├── INuGetProjectServices.cs
│ │ │ ├── IProjectScriptHostService.cs
│ │ │ ├── IProjectSystemCapabilities.cs
│ │ │ ├── IProjectSystemReferencesReader.cs
│ │ │ ├── IProjectSystemReferencesService.cs
│ │ │ ├── IProjectSystemService.cs
│ │ │ ├── MSBuildNuGetProject.cs
│ │ │ ├── NuGetProject.cs
│ │ │ ├── NuGetProjectMetadataKeys.cs
│ │ │ ├── PackagesConfigNuGetProject.cs
│ │ │ ├── PowerShellScripts.cs
│ │ │ ├── ProjectBuildProperties.cs
│ │ │ ├── ProjectItemProperties.cs
│ │ │ ├── ProjectItems.cs
│ │ │ └── ProjectJsonNuGetProject.cs
│ │ ├── PublicAPI.Shipped.txt
│ │ ├── PublicAPI.Unshipped.txt
│ │ ├── README.md
│ │ ├── Resolution
│ │ │ ├── GatherCache.cs
│ │ │ ├── GatherCacheResult.cs
│ │ │ ├── GatherContext.cs
│ │ │ ├── GatherExceptionHelpers.cs
│ │ │ ├── PrunePackageTree.cs
│ │ │ ├── ResolverGather.cs
│ │ │ └── UninstallResolver.cs
│ │ ├── ResolvedAction.cs
│ │ ├── ResolvedPackage.cs
│ │ ├── SourceControl
│ │ │ ├── SourceControlManager.cs
│ │ │ ├── SourceControlManagerProvider.cs
│ │ │ └── SourceControlUtility.cs
│ │ ├── StringFormatter.cs
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ ├── Telemetry
│ │ │ ├── ActionEventBase.cs
│ │ │ ├── ActionTelemetryStepEvent.cs
│ │ │ ├── ActionsTelemetryEvent.cs
│ │ │ └── TelemetryConstants.cs
│ │ ├── Utility
│ │ │ ├── BuildIntegratedProjectUtility.cs
│ │ │ ├── CollectionsUtility.cs
│ │ │ ├── Constants.cs
│ │ │ ├── ExceptionUtility.cs
│ │ │ ├── FileSystemUtility.cs
│ │ │ ├── IPackagesConfigContentHashProvider.cs
│ │ │ ├── InternalZipFileInfo.cs
│ │ │ ├── JsonConfigUtility.cs
│ │ │ ├── LogUtility.cs
│ │ │ ├── MSBuildNuGetProjectSystemUtility.cs
│ │ │ ├── NuGetEventArgs.cs
│ │ │ ├── PackageAlreadyInstalledException.cs
│ │ │ ├── PackageGraphAnalysisUtilities.cs
│ │ │ ├── PackageReferenceComparer.cs
│ │ │ ├── PackagesConfigContentHashProvider.cs
│ │ │ ├── PackagesConfigLockFileUtility.cs
│ │ │ ├── PackagesFolderPathUtility.cs
│ │ │ ├── SourceRepositoryComparer.cs
│ │ │ ├── StreamUtility.cs
│ │ │ ├── UriHelper.cs
│ │ │ ├── XElementExtensions.cs
│ │ │ └── XmlUtility.cs
│ │ └── xlf
│ │ │ ├── Strings.cs.xlf
│ │ │ ├── Strings.de.xlf
│ │ │ ├── Strings.es.xlf
│ │ │ ├── Strings.fr.xlf
│ │ │ ├── Strings.it.xlf
│ │ │ ├── Strings.ja.xlf
│ │ │ ├── Strings.ko.xlf
│ │ │ ├── Strings.pl.xlf
│ │ │ ├── Strings.pt-BR.xlf
│ │ │ ├── Strings.ru.xlf
│ │ │ ├── Strings.tr.xlf
│ │ │ ├── Strings.zh-Hans.xlf
│ │ │ └── Strings.zh-Hant.xlf
│ │ ├── NuGet.Packaging
│ │ ├── ContentModel
│ │ │ ├── AnyFramework.cs
│ │ │ ├── Asset.cs
│ │ │ ├── ContentItem.cs
│ │ │ ├── ContentItemCollection.cs
│ │ │ ├── ContentItemGroup.cs
│ │ │ ├── ContentPropertyDefinition.cs
│ │ │ ├── ContentQueryDefinition.cs
│ │ │ ├── Infrastructure
│ │ │ │ └── Parser.cs
│ │ │ ├── ManagedCodeConventions.cs
│ │ │ ├── PatternTable.cs
│ │ │ ├── PatternTableEntry.cs
│ │ │ ├── ReadOnlyMemoryCharComparerOrdinal.cs
│ │ │ ├── SelectionCriteria.cs
│ │ │ └── SelectionCriteriaBuilder.cs
│ │ ├── Core
│ │ │ ├── ContentExtractor.cs
│ │ │ ├── ContentFilesEntry.cs
│ │ │ ├── ExtractPackageFileDelegate.cs
│ │ │ ├── Fingerprints.cs
│ │ │ ├── FrameworkNameValidatorUtility.cs
│ │ │ ├── FrameworkReference.cs
│ │ │ ├── FrameworkReferenceGroup.cs
│ │ │ ├── FrameworkSpecificGroup.cs
│ │ │ ├── IAsyncPackageCoreReader.cs
│ │ │ ├── INuspecCoreReader.cs
│ │ │ ├── IPackageCoreReader.cs
│ │ │ ├── IRepositoryCertificateInfo.cs
│ │ │ ├── NuspecCoreReader.cs
│ │ │ ├── NuspecCoreReaderBase.cs
│ │ │ ├── NuspecUtility.cs
│ │ │ ├── PackageDependency.cs
│ │ │ ├── PackageDependencyGroup.cs
│ │ │ ├── PackageDependencyInfo.cs
│ │ │ ├── PackageIdentity.cs
│ │ │ ├── PackageType.cs
│ │ │ ├── PackagingCoreConstants.cs
│ │ │ ├── PackagingException.cs
│ │ │ ├── RepositoryMetadata.cs
│ │ │ └── comparers
│ │ │ │ ├── IPackageIdentityComparer.cs
│ │ │ │ ├── PackageDependencyComparer.cs
│ │ │ │ ├── PackageDependencyInfoComparer.cs
│ │ │ │ └── PackageIdentityComparer.cs
│ │ ├── Definitions
│ │ │ ├── IAsyncPackageContentReader.cs
│ │ │ ├── INuspecReader.cs
│ │ │ ├── IPackageContentReader.cs
│ │ │ ├── IPackageDownloader.cs
│ │ │ └── IPackageResolver.cs
│ │ ├── Exceptions
│ │ │ ├── MinClientVersionException.cs
│ │ │ ├── PackagesConfigReaderException.cs
│ │ │ ├── PackagesConfigWriterException.cs
│ │ │ └── UnsafePackageEntryException.cs
│ │ ├── FallbackPackagePathInfo.cs
│ │ ├── FallbackPackagePathResolver.cs
│ │ ├── GlobalSuppressions.cs
│ │ ├── IHashFunction.cs
│ │ ├── InvalidPackageIdException.cs
│ │ ├── Licenses
│ │ │ ├── LicenseExpressionToken.cs
│ │ │ ├── LicenseExpressionTokenizer.cs
│ │ │ ├── LicenseExpressionType.cs
│ │ │ ├── LicenseOperator.cs
│ │ │ ├── LicenseOperatorType.cs
│ │ │ ├── LicenseTokenType.cs
│ │ │ ├── LicenseTokenTypeExtensions.cs
│ │ │ ├── LogicalOperator.cs
│ │ │ ├── LogicalOperatorType.cs
│ │ │ ├── NuGetLicense.cs
│ │ │ ├── NuGetLicenseData.cs
│ │ │ ├── NuGetLicenseException.cs
│ │ │ ├── NuGetLicenseExpression.cs
│ │ │ ├── NuGetLicenseExpressionExtensions.cs
│ │ │ ├── NuGetLicenseExpressionParser.cs
│ │ │ ├── NuGetLicenseExpressionParsingException.cs
│ │ │ └── WithOperator.cs
│ │ ├── MinClientVersionUtility.cs
│ │ ├── NuGet.Packaging.csproj
│ │ ├── NuGetExtractionFileIO.cs
│ │ ├── NupkgMetadata
│ │ │ ├── NupkgMetadataFile.cs
│ │ │ ├── NupkgMetadataFileFormat.cs
│ │ │ └── NupkgMetadataSerializationContext.cs
│ │ ├── NuspecReader.cs
│ │ ├── PackageArchiveReader.cs
│ │ ├── PackageCreation
│ │ │ ├── Authoring
│ │ │ │ ├── EmptyFrameworkFolderFile.cs
│ │ │ │ ├── FrameworkAssemblyReference.cs
│ │ │ │ ├── IPackageFile.cs
│ │ │ │ ├── IPackageMetadata.cs
│ │ │ │ ├── LicenseMetadata.cs
│ │ │ │ ├── Manifest.cs
│ │ │ │ ├── ManifestContentFiles.cs
│ │ │ │ ├── ManifestFile.cs
│ │ │ │ ├── ManifestMetadata.cs
│ │ │ │ ├── ManifestReader.cs
│ │ │ │ ├── ManifestSchemaUtility.cs
│ │ │ │ ├── ManifestVersionAttribute.cs
│ │ │ │ ├── ManifestVersionUtility.cs
│ │ │ │ ├── PackageBuilder.cs
│ │ │ │ ├── PackageReferenceSet.cs
│ │ │ │ └── PhysicalPackageFile.cs
│ │ │ ├── Extensions
│ │ │ │ ├── CollectionExtensions.cs
│ │ │ │ ├── FrameworksExtensions.cs
│ │ │ │ ├── StringExtensions.cs
│ │ │ │ └── XElementExtensions.cs
│ │ │ ├── Resources
│ │ │ │ ├── NuGetResources.Designer.cs
│ │ │ │ ├── NuGetResources.resx
│ │ │ │ └── xlf
│ │ │ │ │ ├── NuGetResources.cs.xlf
│ │ │ │ │ ├── NuGetResources.de.xlf
│ │ │ │ │ ├── NuGetResources.es.xlf
│ │ │ │ │ ├── NuGetResources.fr.xlf
│ │ │ │ │ ├── NuGetResources.it.xlf
│ │ │ │ │ ├── NuGetResources.ja.xlf
│ │ │ │ │ ├── NuGetResources.ko.xlf
│ │ │ │ │ ├── NuGetResources.pl.xlf
│ │ │ │ │ ├── NuGetResources.pt-BR.xlf
│ │ │ │ │ ├── NuGetResources.ru.xlf
│ │ │ │ │ ├── NuGetResources.tr.xlf
│ │ │ │ │ ├── NuGetResources.zh-Hans.xlf
│ │ │ │ │ └── NuGetResources.zh-Hant.xlf
│ │ │ ├── Utility
│ │ │ │ ├── FrameworkNameUtility.cs
│ │ │ │ └── PackageIdValidator.cs
│ │ │ └── Xml
│ │ │ │ └── PackageMetadataXmlExtensions.cs
│ │ ├── PackageExtraction
│ │ │ ├── PackageExtractionBehavior.cs
│ │ │ ├── PackageExtractionContext.cs
│ │ │ ├── PackageExtractionResult.cs
│ │ │ ├── PackageHelper.cs
│ │ │ ├── PackagePathHelper.cs
│ │ │ ├── PackageSaveMode.cs
│ │ │ ├── PackageType.cs
│ │ │ ├── StreamExtensions.cs
│ │ │ ├── XmlDocFileSaveMode.cs
│ │ │ ├── ZipArchiveExtensions.cs
│ │ │ └── ZipFilePair.cs
│ │ ├── PackageExtractor.cs
│ │ ├── PackageFileExtractor.cs
│ │ ├── PackageFolderReader.cs
│ │ ├── PackagePathResolver.cs
│ │ ├── PackageReaderBase.cs
│ │ ├── PackageReaderExtensions.cs
│ │ ├── PackageReference.cs
│ │ ├── PackagesConfig.cs
│ │ ├── PackagesConfigReader.cs
│ │ ├── PackagesConfigWriter.cs
│ │ ├── PackagingConstants.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── PublicAPI
│ │ │ ├── net472
│ │ │ │ ├── PublicAPI.Shipped.txt
│ │ │ │ └── PublicAPI.Unshipped.txt
│ │ │ ├── net8.0
│ │ │ │ ├── PublicAPI.Shipped.txt
│ │ │ │ └── PublicAPI.Unshipped.txt
│ │ │ └── netstandard2.0
│ │ │ │ └── PublicAPI.Shipped.txt
│ │ ├── README.md
│ │ ├── Rules
│ │ │ ├── AccidentallyCompatibleWithAllFrameworksRule.cs
│ │ │ ├── AnalysisResources.Designer.cs
│ │ │ ├── AnalysisResources.resx
│ │ │ ├── BestPractice
│ │ │ │ └── MissingReadmeRule.cs
│ │ │ ├── ContentFolderInPackageReferenceProjectRule.cs
│ │ │ ├── DefaultManifestValuesRule.cs
│ │ │ ├── DependenciesGroupsForEachTFMRule.cs
│ │ │ ├── IPackageRule.cs
│ │ │ ├── IconUrlDeprecationWarning.cs
│ │ │ ├── InitScriptNotUnderToolsRule.cs
│ │ │ ├── InstallScriptInPackageReferenceProjectRule.cs
│ │ │ ├── InvalidFrameworkFolderRule.cs
│ │ │ ├── InvalidPlaceholderFileRule.cs
│ │ │ ├── InvalidPrereleaseDependencyRule.cs
│ │ │ ├── InvalidUndottedFrameworkRule.cs
│ │ │ ├── LicenseUrlDeprecationWarning.cs
│ │ │ ├── MisplaceAssemblyOutsideLibRule.cs
│ │ │ ├── MisplacedAssemblyUnderLibRule.cs
│ │ │ ├── MisplacedScriptFileRule.cs
│ │ │ ├── MisplacedTransformFileRule.cs
│ │ │ ├── PathTooLongRule.cs
│ │ │ ├── ReferencesInNuspecMatchRefAssetsRule.cs
│ │ │ ├── RuleSet.cs
│ │ │ ├── UnrecognizedLicenseIdentifierRule.cs
│ │ │ ├── UnrecognizedScriptFileRule.cs
│ │ │ ├── UnspecifiedDependencyVersionRule.cs
│ │ │ ├── UpholdBuildConventionRule.cs
│ │ │ ├── WinRTNameIsObsoleteRule.cs
│ │ │ ├── XdtTransformsInPackageReferenceProjectRule.cs
│ │ │ └── xlf
│ │ │ │ ├── AnalysisResources.cs.xlf
│ │ │ │ ├── AnalysisResources.de.xlf
│ │ │ │ ├── AnalysisResources.es.xlf
│ │ │ │ ├── AnalysisResources.fr.xlf
│ │ │ │ ├── AnalysisResources.it.xlf
│ │ │ │ ├── AnalysisResources.ja.xlf
│ │ │ │ ├── AnalysisResources.ko.xlf
│ │ │ │ ├── AnalysisResources.pl.xlf
│ │ │ │ ├── AnalysisResources.pt-BR.xlf
│ │ │ │ ├── AnalysisResources.ru.xlf
│ │ │ │ ├── AnalysisResources.tr.xlf
│ │ │ │ ├── AnalysisResources.zh-Hans.xlf
│ │ │ │ └── AnalysisResources.zh-Hant.xlf
│ │ ├── RuntimeModel
│ │ │ ├── CompatibilityProfile.cs
│ │ │ ├── IObjectWriter.cs
│ │ │ ├── JsonObjectWriter.cs
│ │ │ ├── JsonRuntimeFormat.cs
│ │ │ ├── RuntimeDependencySet.cs
│ │ │ ├── RuntimeDescription.cs
│ │ │ ├── RuntimeGraph.cs
│ │ │ └── RuntimePackageDependency.cs
│ │ ├── Sha512HashFunction.cs
│ │ ├── Signing
│ │ │ ├── Archive
│ │ │ │ ├── CentralDirectoryHeader.cs
│ │ │ │ ├── CentralDirectoryHeaderMetadata.cs
│ │ │ │ ├── Crc32.cs
│ │ │ │ ├── EndOfCentralDirectoryRecord.cs
│ │ │ │ ├── ExtraField.cs
│ │ │ │ ├── LocalFileHeader.cs
│ │ │ │ ├── ReadOnlyBufferedStream.cs
│ │ │ │ ├── SignedPackageArchiveIOUtility.cs
│ │ │ │ ├── SignedPackageArchiveMetadata.cs
│ │ │ │ ├── SignedPackageArchiveUtility.cs
│ │ │ │ ├── UnsignedPackageArchiveMetadata.cs
│ │ │ │ ├── Zip64EndOfCentralDirectoryLocator.cs
│ │ │ │ ├── Zip64ExtendedInformationExtraField.cs
│ │ │ │ └── ZipConstants.cs
│ │ │ ├── Authoring
│ │ │ │ ├── AuthorSignPackageRequest.cs
│ │ │ │ ├── ISignatureProvider.cs
│ │ │ │ ├── ITimestampProvider.cs
│ │ │ │ ├── RepositorySignPackageRequest.cs
│ │ │ │ ├── SignPackageRequest.cs
│ │ │ │ ├── SigningOptions.cs
│ │ │ │ └── X509SignatureProvider.cs
│ │ │ ├── ChainBuilding
│ │ │ │ ├── DefaultX509ChainBuildPolicy.cs
│ │ │ │ ├── IX509ChainBuildPolicy.cs
│ │ │ │ ├── RetriableX509ChainBuildPolicy.cs
│ │ │ │ └── X509ChainBuildPolicyFactory.cs
│ │ │ ├── Cms
│ │ │ │ ├── CmsFactory.cs
│ │ │ │ ├── HeapBlockRetainer.cs
│ │ │ │ ├── ICms.cs
│ │ │ │ ├── ManagedCmsWrapper.cs
│ │ │ │ ├── NativeCms.cs
│ │ │ │ ├── NativeCmsWrapper.cs
│ │ │ │ ├── NativeMethods.cs
│ │ │ │ └── NativeUtility.cs
│ │ │ ├── Content
│ │ │ │ ├── KeyPairFileReader.cs
│ │ │ │ ├── KeyPairFileUtility.cs
│ │ │ │ ├── KeyPairFileWriter.cs
│ │ │ │ └── SignatureContent.cs
│ │ │ ├── DerEncoding
│ │ │ │ ├── DerEncoder.cs
│ │ │ │ ├── DerGeneralizedTime.cs
│ │ │ │ ├── DerSequenceReader.cs
│ │ │ │ ├── SR.Designer.cs
│ │ │ │ ├── SR.resx
│ │ │ │ └── xlf
│ │ │ │ │ ├── SR.cs.xlf
│ │ │ │ │ ├── SR.de.xlf
│ │ │ │ │ ├── SR.es.xlf
│ │ │ │ │ ├── SR.fr.xlf
│ │ │ │ │ ├── SR.it.xlf
│ │ │ │ │ ├── SR.ja.xlf
│ │ │ │ │ ├── SR.ko.xlf
│ │ │ │ │ ├── SR.pl.xlf
│ │ │ │ │ ├── SR.pt-BR.xlf
│ │ │ │ │ ├── SR.ru.xlf
│ │ │ │ │ ├── SR.tr.xlf
│ │ │ │ │ ├── SR.zh-Hans.xlf
│ │ │ │ │ └── SR.zh-Hant.xlf
│ │ │ ├── EnvironmentVariableConstants.cs
│ │ │ ├── Oids.cs
│ │ │ ├── Package
│ │ │ │ ├── ISignedPackage.cs
│ │ │ │ ├── ISignedPackageReader.cs
│ │ │ │ ├── ISignedPackageWriter.cs
│ │ │ │ └── SignedPackageArchive.cs
│ │ │ ├── RepositorySignatureInfo.cs
│ │ │ ├── RepositorySignatureInfoProvider.cs
│ │ │ ├── SignatureException.cs
│ │ │ ├── SignatureLog.cs
│ │ │ ├── Signatures
│ │ │ │ ├── AlgorithmIdentifier.cs
│ │ │ │ ├── AuthorPrimarySignature.cs
│ │ │ │ ├── CommitmentTypeIndication.cs
│ │ │ │ ├── CommitmentTypeQualifier.cs
│ │ │ │ ├── EssCertId.cs
│ │ │ │ ├── EssCertIdV2.cs
│ │ │ │ ├── GeneralName.cs
│ │ │ │ ├── IRepositorySignature.cs
│ │ │ │ ├── ISignature.cs
│ │ │ │ ├── IssuerSerial.cs
│ │ │ │ ├── NuGetPackageOwners.cs
│ │ │ │ ├── NuGetV3ServiceIndexUrl.cs
│ │ │ │ ├── PolicyInformation.cs
│ │ │ │ ├── PolicyQualifierInfo.cs
│ │ │ │ ├── PrimarySignature.cs
│ │ │ │ ├── PrimarySignatureFactory.cs
│ │ │ │ ├── RepositoryCountersignature.cs
│ │ │ │ ├── RepositoryPrimarySignature.cs
│ │ │ │ ├── Signature.cs
│ │ │ │ ├── SignaturePlacement.cs
│ │ │ │ ├── SignatureType.cs
│ │ │ │ ├── SignatureVerifySettings.cs
│ │ │ │ ├── SigningCertificate.cs
│ │ │ │ ├── SigningCertificateV2.cs
│ │ │ │ └── UnknownPrimarySignature.cs
│ │ │ ├── Specifications
│ │ │ │ ├── SigningSpecifications.cs
│ │ │ │ └── SigningSpecificationsV1.cs
│ │ │ ├── Timestamp
│ │ │ │ ├── Accuracy.cs
│ │ │ │ ├── Extension.cs
│ │ │ │ ├── Extensions.cs
│ │ │ │ ├── IRfc3161TimestampRequest.cs
│ │ │ │ ├── IRfc3161TimestampToken.cs
│ │ │ │ ├── IRfc3161TimestampTokenInfo.cs
│ │ │ │ ├── MessageImprint.cs
│ │ │ │ ├── Rfc3161TimestampProvider.cs
│ │ │ │ ├── Rfc3161TimestampRequest.cs
│ │ │ │ ├── Rfc3161TimestampRequestFactory.cs
│ │ │ │ ├── Rfc3161TimestampRequestNet472Wrapper.cs
│ │ │ │ ├── Rfc3161TimestampRequestNetstandard21Wrapper.cs
│ │ │ │ ├── Rfc3161TimestampToken.cs
│ │ │ │ ├── Rfc3161TimestampTokenFactory.cs
│ │ │ │ ├── Rfc3161TimestampTokenInfo.cs
│ │ │ │ ├── Rfc3161TimestampTokenInfoFactory.cs
│ │ │ │ ├── Rfc3161TimestampTokenInfoNet472Wrapper.cs
│ │ │ │ ├── Rfc3161TimestampTokenInfoNetstandard21Wrapper.cs
│ │ │ │ ├── Rfc3161TimestampTokenNet472Wrapper.cs
│ │ │ │ ├── Rfc3161TimestampTokenNetstandard21Wrapper.cs
│ │ │ │ ├── Rfc3161TimestampUtils.cs
│ │ │ │ ├── Rfc3161TimestampVerificationUtility.cs
│ │ │ │ ├── Rfc3161TimestampWin32.cs
│ │ │ │ ├── Timestamp.cs
│ │ │ │ ├── TimestampException.cs
│ │ │ │ ├── TimestampRequest.cs
│ │ │ │ └── TstInfo.cs
│ │ │ ├── TrustStore
│ │ │ │ ├── CertificateBundleX509ChainFactory.cs
│ │ │ │ ├── DotNetDefaultTrustStoreX509ChainFactory.cs
│ │ │ │ ├── FallbackCertificateBundleX509ChainFactory.cs
│ │ │ │ ├── IX509Chain.cs
│ │ │ │ ├── IX509ChainFactory.cs
│ │ │ │ ├── NoCertificateBundleX509ChainFactory.cs
│ │ │ │ ├── SystemCertificateBundleX509ChainFactory.cs
│ │ │ │ ├── X509ChainWrapper.cs
│ │ │ │ ├── X509StorePurpose.cs
│ │ │ │ └── X509TrustStore.cs
│ │ │ ├── TrustedSigners
│ │ │ │ ├── ITrustedSignersProvider.cs
│ │ │ │ └── TrustedSignersProvider.cs
│ │ │ ├── Utility
│ │ │ │ ├── AttributeUtility.cs
│ │ │ │ ├── CertificateChainUtility.cs
│ │ │ │ ├── CertificateUtility.cs
│ │ │ │ ├── IX509CertificateChain.cs
│ │ │ │ ├── MarshalUtility.cs
│ │ │ │ ├── RepositorySignatureInfoUtility.cs
│ │ │ │ ├── SignatureUtility.cs
│ │ │ │ ├── SigningUtility.cs
│ │ │ │ ├── VerificationUtility.cs
│ │ │ │ ├── X509CertificateChain.cs
│ │ │ │ └── X509ChainHolder.cs
│ │ │ └── Verification
│ │ │ │ ├── AllowListVerificationProvider.cs
│ │ │ │ ├── CertificateHashAllowListEntry.cs
│ │ │ │ ├── CertificateType.cs
│ │ │ │ ├── ClientPolicyContext.cs
│ │ │ │ ├── IPackageSignatureVerifier.cs
│ │ │ │ ├── ISignatureVerificationProvider.cs
│ │ │ │ ├── IntegrityVerificationProvider.cs
│ │ │ │ ├── InvalidSignaturePackageVerificationResult.cs
│ │ │ │ ├── PackageSignatureVerifier.cs
│ │ │ │ ├── PackageVerificationResult.cs
│ │ │ │ ├── SignatureTrustAndValidityVerificationProvider.cs
│ │ │ │ ├── SignatureVerificationBehavior.cs
│ │ │ │ ├── SignatureVerificationStatus.cs
│ │ │ │ ├── SignatureVerificationStatusFlags.cs
│ │ │ │ ├── SignatureVerificationSummary.cs
│ │ │ │ ├── SignedPackageVerificationResult.cs
│ │ │ │ ├── SignedPackageVerifierSettings.cs
│ │ │ │ ├── TrustedSignerAllowListEntry.cs
│ │ │ │ ├── UnsignedPackageVerificationResult.cs
│ │ │ │ ├── VerificationAllowListEntry.cs
│ │ │ │ ├── VerificationTarget.cs
│ │ │ │ └── VerifySignaturesResult.cs
│ │ ├── StringFormatter.cs
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ ├── Telemetry
│ │ │ ├── ExtractionSource.cs
│ │ │ ├── PackageExtractionTelemetryEvent.cs
│ │ │ └── PackageSigningTelemetryEvent.cs
│ │ ├── TopologicalSortUtility.cs
│ │ ├── VersionFolderPathResolver.cs
│ │ ├── compiler
│ │ │ └── resources
│ │ │ │ └── nuspec.xsd
│ │ └── xlf
│ │ │ ├── Strings.cs.xlf
│ │ │ ├── Strings.de.xlf
│ │ │ ├── Strings.es.xlf
│ │ │ ├── Strings.fr.xlf
│ │ │ ├── Strings.it.xlf
│ │ │ ├── Strings.ja.xlf
│ │ │ ├── Strings.ko.xlf
│ │ │ ├── Strings.pl.xlf
│ │ │ ├── Strings.pt-BR.xlf
│ │ │ ├── Strings.ru.xlf
│ │ │ ├── Strings.tr.xlf
│ │ │ ├── Strings.zh-Hans.xlf
│ │ │ └── Strings.zh-Hant.xlf
│ │ ├── NuGet.ProjectModel
│ │ ├── CacheFile.cs
│ │ ├── CacheFileFormat.cs
│ │ ├── CentralTransitiveDependencyGroup.cs
│ │ ├── CircularMemoryStream.cs
│ │ ├── DependencyGraphSpec.cs
│ │ ├── ExternalProjectReference.cs
│ │ ├── FileFormatException.cs
│ │ ├── FnvHash64Function.cs
│ │ ├── GlobalSuppressions.cs
│ │ ├── HashObjectWriter.cs
│ │ ├── IExternalProjectReferenceProvider.cs
│ │ ├── JTokenExtensions.cs
│ │ ├── JsonPackageSpecReader.Utf8JsonStreamReader.cs
│ │ ├── JsonPackageSpecReader.cs
│ │ ├── JsonSourceGenExtensions.cs
│ │ ├── JsonTextReaderExtensions.cs
│ │ ├── JsonUtility.cs
│ │ ├── LazyStringSplit.cs
│ │ ├── LockFile
│ │ │ ├── AssetsLogMessage.cs
│ │ │ ├── BuildAction.cs
│ │ │ ├── IAssetsLogMessage.cs
│ │ │ ├── LockFile.cs
│ │ │ ├── LockFileContentFile.cs
│ │ │ ├── LockFileExtensions.cs
│ │ │ ├── LockFileFormat.cs
│ │ │ ├── LockFileItem.cs
│ │ │ ├── LockFileLibrary.cs
│ │ │ ├── LockFileReadFlags.cs
│ │ │ ├── LockFileRuntimeTarget.cs
│ │ │ ├── LockFileTarget.cs
│ │ │ ├── LockFileTargetLibrary.cs
│ │ │ ├── LockFileUtilities.cs
│ │ │ ├── Utf8JsonStreamIAssetsLogMessageConverter.cs
│ │ │ ├── Utf8JsonStreamLockFileConverter.cs
│ │ │ ├── Utf8JsonStreamLockFileItemConverter.cs
│ │ │ ├── Utf8JsonStreamLockFileLibraryConverter.cs
│ │ │ ├── Utf8JsonStreamLockFileTargetConverter.cs
│ │ │ └── Utf8JsonStreamLockFileTargetLibraryConverter.cs
│ │ ├── MacroStringsUtility.cs
│ │ ├── NoAllocNewLineStreamWriter.cs
│ │ ├── NuGet.ProjectModel.csproj
│ │ ├── PackageSpec.cs
│ │ ├── PackageSpecExtensions.cs
│ │ ├── PackageSpecOperations.cs
│ │ ├── PackageSpecReferenceDependencyProvider.cs
│ │ ├── PackageSpecUtility.cs
│ │ ├── PackageSpecWriter.cs
│ │ ├── PackagesConfigProjectRestoreMetadata.cs
│ │ ├── ProjectFileDependencyGroup.cs
│ │ ├── ProjectLockFile
│ │ │ ├── LockFileDependency.cs
│ │ │ ├── LockFileDependencyComparerWithoutContentHash.cs
│ │ │ ├── LockFileDependencyIdVersionComparer.cs
│ │ │ ├── PackageDependencyType.cs
│ │ │ ├── PackagesLockFile.cs
│ │ │ ├── PackagesLockFileFormat.cs
│ │ │ ├── PackagesLockFileTarget.cs
│ │ │ └── PackagesLockFileUtilities.cs
│ │ ├── ProjectRestoreMetadata.cs
│ │ ├── ProjectRestoreMetadataFile.cs
│ │ ├── ProjectRestoreMetadataFrameworkInfo.cs
│ │ ├── ProjectRestoreReference.cs
│ │ ├── ProjectRestoreSettings.cs
│ │ ├── ProjectStyle.cs
│ │ ├── PublicAPI.Shipped.txt
│ │ ├── PublicAPI.Unshipped.txt
│ │ ├── README.md
│ │ ├── RestoreAuditProperties.cs
│ │ ├── RestoreLockProperties.cs
│ │ ├── StringExtensions.cs
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ ├── TargetFrameworkInformation.cs
│ │ ├── ToolPathResolver.cs
│ │ ├── Utf8JsonStreamLockFileConverters.cs
│ │ ├── Utf8JsonStreamProjectFileDependencyGroupConverter.cs
│ │ ├── WarningProperties.cs
│ │ └── xlf
│ │ │ ├── Strings.cs.xlf
│ │ │ ├── Strings.de.xlf
│ │ │ ├── Strings.es.xlf
│ │ │ ├── Strings.fr.xlf
│ │ │ ├── Strings.it.xlf
│ │ │ ├── Strings.ja.xlf
│ │ │ ├── Strings.ko.xlf
│ │ │ ├── Strings.pl.xlf
│ │ │ ├── Strings.pt-BR.xlf
│ │ │ ├── Strings.ru.xlf
│ │ │ ├── Strings.tr.xlf
│ │ │ ├── Strings.zh-Hans.xlf
│ │ │ └── Strings.zh-Hant.xlf
│ │ ├── NuGet.Protocol
│ │ ├── CachingSourceProvider.cs
│ │ ├── Converters
│ │ │ ├── FingerprintsConverter.cs
│ │ │ ├── FingerprintsStjConverter.cs
│ │ │ ├── JObjectConverter.cs
│ │ │ ├── JsonExtensions.cs
│ │ │ ├── MetadataFieldConverter.cs
│ │ │ ├── MetadataFieldStjConverter.cs
│ │ │ ├── MetadataStringOrArrayConverter.cs
│ │ │ ├── MetadataStringOrArrayStjConverter.cs
│ │ │ ├── NuGetFrameworkConverter.cs
│ │ │ ├── NuGetVersionConverter.cs
│ │ │ ├── NuGetVersionStjConverter.cs
│ │ │ ├── PackageVulnerabilityInfoConverter.cs
│ │ │ ├── ParserConstants.cs
│ │ │ ├── SafeBoolConverter.cs
│ │ │ ├── SafeBoolStjConverter.cs
│ │ │ ├── SafeUriConverter.cs
│ │ │ ├── SafeUriStjConverter.cs
│ │ │ ├── SemanticVersionConverter.cs
│ │ │ ├── SemanticVersionStjConverter.cs
│ │ │ ├── V3SearchResultsConverter.cs
│ │ │ ├── V3SearchResultsStjConverter.cs
│ │ │ ├── VersionInfoConverter.cs
│ │ │ ├── VersionRangeConverter.cs
│ │ │ └── VersionRangeStjConverter.cs
│ │ ├── DependencyInfo
│ │ │ ├── DependencyInfo.cs
│ │ │ ├── PackageInfo.cs
│ │ │ ├── RegistrationInfo.cs
│ │ │ ├── RegistrationUtility.cs
│ │ │ ├── ResolverMetadataClient.cs
│ │ │ └── Trim.cs
│ │ ├── DownloadResourceResult.cs
│ │ ├── DownloadResourceResultStatus.cs
│ │ ├── EnhancedHttpRetryHelper.cs
│ │ ├── Events
│ │ │ ├── ProtocolDiagnosticHttpEvent.cs
│ │ │ ├── ProtocolDiagnosticHttpEventBase.cs
│ │ │ ├── ProtocolDiagnosticInProgressHttpEvent.cs
│ │ │ ├── ProtocolDiagnosticNupkgCopiedEvent.cs
│ │ │ ├── ProtocolDiagnosticResourceEvent.cs
│ │ │ ├── ProtocolDiagnosticServiceIndexEntryEvent.cs
│ │ │ ├── ProtocolDiagnostics.cs
│ │ │ └── ProtocolDiagnosticsStream.cs
│ │ ├── Exceptions
│ │ │ ├── FatalProtocolException.cs
│ │ │ ├── InvalidCacheProtocolException.cs
│ │ │ ├── NuGetProtocolException.cs
│ │ │ ├── PackageNotFoundProtocolException.cs
│ │ │ └── RetriableProtocolException.cs
│ │ ├── Extensions
│ │ │ ├── FactoryExtensionsVS.cs
│ │ │ └── VersionRangeExtensions.cs
│ │ ├── FactoryExtensionsV3.cs
│ │ ├── FeedType.cs
│ │ ├── FeedTypePackageSource.cs
│ │ ├── FeedTypeResource.cs
│ │ ├── FindPackageByIdDependencyInfo.cs
│ │ ├── GlobalSuppressions.cs
│ │ ├── HttpResponseMessageExtensions.cs
│ │ ├── HttpSource
│ │ │ ├── AmbientAuthenticationState.cs
│ │ │ ├── DownloadTimeoutStreamContent.cs
│ │ │ ├── HttpCacheResult.cs
│ │ │ ├── HttpCacheUtility.cs
│ │ │ ├── HttpHandlerResourceV3.cs
│ │ │ ├── HttpHandlerResourceV3Provider.cs
│ │ │ ├── HttpRequestMessageConfiguration.cs
│ │ │ ├── HttpRequestMessageExtensions.cs
│ │ │ ├── HttpRequestMessageFactory.cs
│ │ │ ├── HttpRetryHandler.cs
│ │ │ ├── HttpRetryHandlerRequest.cs
│ │ │ ├── HttpSource.cs
│ │ │ ├── HttpSourceAuthenticationHandler.cs
│ │ │ ├── HttpSourceCachedRequest.cs
│ │ │ ├── HttpSourceCredentials.cs
│ │ │ ├── HttpSourceException.cs
│ │ │ ├── HttpSourceRequest.cs
│ │ │ ├── HttpSourceResource.cs
│ │ │ ├── HttpSourceResourceProvider.cs
│ │ │ ├── HttpSourceResult.cs
│ │ │ ├── HttpSourceResultStatus.cs
│ │ │ ├── HttpStreamValidation.cs
│ │ │ ├── IHttpRetryHandler.cs
│ │ │ ├── IThrottle.cs
│ │ │ ├── NullThrottle.cs
│ │ │ ├── ProxyAuthenticationHandler.cs
│ │ │ ├── SemaphoreSlimThrottle.cs
│ │ │ ├── ServerWarningLogHandler.cs
│ │ │ ├── StsAuthenticationHandler.cs
│ │ │ └── TokenStore.cs
│ │ ├── HttpSourceCacheContext.cs
│ │ ├── ILegacyFeedCapabilityResource.cs
│ │ ├── INuGetResource.cs
│ │ ├── INuGetResourceProvider.cs
│ │ ├── ISourceRepositoryProvider.cs
│ │ ├── LegacyFeed
│ │ │ ├── AutoCompleteResourceV2Feed.cs
│ │ │ ├── AutoCompleteResourceV2FeedProvider.cs
│ │ │ ├── DependencyInfoResourceV2Feed.cs
│ │ │ ├── DependencyInfoResourceV2FeedProvider.cs
│ │ │ ├── DownloadResourceV2Feed.cs
│ │ │ ├── DownloadResourceV2FeedProvider.cs
│ │ │ ├── IV2FeedParser.cs
│ │ │ ├── LegacyFeedCapabilityResourceV2Feed.cs
│ │ │ ├── MetadataResourceV2Feed.cs
│ │ │ ├── MetadataResourceV2FeedProvider.cs
│ │ │ ├── ODataServiceDocumentResourceV2.cs
│ │ │ ├── ODataServiceDocumentResourceV2Provider.cs
│ │ │ ├── ODataServiceDocumentUtils.cs
│ │ │ ├── PackageMetadataResourceV2Feed.cs
│ │ │ ├── PackageMetadataResourceV2FeedProvider.cs
│ │ │ ├── PackageSearchResourceV2Feed.cs
│ │ │ ├── PackageSearchResourceV2FeedProvider.cs
│ │ │ ├── V2FeedListResource.cs
│ │ │ ├── V2FeedListResourceProvider.cs
│ │ │ ├── V2FeedPackageInfo.cs
│ │ │ ├── V2FeedPage.cs
│ │ │ ├── V2FeedParser.cs
│ │ │ ├── V2FeedQueryBuilder.cs
│ │ │ └── V2FeedUtilities.cs
│ │ ├── LocalPackageArchiveDownloader.cs
│ │ ├── LocalRepositories
│ │ │ ├── FindLocalPackagesResource.cs
│ │ │ ├── FindLocalPackagesResourcePackagesConfig.cs
│ │ │ ├── FindLocalPackagesResourcePackagesConfigProvider.cs
│ │ │ ├── FindLocalPackagesResourceUnzipped.cs
│ │ │ ├── FindLocalPackagesResourceUnzippedProvider.cs
│ │ │ ├── FindLocalPackagesResourceV2.cs
│ │ │ ├── FindLocalPackagesResourceV2Provider.cs
│ │ │ ├── FindLocalPackagesResourceV3.cs
│ │ │ ├── FindLocalPackagesResourceV3Provider.cs
│ │ │ ├── LocalAutoCompleteResource.cs
│ │ │ ├── LocalAutoCompleteResourceProvider.cs
│ │ │ ├── LocalDependencyInfoResource.cs
│ │ │ ├── LocalDependencyInfoResourceProvider.cs
│ │ │ ├── LocalDownloadResource.cs
│ │ │ ├── LocalDownloadResourceProvider.cs
│ │ │ ├── LocalMetadataResource.cs
│ │ │ ├── LocalMetadataResourceProvider.cs
│ │ │ ├── LocalPackageInfo.cs
│ │ │ ├── LocalPackageListResource.cs
│ │ │ ├── LocalPackageListResourceProvider.cs
│ │ │ ├── LocalPackageMetadataResource.cs
│ │ │ ├── LocalPackageMetadataResourceProvider.cs
│ │ │ ├── LocalPackageSearchResource.cs
│ │ │ ├── LocalPackageSearchResourceProvider.cs
│ │ │ ├── LocalV2FindPackageByIdResource.cs
│ │ │ ├── LocalV2FindPackageByIdResourceProvider.cs
│ │ │ ├── LocalV3FindPackageByIdResource.cs
│ │ │ └── LocalV3FindPackageByIdResourceProvider.cs
│ │ ├── Model
│ │ │ ├── AlternatePackageMetadata.cs
│ │ │ ├── CaseInsensitiveDictionary.cs
│ │ │ ├── GetVulnerabilityInfoResult.cs
│ │ │ ├── IPackageSearchMetadata.cs
│ │ │ ├── LocalPackageSearchMetadata.cs
│ │ │ ├── ModelJsonContext.cs
│ │ │ ├── PackageDeprecationMetadata.cs
│ │ │ ├── PackageSearchMetadata.cs
│ │ │ ├── PackageSearchMetadataBuilder.cs
│ │ │ ├── PackageSearchMetadataRegistration.cs
│ │ │ ├── PackageSearchMetadataV2Feed.cs
│ │ │ ├── PackageVulnerabilityInfo.cs
│ │ │ ├── PackageVulnerabilityMetadata.cs
│ │ │ ├── PackageVulnerabilitySeverity.cs
│ │ │ ├── RegistrationIndex.cs
│ │ │ ├── RegistrationLeafItem.cs
│ │ │ ├── RegistrationPage.cs
│ │ │ ├── RepositoryCertificateInfo.cs
│ │ │ ├── ServiceIndexEntry.cs
│ │ │ ├── V3SearchResults.cs
│ │ │ ├── V3VulnerabilityIndexEntry.cs
│ │ │ └── VersionInfo.cs
│ │ ├── NuGet.Protocol.csproj
│ │ ├── NuGetResourceProviderPositions.cs
│ │ ├── NuGetTestMode.cs
│ │ ├── NullSourceCacheContext.cs
│ │ ├── PackageDownloadContext.cs
│ │ ├── PackageProgressEventArgs.cs
│ │ ├── PackagesFolder
│ │ │ ├── LocalPackageFileCache.cs
│ │ │ ├── LocalPackageInfo.cs
│ │ │ ├── LocalPackageSourceInfo.cs
│ │ │ ├── NuGetv3LocalRepository.cs
│ │ │ └── NuGetv3LocalRepositoryUtility.cs
│ │ ├── Plugins
│ │ │ ├── AutomaticProgressReporter.cs
│ │ │ ├── Connection.cs
│ │ │ ├── ConnectionOptions.cs
│ │ │ ├── ConnectionState.cs
│ │ │ ├── EnvironmentVariableConstants.cs
│ │ │ ├── FaultedPluginEventArgs.cs
│ │ │ ├── IConnection.cs
│ │ │ ├── IIdGenerator.cs
│ │ │ ├── IMessageDispatcher.cs
│ │ │ ├── IPlugin.cs
│ │ │ ├── IPluginDiscoverer.cs
│ │ │ ├── IPluginFactory.cs
│ │ │ ├── IPluginManager.cs
│ │ │ ├── IPluginMulticlientUtilities.cs
│ │ │ ├── IPluginProcess.cs
│ │ │ ├── IReceiver.cs
│ │ │ ├── IRequestHandler.cs
│ │ │ ├── IRequestHandlers.cs
│ │ │ ├── IResponseHandler.cs
│ │ │ ├── ISender.cs
│ │ │ ├── InboundRequestContext.cs
│ │ │ ├── InboundRequestProcessingHandler.cs
│ │ │ ├── JsonSerializationUtilities.cs
│ │ │ ├── LineReadEventArgs.cs
│ │ │ ├── Logging
│ │ │ │ ├── AssemblyLogMessage.cs
│ │ │ │ ├── CommunicationLogMessage.cs
│ │ │ │ ├── EnvironmentVariablesLogMessage.cs
│ │ │ │ ├── IPluginLogMessage.cs
│ │ │ │ ├── IPluginLogger.cs
│ │ │ │ ├── MachineLogMessage.cs
│ │ │ │ ├── MessageState.cs
│ │ │ │ ├── PluginInstanceLogMessage.cs
│ │ │ │ ├── PluginLogMessage.cs
│ │ │ │ ├── PluginLogger.cs
│ │ │ │ ├── PluginState.cs
│ │ │ │ ├── ProcessLogMessage.cs
│ │ │ │ ├── StopwatchLogMessage.cs
│ │ │ │ ├── TaskLogMessage.cs
│ │ │ │ ├── TaskState.cs
│ │ │ │ └── ThreadPoolLogMessage.cs
│ │ │ ├── MessageDispatcher.cs
│ │ │ ├── MessageEventArgs.cs
│ │ │ ├── MessageMethod.cs
│ │ │ ├── MessageResponseCode.cs
│ │ │ ├── MessageType.cs
│ │ │ ├── MessageUtilities.cs
│ │ │ ├── Messages
│ │ │ │ ├── CopyFilesInPackageRequest.cs
│ │ │ │ ├── CopyFilesInPackageResponse.cs
│ │ │ │ ├── CopyNupkgFileRequest.cs
│ │ │ │ ├── CopyNupkgFileResponse.cs
│ │ │ │ ├── Fault.cs
│ │ │ │ ├── GetAuthenticationCredentialsRequest.cs
│ │ │ │ ├── GetAuthenticationCredentialsResponse.cs
│ │ │ │ ├── GetCredentialsRequest.cs
│ │ │ │ ├── GetCredentialsResponse.cs
│ │ │ │ ├── GetFilesInPackageRequest.cs
│ │ │ │ ├── GetFilesInPackageResponse.cs
│ │ │ │ ├── GetOperationClaimsRequest.cs
│ │ │ │ ├── GetOperationClaimsResponse.cs
│ │ │ │ ├── GetPackageHashRequest.cs
│ │ │ │ ├── GetPackageHashResponse.cs
│ │ │ │ ├── GetPackageVersionsRequest.cs
│ │ │ │ ├── GetPackageVersionsResponse.cs
│ │ │ │ ├── GetServiceIndexRequest.cs
│ │ │ │ ├── GetServiceIndexResponse.cs
│ │ │ │ ├── HandshakeRequest.cs
│ │ │ │ ├── HandshakeResponse.cs
│ │ │ │ ├── InitializeRequest.cs
│ │ │ │ ├── InitializeResponse.cs
│ │ │ │ ├── LogRequest.cs
│ │ │ │ ├── LogResponse.cs
│ │ │ │ ├── Message.cs
│ │ │ │ ├── MonitorNuGetProcessExitRequest.cs
│ │ │ │ ├── MonitorNuGetProcessExitResponse.cs
│ │ │ │ ├── PrefetchPackageRequest.cs
│ │ │ │ ├── PrefetchPackageResponse.cs
│ │ │ │ ├── Progress.cs
│ │ │ │ ├── SetCredentialsRequest.cs
│ │ │ │ ├── SetCredentialsResponse.cs
│ │ │ │ ├── SetLogLevelRequest.cs
│ │ │ │ └── SetLogLevelResponse.cs
│ │ │ ├── NoOpDisposePlugin.cs
│ │ │ ├── OperationClaim.cs
│ │ │ ├── OutboundRequestContext.cs
│ │ │ ├── OutboundRequestContext`1.cs
│ │ │ ├── Plugin.cs
│ │ │ ├── PluginCacheEntry.cs
│ │ │ ├── PluginConstants.cs
│ │ │ ├── PluginCreationResult.cs
│ │ │ ├── PluginDiscoverer.cs
│ │ │ ├── PluginDiscoveryResult.cs
│ │ │ ├── PluginDiscoveryUtility.cs
│ │ │ ├── PluginEventArgs.cs
│ │ │ ├── PluginException.cs
│ │ │ ├── PluginFactory.cs
│ │ │ ├── PluginFile.cs
│ │ │ ├── PluginFileState.cs
│ │ │ ├── PluginJsonContext.cs
│ │ │ ├── PluginManager.cs
│ │ │ ├── PluginMulticlientUtilities.cs
│ │ │ ├── PluginPackageDownloader.cs
│ │ │ ├── PluginPackageReader.cs
│ │ │ ├── PluginProcess.cs
│ │ │ ├── ProtocolConstants.cs
│ │ │ ├── ProtocolErrorEventArgs.cs
│ │ │ ├── ProtocolException.cs
│ │ │ ├── Receiver.cs
│ │ │ ├── RequestHandlers.cs
│ │ │ ├── RequestHandlers
│ │ │ │ ├── CloseRequestHandler.cs
│ │ │ │ ├── GetCredentialsRequestHandler.cs
│ │ │ │ ├── GetServiceIndexRequestHandler.cs
│ │ │ │ ├── LogRequestHandler.cs
│ │ │ │ ├── MonitorNuGetProcessExitRequestHandler.cs
│ │ │ │ └── SymmetricHandshake.cs
│ │ │ ├── RequestIdGenerator.cs
│ │ │ ├── Sender.cs
│ │ │ ├── StandardInputReceiver.cs
│ │ │ ├── StandardOutputReceiver.cs
│ │ │ └── TimeoutUtilities.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── ProtocolConstants.cs
│ │ ├── ProviderComparer.cs
│ │ ├── Providers
│ │ │ ├── AutoCompleteResourceV3Provider.cs
│ │ │ ├── DependencyInfoResourceV3Provider.cs
│ │ │ ├── DownloadResourcePluginProvider.cs
│ │ │ ├── DownloadResourceV3Provider.cs
│ │ │ ├── FeedTypeResourceProvider.cs
│ │ │ ├── MetadataResourceV3Provider.cs
│ │ │ ├── OwnerDetailsUriResourceV3Provider.cs
│ │ │ ├── PackageDetailsUriResourceV3Provider.cs
│ │ │ ├── PackageMetadataResourceV3Provider.cs
│ │ │ ├── PackageSearchResourceV3Provider.cs
│ │ │ ├── PackageUpdateResourceV2Provider.cs
│ │ │ ├── PackageUpdateResourceV3Provider.cs
│ │ │ ├── PluginResourceProvider.cs
│ │ │ ├── RawSearchResourceV3Provider.cs
│ │ │ ├── ReadmeUriTemplateResourceProvider.cs
│ │ │ ├── RegistrationResourceV3Provider.cs
│ │ │ ├── ReportAbuseResourceV3Provider.cs
│ │ │ ├── RepositorySignatureResourceProvider.cs
│ │ │ ├── ServiceIndexResourceV3Provider.cs
│ │ │ ├── SymbolPackageUpdateResourceV3Provider.cs
│ │ │ ├── V3FeedListResourceProvider.cs
│ │ │ └── VulnerabilityInfoResourceV3Provider.cs
│ │ ├── PublicAPI
│ │ │ ├── net472
│ │ │ │ ├── PublicAPI.Shipped.txt
│ │ │ │ └── PublicAPI.Unshipped.txt
│ │ │ ├── net8.0
│ │ │ │ ├── PublicAPI.Shipped.txt
│ │ │ │ └── PublicAPI.Unshipped.txt
│ │ │ └── netstandard2.0
│ │ │ │ ├── PublicAPI.Shipped.txt
│ │ │ │ └── PublicAPI.Unshipped.txt
│ │ ├── README.md
│ │ ├── RemotePackageArchiveDownloader.cs
│ │ ├── RemoteRepositories
│ │ │ ├── HttpFileSystemBasedFindPackageByIdResource.cs
│ │ │ ├── HttpFileSystemBasedFindPackageByIdResourceProvider.cs
│ │ │ ├── PackageUtilities.cs
│ │ │ ├── PluginFindPackageByIdResource.cs
│ │ │ ├── PluginFindPackageByIdResourceProvider.cs
│ │ │ ├── RemoteV2FindPackageByIdResource.cs
│ │ │ ├── RemoteV2FindPackageByIdResourceProvider.cs
│ │ │ ├── RemoteV3FindPackageByIdResource.cs
│ │ │ └── RemoteV3FindPackageByIdResourceProvider.cs
│ │ ├── RemoteSourceDependencyInfo.cs
│ │ ├── Repository.cs
│ │ ├── ResourceProvider.cs
│ │ ├── Resources
│ │ │ ├── AutoCompleteResource.cs
│ │ │ ├── AutoCompleteResourceV3.cs
│ │ │ ├── DependencyInfoResource.cs
│ │ │ ├── DependencyInfoResourceV3.cs
│ │ │ ├── DownloadResource.cs
│ │ │ ├── DownloadResourcePlugin.cs
│ │ │ ├── DownloadResourceV3.cs
│ │ │ ├── FindPackageByIdResource.cs
│ │ │ ├── HttpHandlerResource.cs
│ │ │ ├── IVulnerabilityInfoResource.cs
│ │ │ ├── LegacyFeedCapabilityResource.cs
│ │ │ ├── ListResource.cs
│ │ │ ├── MetadataResource.cs
│ │ │ ├── MetadataResourceV3.cs
│ │ │ ├── OwnerDetailsUriTemplateResourceV3.cs
│ │ │ ├── PackageDetailsUriResourceV3.cs
│ │ │ ├── PackageMetadataResource.cs
│ │ │ ├── PackageMetadataResourceV3.cs
│ │ │ ├── PackageSearchResource.cs
│ │ │ ├── PackageSearchResourceV3.cs
│ │ │ ├── PackageUpdateResource.cs
│ │ │ ├── PluginResource.cs
│ │ │ ├── RawSearchResourceV3.cs
│ │ │ ├── ReadmeUriTemplateResource.cs
│ │ │ ├── RegistrationResourceV3.cs
│ │ │ ├── ReportAbuseResourceV3.cs
│ │ │ ├── RepositorySignatureResource.cs
│ │ │ ├── ServiceIndexResourceV3.cs
│ │ │ ├── SymbolPackageUpdateResourceV3.cs
│ │ │ └── VulnerabilityInfoResourceV3.cs
│ │ ├── SearchFilter.cs
│ │ ├── SearchFilterType.cs
│ │ ├── SearchOrderBy.cs
│ │ ├── ServiceTypes.cs
│ │ ├── SourceCacheContext.cs
│ │ ├── SourcePackageDependencyInfo.cs
│ │ ├── SourceRepository.cs
│ │ ├── SourceRepositoryProvider.cs
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ ├── UserAgent.cs
│ │ ├── UserAgentStringBuilder.cs
│ │ ├── Utility
│ │ │ ├── CachingUtility.cs
│ │ │ ├── DedicatedAsynchronousProcessingThread.cs
│ │ │ ├── DownloadTimeoutStream.cs
│ │ │ ├── FeedTypeUtility.cs
│ │ │ ├── FindPackagesByIdNupkgDownloader.cs
│ │ │ ├── GetDownloadResultUtility.cs
│ │ │ ├── GlobalPackagesFolderUtility.cs
│ │ │ ├── JsonContext.cs
│ │ │ ├── JsonUtility.cs
│ │ │ ├── LocalFolderUtility.cs
│ │ │ ├── MetadataReferenceCache.cs
│ │ │ ├── OfflineFeedAddContext.cs
│ │ │ ├── OfflineFeedUtility.cs
│ │ │ ├── PackageIdValidator.cs
│ │ │ ├── StreamExtensions.cs
│ │ │ └── TimeoutUtility.cs
│ │ └── xlf
│ │ │ ├── Strings.cs.xlf
│ │ │ ├── Strings.de.xlf
│ │ │ ├── Strings.es.xlf
│ │ │ ├── Strings.fr.xlf
│ │ │ ├── Strings.it.xlf
│ │ │ ├── Strings.ja.xlf
│ │ │ ├── Strings.ko.xlf
│ │ │ ├── Strings.pl.xlf
│ │ │ ├── Strings.pt-BR.xlf
│ │ │ ├── Strings.ru.xlf
│ │ │ ├── Strings.tr.xlf
│ │ │ ├── Strings.zh-Hans.xlf
│ │ │ └── Strings.zh-Hant.xlf
│ │ ├── NuGet.Resolver
│ │ ├── CombinationSolver.cs
│ │ ├── CompareWrapper.cs
│ │ ├── DependencyBehavior.cs
│ │ ├── Exceptions
│ │ │ ├── NuGetResolverConstraintException.cs
│ │ │ ├── NuGetResolverException.cs
│ │ │ └── NuGetResolverInputException.cs
│ │ ├── GlobalSuppressions.cs
│ │ ├── NuGet.Resolver.csproj
│ │ ├── PackageResolver.cs
│ │ ├── PackageResolverContext.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── PublicAPI.Shipped.txt
│ │ ├── PublicAPI.Unshipped.txt
│ │ ├── README.md
│ │ ├── ResolverComparer.cs
│ │ ├── ResolverInputSort.cs
│ │ ├── ResolverPackage.cs
│ │ ├── ResolverUtility.cs
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ └── xlf
│ │ │ ├── Strings.cs.xlf
│ │ │ ├── Strings.de.xlf
│ │ │ ├── Strings.es.xlf
│ │ │ ├── Strings.fr.xlf
│ │ │ ├── Strings.it.xlf
│ │ │ ├── Strings.ja.xlf
│ │ │ ├── Strings.ko.xlf
│ │ │ ├── Strings.pl.xlf
│ │ │ ├── Strings.pt-BR.xlf
│ │ │ ├── Strings.ru.xlf
│ │ │ ├── Strings.tr.xlf
│ │ │ ├── Strings.zh-Hans.xlf
│ │ │ └── Strings.zh-Hant.xlf
│ │ └── NuGet.Versioning
│ │ ├── FloatRange.cs
│ │ ├── INuGetVersionable.cs
│ │ ├── IVersionComparer.cs
│ │ ├── IVersionRangeComparer.cs
│ │ ├── NuGet.Versioning.csproj
│ │ ├── NuGetVersion.cs
│ │ ├── NuGetVersionFactory.cs
│ │ ├── NuGetVersionFloatBehavior.cs
│ │ ├── Properties
│ │ └── AssemblyInfo.cs
│ │ ├── PublicAPI.Shipped.txt
│ │ ├── PublicAPI.Unshipped.txt
│ │ ├── README.md
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── ResourcesFormatter.cs
│ │ ├── SemanticVersion.cs
│ │ ├── SemanticVersionBase.cs
│ │ ├── SemanticVersionConverter.cs
│ │ ├── SemanticVersionFactory.cs
│ │ ├── SharedStringBuilder.cs
│ │ ├── VersionComparer.cs
│ │ ├── VersionComparison.cs
│ │ ├── VersionExtensions.cs
│ │ ├── VersionFormatter.cs
│ │ ├── VersionRange.cs
│ │ ├── VersionRangeBase.cs
│ │ ├── VersionRangeComparer.cs
│ │ ├── VersionRangeFactory.cs
│ │ ├── VersionRangeFormatter.cs
│ │ └── xlf
│ │ ├── Resources.cs.xlf
│ │ ├── Resources.de.xlf
│ │ ├── Resources.es.xlf
│ │ ├── Resources.fr.xlf
│ │ ├── Resources.it.xlf
│ │ ├── Resources.ja.xlf
│ │ ├── Resources.ko.xlf
│ │ ├── Resources.pl.xlf
│ │ ├── Resources.pt-BR.xlf
│ │ ├── Resources.ru.xlf
│ │ ├── Resources.tr.xlf
│ │ ├── Resources.zh-Hans.xlf
│ │ └── Resources.zh-Hant.xlf
│ ├── test
│ ├── Directory.Build.props
│ ├── EndToEnd
│ │ ├── Directory.Build.props
│ │ ├── Directory.Build.targets
│ │ ├── Directory.Packages.props
│ │ ├── NuGet.Client.EndToEnd.TestData.nuspec
│ │ ├── NuGet.Config
│ │ ├── NuGet.Tests.psd1
│ │ ├── NuGet.Tests.psm1
│ │ ├── Packages
│ │ │ ├── AddingBindingRedirectAfterUpdate
│ │ │ │ └── AddingBindingRedirectAfterUpdate.dgml
│ │ │ ├── AddingBindingRedirectsNoOpOnClassLibrary
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── BindingRedirectClassLibraryWithDifferentDependents
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── BindingRedirectComplex
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── BindingRedirectDoesNotAddToSilverlightProject
│ │ │ │ ├── HostSL.1.0.0.nuspec
│ │ │ │ ├── TestSL.1.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ ├── HostSL.1.0.0
│ │ │ │ │ └── lib
│ │ │ │ │ │ └── sl40
│ │ │ │ │ │ └── HostSL.dll
│ │ │ │ │ └── TestSL.1.0.0
│ │ │ │ │ └── lib
│ │ │ │ │ └── sl40
│ │ │ │ │ └── TestSL.dll
│ │ │ ├── BindingRedirectDuplicateReferences
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── BindingRedirectInstallLargeProject
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── BindingRedirectProjectsThatReferenceDifferentVersionsOfSameAssembly
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── BindingRedirectProjectsThatReferenceSameAssemblyFromDifferentLocations
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── BuildIntegratedProjectClosure
│ │ │ │ └── project.json
│ │ │ ├── ComplexUpdateSubTree
│ │ │ │ └── ComplexUpdateSubTree.dgml
│ │ │ ├── DiamondDependencies
│ │ │ │ └── DiamondDependencies.dgml
│ │ │ ├── EnablePackageRestoreModifyProjectThatInstallNewPackages
│ │ │ │ └── jQuery.1.5.nuspec
│ │ │ ├── EnablePackageRestoreModifyProjectsWhenThePackagesFolderIsMissing
│ │ │ │ └── jQuery.1.5.nuspec
│ │ │ ├── EnablePackageRestoreOnlyModifyProjectsThatHaveInstalledPackages
│ │ │ │ └── jQuery.1.5.nuspec
│ │ │ ├── ExplicitCallToAddBindingRedirectAddsBindingRedirectsToClassLibrary
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── FSharpSimpleInstallWithContentFiles
│ │ │ │ └── jQuery.1.5.nuspec
│ │ │ ├── FSharpSimpleWithAssemblyReference
│ │ │ │ └── Antlr.1.0.0.nuspec
│ │ │ ├── FailedInstallRollsBackInstall
│ │ │ │ └── haack.metaweblog.0.1.0.nuspec
│ │ │ ├── FileTransformWorksOnDependentFile
│ │ │ │ ├── TTFile.1.0.0.nuspec
│ │ │ │ ├── files
│ │ │ │ │ ├── TTFile.1.0.0
│ │ │ │ │ │ └── content
│ │ │ │ │ │ │ └── one.tt
│ │ │ │ │ └── test.1.0.0
│ │ │ │ │ │ └── content
│ │ │ │ │ │ └── one.config.transform
│ │ │ │ └── test.1.0.0.nuspec
│ │ │ ├── GetInstalledPackagesMultipleProjectsDifferentVersion
│ │ │ │ ├── jQuery.1.5.nuspec
│ │ │ │ └── jQuery.1.6.nuspec
│ │ │ ├── GetInstalledPackagesMultipleProjectsSameVersion
│ │ │ │ └── jQuery.1.5.nuspec
│ │ │ ├── GetPackageAcceptsRelativePathSource
│ │ │ │ └── empty.txt
│ │ │ ├── GetPackageForFSharpProjectReturnsCorrectPackages
│ │ │ │ └── jQuery.1.5.nuspec
│ │ │ ├── GetPackageForFSharpProjectReturnsCorrectPackages2
│ │ │ │ ├── MyAwesomeLibrary.1.0.nuspec
│ │ │ │ └── jQuery.1.5.nuspec
│ │ │ ├── GetPackageForProjectReturnsCorrectPackages
│ │ │ │ └── jQuery.1.5.nuspec
│ │ │ ├── GetPackageForProjectReturnsCorrectPackages2
│ │ │ │ ├── MyAwesomeLibrary.1.0.nuspec
│ │ │ │ └── jQuery.1.5.nuspec
│ │ │ ├── GetPackageForProjectReturnsEmptyIfItHasNoInstalledPackage2
│ │ │ │ └── jQuery.1.5.nuspec
│ │ │ ├── GetPackageWithoutProjectNameReturnsInstalledPackagesInTheSolution
│ │ │ │ ├── jQuery.1.5.nuspec
│ │ │ │ └── netfx-Guard.1.2.0.0.nuspec
│ │ │ ├── InstallCanPipeToFSharpProjects
│ │ │ │ └── elmah.1.1.nuspec
│ │ │ ├── InstallComplexPackageStructure
│ │ │ │ └── MyFirstPackage.1.0.0.1.nuspec
│ │ │ ├── InstallFailCleansUpSatellitePackageFiles
│ │ │ │ ├── A.1.0.0.nuspec
│ │ │ │ ├── A.1.2.0.nuspec
│ │ │ │ └── A.fr.1.0.0.nuspec
│ │ │ ├── InstallLatestVersionWorksCorrectly
│ │ │ │ └── InstallLatestVersionWorksCorrectly.dgml
│ │ │ ├── InstallLatestVersionWorksCorrectlyWithPrerelease
│ │ │ │ └── InstallLatestVersionWorksCorrectlyWithPrerelease.dgml
│ │ │ ├── InstallMetaPackageWorksAsExpected
│ │ │ │ ├── Dependency.1.0.0.nuspec
│ │ │ │ └── MetaPackage.1.0.0.nuspec
│ │ │ ├── InstallMetadataPackageAddPackageToProject
│ │ │ │ ├── DependencyPackage.1.0.0.nuspec
│ │ │ │ └── MetadataPackage.1.0.0.nuspec
│ │ │ ├── InstallPackageAddImportStatement
│ │ │ │ ├── PackageWithImport.2.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── PackageWithImport.2.0.0
│ │ │ │ │ └── build
│ │ │ │ │ ├── PackageWithImport.props
│ │ │ │ │ └── PackageWithImport.targets
│ │ │ ├── InstallPackageAfterRenaming
│ │ │ │ └── jQuery.1.5.nuspec
│ │ │ ├── InstallPackageDoNotUninstallDependenciesWhenSafeUpdatingDependency
│ │ │ │ ├── Microsoft.AspNet.Razor.2.0.20710.0.nuspec
│ │ │ │ ├── Microsoft.AspNet.WebPages.2.0.20710.0.nuspec
│ │ │ │ ├── Microsoft.AspNet.WebPages.Administration.2.0.20710.0.nuspec
│ │ │ │ ├── Microsoft.AspNet.WebPages.Administration.2.0.20713.0.nuspec
│ │ │ │ ├── Microsoft.Web.Infrastructure.1.0.0.0.nuspec
│ │ │ │ ├── Nuget.Core.1.6.2.nuspec
│ │ │ │ └── microsoft-web-helpers.2.0.20710.0.nuspec
│ │ │ ├── InstallPackageExecuteCorrectInstallScriptsAccordingToTargetFramework
│ │ │ │ ├── TestTargetFxPSScripts.1.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── TestTargetFxPSScripts.1.0.0
│ │ │ │ │ └── tools
│ │ │ │ │ ├── init.ps1
│ │ │ │ │ ├── net40
│ │ │ │ │ ├── install.ps1
│ │ │ │ │ └── uninstall.ps1
│ │ │ │ │ └── silverlight
│ │ │ │ │ ├── install.ps1
│ │ │ │ │ └── uninstall.ps1
│ │ │ ├── InstallPackageExecuteCorrectInstallScriptsAccordingToTargetFramework2
│ │ │ │ ├── TestTargetFxPSScripts.1.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── TestTargetFxPSScripts.1.0.0
│ │ │ │ │ └── tools
│ │ │ │ │ ├── init.ps1
│ │ │ │ │ ├── net40
│ │ │ │ │ ├── install.ps1
│ │ │ │ │ └── uninstall.ps1
│ │ │ │ │ └── silverlight
│ │ │ │ │ ├── install.ps1
│ │ │ │ │ └── uninstall.ps1
│ │ │ ├── InstallPackageIgnoreInitScriptIfItIsNotDirectlyUnderTools
│ │ │ │ ├── TestTargetFxInvalidInitScript.1.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── TestTargetFxInvalidInitScript.1.0.0
│ │ │ │ │ └── tools
│ │ │ │ │ ├── net30
│ │ │ │ │ ├── init.ps1
│ │ │ │ │ ├── install.ps1
│ │ │ │ │ └── uninstall.ps1
│ │ │ │ │ └── silverlight
│ │ │ │ │ ├── init.ps1
│ │ │ │ │ ├── install.ps1
│ │ │ │ │ └── uninstall.ps1
│ │ │ ├── InstallPackageIgnoreInitScriptIfItIsNotDirectlyUnderTools2
│ │ │ │ ├── TestTargetFxInvalidInitScript.1.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── TestTargetFxInvalidInitScript.1.0.0
│ │ │ │ │ └── tools
│ │ │ │ │ ├── net30
│ │ │ │ │ ├── init.ps1
│ │ │ │ │ ├── install.ps1
│ │ │ │ │ └── uninstall.ps1
│ │ │ │ │ └── silverlight
│ │ │ │ │ ├── init.ps1
│ │ │ │ │ ├── install.ps1
│ │ │ │ │ └── uninstall.ps1
│ │ │ ├── InstallPackageInstallContentFilesAccordingToTargetFramework
│ │ │ │ └── TestTargetFxContentFiles.1.0.0.nuspec
│ │ │ ├── InstallPackageInstallContentFilesAccordingToTargetFramework2
│ │ │ │ └── TestTargetFxContentFiles.1.0.0.nuspec
│ │ │ ├── InstallPackageInstallCorrectDependencyPackageBasedOnTargetFramework
│ │ │ │ ├── TestDependencyTargetFramework.2.0.0.nuspec
│ │ │ │ ├── TestEmptyContentFolder.1.0.0.nuspec
│ │ │ │ ├── TestEmptyLibFolder.1.0.0.nuspec
│ │ │ │ └── TestEmptyToolsFolder.1.0.0.nuspec
│ │ │ ├── InstallPackageIntoJSAppOnWin81UseTheCorrectFxFolder
│ │ │ │ └── Java.1.0.0.nuspec
│ │ │ ├── InstallPackageIntoJSWindowsPhoneAppOnWin81UseTheCorrectFxFolder
│ │ │ │ └── Java.1.0.0.nuspec
│ │ │ ├── InstallPackagePersistTargetFrameworkToPackagesConfig
│ │ │ │ ├── PackageA.1.0.0.nuspec
│ │ │ │ └── PackageB.1.0.0.nuspec
│ │ │ ├── InstallPackageRespectAssemblyReferenceFilterOnDependencyPackages
│ │ │ │ ├── A.1.0.0.nuspec
│ │ │ │ └── B.1.0.0.nuspec
│ │ │ ├── InstallPackageRespectAssemblyReferenceFilterOnSecondProject
│ │ │ │ └── B.1.0.0.nuspec
│ │ │ ├── InstallPackageRespectReferencesAccordingToDifferentFrameworks
│ │ │ │ ├── RefPackage.1.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── RefPackage.1.0.0
│ │ │ │ │ └── lib
│ │ │ │ │ └── sl40
│ │ │ │ │ └── fear.dll
│ │ │ ├── InstallPackageSkipsBindingRedirectWhenSetOnConfig
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── InstallPackageSucceedsWithLockedFileAndSkipsBindingRedirectSet
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── InstallPackageThatTargetsWindowsPhone
│ │ │ │ └── WpPackage.1.0.0.nuspec
│ │ │ ├── InstallPackageThrowWithLockedConfigFileIfSuccessRequired
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── InstallPackageThrowsIfMinClientVersionIsNotSatisfied
│ │ │ │ └── kitty.1.0.0.nuspec
│ │ │ ├── InstallPackageThrowsIfThereIsNoCompatibleContentFiles
│ │ │ │ └── TestTargetFxContentFiles.1.0.0.nuspec
│ │ │ ├── InstallPackageWithDependencyVersionHighest
│ │ │ │ └── InstallPackageWithDependencyVersionHighest.dgml
│ │ │ ├── InstallPackageWithDependencyVersionHighestMinor
│ │ │ │ └── InstallPackageWithDependencyVersionHighestMinor.dgml
│ │ │ ├── InstallPackageWithDependencyVersionHighestPatch
│ │ │ │ └── InstallPackageWithDependencyVersionHighestPatch.dgml
│ │ │ ├── InstallPackageWithDependencyVersionLowest
│ │ │ │ └── InstallPackageWithDependencyVersionLowest.dgml
│ │ │ ├── InstallPackageWithEmptyContentFrameworkFolder
│ │ │ │ └── TestEmptyContentFolder.1.0.0.nuspec
│ │ │ ├── InstallPackageWithEmptyLibFrameworkFolder
│ │ │ │ └── TestEmptyLibFolder.1.0.0.nuspec
│ │ │ ├── InstallPackageWithEmptyToolsFrameworkFolder
│ │ │ │ └── TestEmptyToolsFolder.1.0.0.nuspec
│ │ │ ├── InstallPackageWithResourceAssemblies
│ │ │ │ └── FluentValidation.2.0.0.0.nuspec
│ │ │ ├── InstallPackageWithXdtTransformTransformsTheFile
│ │ │ │ ├── XdtPackage.1.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── XdtPackage.1.0.0
│ │ │ │ │ └── content
│ │ │ │ │ └── web.config.install.xdt
│ │ │ ├── InstallPackageWithoutDependencyVersion
│ │ │ │ └── InstallPackageWithoutDependencyVersion.dgml
│ │ │ ├── InstallPackagesConfigLocal
│ │ │ │ └── packages.config
│ │ │ ├── InstallSatellitePackageCopiesFilesToExistingRuntimePackageFolder
│ │ │ │ ├── PackageWithStrongNamedLib.1.1.nuspec
│ │ │ │ ├── PackageWithStrongNamedLib.ja-jp.1.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── PackageWithStrongNamedLib.ja-jp.1.0
│ │ │ │ │ ├── RootFile.txt
│ │ │ │ │ └── content
│ │ │ │ │ ├── ja-jp.txt
│ │ │ │ │ └── ja-jp
│ │ │ │ │ └── file.txt
│ │ │ ├── InstallSatellitePackageCopiesFilesToRuntimeFolderWhenInstalledAsDependency
│ │ │ │ ├── PackageWithStrongNamedLib.1.1.nuspec
│ │ │ │ ├── PackageWithStrongNamedLib.ja-jp.1.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── PackageWithStrongNamedLib.ja-jp.1.0
│ │ │ │ │ ├── RootFile.txt
│ │ │ │ │ └── content
│ │ │ │ │ ├── ja-jp.txt
│ │ │ │ │ └── ja-jp
│ │ │ │ │ └── file.txt
│ │ │ ├── InstallWithConflictDoesNotUpdateToPrerelease
│ │ │ │ └── InstallWithConflictDoesNotUpdateToPrerelease.dgml
│ │ │ ├── InstallingPackageWithDependencyThatFailsShouldRollbackSuccessfully
│ │ │ │ ├── GoodPackageWithBadDependency.1.0.nuspec
│ │ │ │ ├── PackageWithBadDependency.1.0.nuspec
│ │ │ │ ├── PackageWithBadInstallScript.1.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── PackageWithBadInstallScript.1.0
│ │ │ │ │ └── tools
│ │ │ │ │ └── install.ps1
│ │ │ ├── InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents
│ │ │ │ ├── PackageWithStrongNamedLib.1.1.nuspec
│ │ │ │ ├── PackageWithStrongNamedLib.ja-jp.1.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── PackageWithStrongNamedLib.ja-jp.1.0
│ │ │ │ │ ├── RootFile.txt
│ │ │ │ │ └── content
│ │ │ │ │ ├── ja-jp.txt
│ │ │ │ │ └── ja-jp
│ │ │ │ │ └── file.txt
│ │ │ ├── InstallingSatellitePackageToWebsiteCopiesResourcesToBin
│ │ │ │ ├── Test.1.0.nuspec
│ │ │ │ └── Test.fr-FR.1.0.nuspec
│ │ │ ├── NonStrongNameA.1.0.0.0.nupkg
│ │ │ ├── NonStrongNameB.1.0.0.0.nupkg
│ │ │ ├── NonStrongNameB.2.0.0.0.nupkg
│ │ │ ├── OpenPackagePageTestPackage.1.0.nupkg
│ │ │ ├── PackageInitPS1.1.0.2.nupkg
│ │ │ ├── PackageInstallAcceptsRelativePathSource
│ │ │ │ └── empty.txt
│ │ │ ├── PackageTargetingNetClientAndNet.1.0.0.0.nupkg
│ │ │ ├── PackageWithCSSourceFiles.1.0.nupkg
│ │ │ ├── PackageWithClientProfileAndFullFrameworkPicksClient
│ │ │ │ └── MyAwesomeLibrary.1.0.nuspec
│ │ │ ├── PackageWithConfigTransformInstallToWinJsProject
│ │ │ │ ├── PackageWithTransform.1.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── PackageWithTransform.1.0.0
│ │ │ │ │ └── content
│ │ │ │ │ ├── b.config.transform
│ │ │ │ │ └── root
│ │ │ │ │ └── a.config.transform
│ │ │ ├── PackageWithContentFile.1.0.nupkg
│ │ │ ├── PackageWithContentFileAndDependency.1.0.nupkg
│ │ │ ├── PackageWithDependencyOnPrereleaseTestPackage.1.0.nupkg
│ │ │ ├── PackageWithExeReference.1.0.nupkg
│ │ │ ├── PackageWithExternalDependency.0.5.nupkg
│ │ │ ├── PackageWithExternalDependency.1.0.nupkg
│ │ │ ├── PackageWithFailingInitPs1.1.0.nupkg
│ │ │ ├── PackageWithFileNamedAppCode.1.0.nupkg
│ │ │ ├── PackageWithFolder.1.0.nupkg
│ │ │ ├── PackageWithFooContentFile.1.0.nupkg
│ │ │ ├── PackageWithFrameworkFacadeReference.1.0.0.nupkg
│ │ │ ├── PackageWithGacReferences.1.0.nupkg
│ │ │ ├── PackageWithIncompatibleAssembliesRollsInstallBack
│ │ │ │ └── BingMapAppSDK.1.0.1011.1716.nuspec
│ │ │ ├── PackageWithNativeCustomControl.1.0.14.nupkg
│ │ │ ├── PackageWithNestedAspxFiles.1.0.nupkg
│ │ │ ├── PackageWithNestedAspxPPFiles.1.0.nupkg
│ │ │ ├── PackageWithNestedFile.1.0.nupkg
│ │ │ ├── PackageWithNestedReferenceFolders.1.0.nupkg
│ │ │ ├── PackageWithNet40AndSLLibButOnlySLGacRefs.1.0.nupkg
│ │ │ ├── PackageWithNoVersionInFolderName.1.0.nupkg
│ │ │ ├── PackageWithNonExistentGacReferences.1.0.nupkg
│ │ │ ├── PackageWithNonStrongNamedLibA.1.0.nupkg
│ │ │ ├── PackageWithNonStrongNamedLibB.1.0.nupkg
│ │ │ ├── PackageWithPPCSSourceFiles.1.0.nupkg
│ │ │ ├── PackageWithPPVBSourceFiles.1.0.nupkg
│ │ │ ├── PackageWithReferences.1.0.nupkg
│ │ │ ├── PackageWithRootNamespaceFileTransform.1.0.nupkg
│ │ │ ├── PackageWithScripts.1.0.nupkg
│ │ │ ├── PackageWithScriptsB.1.0.nupkg
│ │ │ ├── PackageWithSourceFileUnderAppCode.1.0.nupkg
│ │ │ ├── PackageWithStrongNamedLib.1.0.nupkg
│ │ │ ├── PackageWithTextFile.1.0.nupkg
│ │ │ ├── PackageWithTextFile.2.0.nupkg
│ │ │ ├── PackageWithUnboundedDependency.1.0.nupkg
│ │ │ ├── PackageWithUnsupportedReferences.1.0.nupkg
│ │ │ ├── PackageWithVBSourceFiles.1.0.nupkg
│ │ │ ├── PackageWithWebDebugConfig.1.0.nupkg
│ │ │ ├── PackageWithXmlTransformAndTokenReplacement.1.0.nupkg
│ │ │ ├── PreReleaseTestPackage.1.0.0-a.nupkg
│ │ │ ├── PreReleaseTestPackage.1.0.0-b.nupkg
│ │ │ ├── PreReleaseTestPackage.1.0.0.nupkg
│ │ │ ├── PreReleaseTestPackage.1.0.1-a.nupkg
│ │ │ ├── PreReleaseTestPackage.A.1.0.0-a.nupkg
│ │ │ ├── PreReleaseTestPackage.A.1.0.0.nupkg
│ │ │ ├── ProjectRetargeting-ClearErrorAndWarningRetargetBackToOriginalFramework
│ │ │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec
│ │ │ ├── ProjectRetargeting-ClearErrorUponCleanProject
│ │ │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec
│ │ │ ├── ProjectRetargeting-ClearErrorUponCloseSolution
│ │ │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec
│ │ │ ├── ProjectRetargeting-ClearReinstallationFlagRetargetBackToOriginalFramework
│ │ │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec
│ │ │ ├── ProjectRetargeting-ClearReinstallationFlagUponPackageReinstallation
│ │ │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec
│ │ │ ├── ProjectRetargeting-ClearWarningUponCleanProject
│ │ │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec
│ │ │ ├── ProjectRetargeting-ClearWarningUponCloseSolution
│ │ │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec
│ │ │ ├── ProjectRetargeting-ClearWarningUponPackageReinstallationAndBuild
│ │ │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec
│ │ │ ├── ProjectRetargeting-ConvertBuildErrorToBuildWarningUponBuild
│ │ │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec
│ │ │ ├── ProjectRetargeting-ShowErrorUponRetargeting
│ │ │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec
│ │ │ ├── ProjectRetargeting-ShowWarningOnCleanBuild
│ │ │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec
│ │ │ ├── ReinstallAllPackagesInAProjectInvokeUninstallAndInstallScripts
│ │ │ │ ├── MagicPackage.1.0.0.nuspec
│ │ │ │ ├── TestReinstallPackageScripts.1.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ ├── MagicPackage.1.0.0
│ │ │ │ │ └── tools
│ │ │ │ │ │ ├── install.ps1
│ │ │ │ │ │ └── uninstall.ps1
│ │ │ │ │ └── TestReinstallPackageScripts.1.0.0
│ │ │ │ │ └── tools
│ │ │ │ │ ├── install.ps1
│ │ │ │ │ └── uninstall.ps1
│ │ │ ├── ReinstallAllPackagesInAllProjectsInvokeUninstallAndInstallScripts
│ │ │ │ ├── MagicPackage.1.0.0.nuspec
│ │ │ │ ├── TestReinstallPackageScripts.1.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ ├── MagicPackage.1.0.0
│ │ │ │ │ └── tools
│ │ │ │ │ │ ├── install.ps1
│ │ │ │ │ │ └── uninstall.ps1
│ │ │ │ │ └── TestReinstallPackageScripts.1.0.0
│ │ │ │ │ └── tools
│ │ │ │ │ ├── install.ps1
│ │ │ │ │ └── uninstall.ps1
│ │ │ ├── ReinstallPackageInAllProjectsInvokeUninstallAndInstallScripts
│ │ │ │ ├── TestReinstallPackageScripts.1.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── TestReinstallPackageScripts.1.0.0
│ │ │ │ │ └── tools
│ │ │ │ │ ├── install.ps1
│ │ │ │ │ └── uninstall.ps1
│ │ │ ├── ReinstallPackageInvokeUninstallAndInstallScripts
│ │ │ │ ├── TestReinstallPackageScripts.1.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── TestReinstallPackageScripts.1.0.0
│ │ │ │ │ └── tools
│ │ │ │ │ ├── install.ps1
│ │ │ │ │ └── uninstall.ps1
│ │ │ ├── ReinstallPackageReinstallPrereleaseDependencyPackages
│ │ │ │ ├── A.1.0.0.nuspec
│ │ │ │ └── B.2.0.0-beta.nuspec
│ │ │ ├── ReleaseNotesPackage.2.0.nupkg
│ │ │ ├── SimpleBindingRedirects
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── SimpleBindingRedirectsClassLibraryReference
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── SimpleBindingRedirectsClassLibraryUpdatePackage
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── SimpleBindingRedirectsIndirectReference
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── SimpleBindingRedirectsMultipleConfigs
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── SimpleBindingRedirectsNonWeb
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── SimpleBindingRedirectsWebsite
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── SimpleFSharpUninstall
│ │ │ │ └── Ninject.1.1.nuspec
│ │ │ ├── SkypePackage.1.0.nupkg
│ │ │ ├── SkypePackage.3.0.nupkg
│ │ │ ├── SolutionLevelPkg.1.0.0.nupkg
│ │ │ ├── SolutionOnlyPackage.1.0.nupkg
│ │ │ ├── SolutionOnlyPackage.2.0.nupkg
│ │ │ ├── SubTreeUpdateWithConflict
│ │ │ │ └── SubTreeUpdateWithConflict.dgml
│ │ │ ├── SubTreeUpdateWithDependencyInUse
│ │ │ │ └── SubTreeUpdateWithDependencyInUse.dgml
│ │ │ ├── SyncPackagesInSolutionDown
│ │ │ │ └── SyncPackagesInSolutionDown.dgml
│ │ │ ├── SyncPackagesInSolutionPlural
│ │ │ │ └── SyncPackagesInSolutionPlural.dgml
│ │ │ ├── SyncPackagesInSolutionUp
│ │ │ │ └── SyncPackagesInSolutionUp.dgml
│ │ │ ├── TabExpansionForPrereleasePackages
│ │ │ │ └── MyPackage.1.0.0-alpha.nupkg
│ │ │ ├── TabExpansionForUpdatePackageShowSuggestionsForCustomSource
│ │ │ │ └── jQuery.1.5.nuspec
│ │ │ ├── TestPackage.SupportingMultipleFrameworksNestedPS1.1.2.0.nupkg
│ │ │ ├── TestPackage.SupportingMultipleFrameworksNonNestedPS1.1.2.0.nupkg
│ │ │ ├── TestUninstallThrowPackage.1.0.nupkg
│ │ │ ├── TestUpdatePackage.1.0.1.nupkg
│ │ │ ├── TestUpdatePackage.1.0.nupkg
│ │ │ ├── TestUpdatePackage.2.0.nupkg
│ │ │ ├── TestUpdateSecondPackage.1.0.nupkg
│ │ │ ├── TestUpdateSecondPackage.2.0.nupkg
│ │ │ ├── ToolsPathForInitAndInstallScriptPointToToolsFolder
│ │ │ │ ├── PackageA.1.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── PackageA.1.0.0
│ │ │ │ │ └── tools
│ │ │ │ │ ├── init.ps1
│ │ │ │ │ └── net40
│ │ │ │ │ └── install.ps1
│ │ │ ├── ToolsPathForUninstallScriptPointToToolsFolder
│ │ │ │ ├── PackageA.1.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── PackageA.1.0.0
│ │ │ │ │ └── tools
│ │ │ │ │ └── sl4
│ │ │ │ │ └── uninstall.ps1
│ │ │ ├── UnInstallPackageWithXdtTransformUnTransformsTheFile
│ │ │ │ ├── XdtPackage.1.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── XdtPackage.1.0.0
│ │ │ │ │ └── content
│ │ │ │ │ ├── web.config.install.xdt
│ │ │ │ │ └── web.config.uninstall.xdt
│ │ │ ├── UninstallAmbiguousProjectLevelPackageFromSolutionLevel
│ │ │ │ ├── Antlr.3.1.1.nuspec
│ │ │ │ └── Antlr.3.1.3.42154.nuspec
│ │ │ ├── UninstallPackageAfterRenaming
│ │ │ │ └── NestedFolders.1.0.nuspec
│ │ │ ├── UninstallPackageHonorPackageReferencesAccordingToProjectFramework
│ │ │ │ ├── mars.nuspec
│ │ │ │ └── natal.nuspec
│ │ │ ├── UninstallPackageRemoveImportStatement
│ │ │ │ ├── PackageWithImport.2.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── PackageWithImport.2.0.0
│ │ │ │ │ └── build
│ │ │ │ │ ├── PackageWithImport.props
│ │ │ │ │ └── PackageWithImport.targets
│ │ │ ├── UninstallPackageUseTargetFxPersistedInPackagesConfigToInvokeUninstallScript
│ │ │ │ ├── PackageA.1.0.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── PackageA.1.0.0
│ │ │ │ │ └── tools
│ │ │ │ │ ├── net35
│ │ │ │ │ └── uninstall.ps1
│ │ │ │ │ └── net40
│ │ │ │ │ ├── install.ps1
│ │ │ │ │ └── uninstall.ps1
│ │ │ ├── UninstallPackageUseTargetFxPersistedInPackagesConfigToRemoveAssemblies
│ │ │ │ ├── PackageA.1.0.0.nuspec
│ │ │ │ └── PackageB.1.0.0.nuspec
│ │ │ ├── UninstallPackageUseTargetFxPersistedInPackagesConfigToRemoveContentFiles
│ │ │ │ ├── PackageA.1.0.0.nuspec
│ │ │ │ └── PackageB.1.0.0.nuspec
│ │ │ ├── UninstallPackageWithNestedContentFiles
│ │ │ │ └── NestedFolders.1.0.nuspec
│ │ │ ├── UninstallSatellitePackageDoNotRemoveCollidingRuntimeFilesWhenContentsDiffer
│ │ │ │ ├── PackageWithStrongNamedLib.1.1.nuspec
│ │ │ │ ├── PackageWithStrongNamedLib.ja-jp.1.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── PackageWithStrongNamedLib.1.1
│ │ │ │ │ └── lib
│ │ │ │ │ └── ja-jp
│ │ │ │ │ └── collision-differences.txt
│ │ │ ├── UninstallSatellitePackageDoRemoveCollidingRuntimeFilesWhenContentsMatch
│ │ │ │ ├── PackageWithStrongNamedLib.1.1.nuspec
│ │ │ │ ├── PackageWithStrongNamedLib.ja-jp.1.0.nuspec
│ │ │ │ └── files
│ │ │ │ │ └── PackageWithStrongNamedLib.ja-jp.1.0
│ │ │ │ │ ├── RootFile.txt
│ │ │ │ │ └── content
│ │ │ │ │ ├── ja-jp.txt
│ │ │ │ │ └── ja-jp
│ │ │ │ │ └── file.txt
│ │ │ ├── UninstallSatelliteThenRuntimeRemoveCollidingRuntimeFilesWhenContentsDiffer
│ │ │ │ ├── PackageWithStrongNamedLib.1.1.nuspec
│ │ │ │ └── PackageWithStrongNamedLib.ja-jp.1.0.nuspec
│ │ │ ├── UninstallSpecificPackageThrowsIfNotInstalledInProject
│ │ │ │ ├── Antlr.3.1.1.nuspec
│ │ │ │ └── Antlr.3.1.3.42154.nuspec
│ │ │ ├── UninstallSpecificVersionOfPackage
│ │ │ │ ├── Antlr.3.1.1.nuspec
│ │ │ │ └── Antlr.3.1.3.42154.nuspec
│ │ │ ├── UninstallingSatellitePackageRemovesFilesFromRuntimePackageFolder
│ │ │ │ ├── PackageWithStrongNamedLib.1.1.nuspec
│ │ │ │ └── PackageWithStrongNamedLib.ja-jp.1.0.nuspec
│ │ │ ├── UpdateAllPackagesInASingleProjectWithMultipleProjects
│ │ │ │ ├── jQuery.1.5.1.nuspec
│ │ │ │ ├── jQuery.1.5.2.nuspec
│ │ │ │ ├── jQuery.1.6.1.nuspec
│ │ │ │ ├── jQuery.UI.Combined.1.8.11.nuspec
│ │ │ │ └── jQuery.UI.Combined.1.8.13.nuspec
│ │ │ ├── UpdateAllPackagesInASingleProjectWithSafeFlagAndMultipleProjects
│ │ │ │ ├── jQuery.1.5.1.nuspec
│ │ │ │ ├── jQuery.1.5.2.nuspec
│ │ │ │ ├── jQuery.1.6.1.nuspec
│ │ │ │ ├── jQuery.UI.Combined.1.8.11.nuspec
│ │ │ │ └── jQuery.UI.Combined.1.8.13.nuspec
│ │ │ ├── UpdateAllPackagesInSolution
│ │ │ │ └── UpdateAllPackagesInSolution.dgml
│ │ │ ├── UpdateAllPackagesInSolutionWithSafeFlag
│ │ │ │ └── UpdateAllPackagesInSolutionWithSafeFlag.dgml
│ │ │ ├── UpdateAmbiguousProjectLevelPackageNoInstalledInProjectThrows
│ │ │ │ ├── Antlr.3.1.1.nuspec
│ │ │ │ └── Antlr.3.1.3.42154.nuspec
│ │ │ ├── UpdatePackageAcceptsRelativePathSource
│ │ │ │ └── SkypePackage.2.0.nupkg
│ │ │ ├── UpdatePackageAcceptsRelativePathSource2
│ │ │ │ └── empty.txt
│ │ │ ├── UpdatePackageDiamondDependenciesBottomNodeConflictingPackages
│ │ │ │ └── UpdatePackageDiamondDependenciesBottomNodeConflictingPackages.dgml
│ │ │ ├── UpdatePackageDoesNotUninstallDependencyOfPreviousVersion
│ │ │ │ ├── TestDependencyTargetFramework.1.0.0.nuspec
│ │ │ │ ├── TestDependencyTargetFramework.2.0.0.nuspec
│ │ │ │ ├── TestEmptyContentFolder.1.0.0.nuspec
│ │ │ │ ├── TestEmptyLibFolder.1.0.0.nuspec
│ │ │ │ └── TestEmptyToolsFolder.1.0.0.nuspec
│ │ │ ├── UpdatePackageInAllProjects
│ │ │ │ └── UpdatePackageInAllProjects.dgml
│ │ │ ├── UpdatePackageInOneProjectDoesNotCheckAllPackagesInSolution
│ │ │ │ └── jQuery.1.5.1.nuspec
│ │ │ ├── UpdatePackageThrowsIfMinClientVersionIsNotSatisfied
│ │ │ │ ├── kitty.1.0.0.nuspec
│ │ │ │ └── kitty.2.0.0.nuspec
│ │ │ ├── UpdatePackageThrowsWhenSourceIsInvalid
│ │ │ │ └── jQuery.1.5.1.nuspec
│ │ │ ├── UpdatePackageWithDependentsThatHaveNoAvailableUpdatesThrows
│ │ │ │ └── UpdatePackageWithDependentsThatHaveNoAvailableUpdatesThrows.dgml
│ │ │ ├── UpdatePackageWithOlderVersionOfSharedDependencyInUse
│ │ │ │ └── UpdatePackageWithOlderVersionOfSharedDependencyInUse.dgml
│ │ │ ├── UpdatePackageWithSafeFlag
│ │ │ │ └── UpdatePackageWithSafeFlag.dgml
│ │ │ ├── UpdatePackageWithToHighestMinorFlag
│ │ │ │ └── UpdatePackageWithToHighestMinorFlag.dgml
│ │ │ ├── UpdatePackageWithToHighestPatchFlag
│ │ │ │ └── UpdatePackageWithToHighestPatchFlag.dgml
│ │ │ ├── UpdateScenariosWithConstraints
│ │ │ │ └── UpdateScenariosWithConstraints.dgml
│ │ │ ├── UpdatingBindingRedirectAfterUpdate
│ │ │ │ └── BindingRedirectsGraph.dgml
│ │ │ ├── UpdatingDependentPackagesPicksLowestCompatiblePackages
│ │ │ │ └── UpdatingDependentPackagesPicksLowestCompatiblePackages.dgml
│ │ │ ├── UpdatingMetaPackageRemovesSatelliteReferences
│ │ │ │ ├── A.1.0.0.nuspec
│ │ │ │ ├── A.2.0.0.nuspec
│ │ │ │ ├── A.es.1.0.0.nuspec
│ │ │ │ ├── A.es.2.0.0.nuspec
│ │ │ │ ├── A.fr.1.0.0.nuspec
│ │ │ │ ├── A.fr.2.0.0.nuspec
│ │ │ │ ├── A.localized.1.0.0.nuspec
│ │ │ │ └── A.localized.2.0.0.nuspec
│ │ │ ├── UpdatingPackageInstallOrdering
│ │ │ │ └── UpdatingPackageInstallOrdering.dgml
│ │ │ ├── UpdatingPackageWhatIf
│ │ │ │ └── UpdatingPackageWithSharedDependency.dgml
│ │ │ ├── UpdatingPackageWithSharedDependency
│ │ │ │ └── UpdatingPackageWithSharedDependency.dgml
│ │ │ ├── UpdatingPackageWithSharedDependencySimple
│ │ │ │ └── UpdatingPackageWithSharedDependency.dgml
│ │ │ ├── UpdatingPackagesWithDependenciesOnSatellitePackages
│ │ │ │ ├── Localized.1.0.nuspec
│ │ │ │ ├── Localized.2.0.nuspec
│ │ │ │ ├── Localized.LangPack.1.0.nuspec
│ │ │ │ ├── Localized.LangPack.2.0.nuspec
│ │ │ │ ├── Localized.fr-FR.1.0.nuspec
│ │ │ │ ├── Localized.fr-FR.2.0.nuspec
│ │ │ │ ├── Localized.ja-JP.1.0.nuspec
│ │ │ │ └── Localized.ja-JP.2.0.nuspec
│ │ │ ├── UpdatingSatellitePackageUpdatesReferences
│ │ │ │ ├── Localized.1.0.nuspec
│ │ │ │ ├── Localized.2.0.nuspec
│ │ │ │ ├── Localized.fr-FR.1.0.nuspec
│ │ │ │ └── Localized.fr-FR.2.0.nuspec
│ │ │ ├── UpdatingSatellitePackageWhenMultipleVersionsInstalled
│ │ │ │ ├── DependsOnLocalized.1.0.nuspec
│ │ │ │ ├── DependsOnLocalized.2.0.nuspec
│ │ │ │ ├── Localized.1.0.nuspec
│ │ │ │ ├── Localized.2.0.nuspec
│ │ │ │ ├── Localized.3.0.nuspec
│ │ │ │ ├── Localized.fr-FR.1.0.nuspec
│ │ │ │ ├── Localized.fr-FR.2.0.nuspec
│ │ │ │ └── Localized.fr-FR.3.0.nuspec
│ │ │ ├── VsPackageInstallerEvents
│ │ │ │ └── jQuery.1.5.nuspec
│ │ │ ├── VsPackageInstallerServices
│ │ │ │ └── jQuery.1.5.nuspec
│ │ │ ├── WebSiteSimpleUninstall
│ │ │ │ └── MyAwesomeLibrary.1.0.nuspec
│ │ │ ├── WebsiteSimpleInstall
│ │ │ │ └── MyAwesomeLibrary.1.0.nuspec
│ │ │ ├── _Shared
│ │ │ │ └── PackageInitPS1
│ │ │ │ │ ├── PackageInitPS1.1.0.2.nuspec
│ │ │ │ │ └── files
│ │ │ │ │ └── PackageInitPS1.1.0.2
│ │ │ │ │ └── tools
│ │ │ │ │ └── init.ps1
│ │ │ ├── coolpackage.nuspec
│ │ │ ├── netfx-Guard.1.2.0.0.nupkg
│ │ │ └── secondpackage.nuspec
│ │ ├── ProjectTemplates
│ │ │ ├── BuildIntegratedClassLibrary.zip
│ │ │ │ ├── BuildIntegratedClassLibrary.csproj
│ │ │ │ ├── assemblyinfo.cs
│ │ │ │ ├── class1.cs
│ │ │ │ ├── csClassLibrary.vstemplate
│ │ │ │ └── project.json
│ │ │ ├── BuildIntegratedProj.zip
│ │ │ │ ├── BuildIntegratedProj.csproj
│ │ │ │ ├── Controller.cs
│ │ │ │ ├── MyTemplate.vstemplate
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── __TemplateIcon.ico
│ │ │ ├── ClassLibrary.zip
│ │ │ │ ├── assemblyinfo.cs
│ │ │ │ ├── class1.cs
│ │ │ │ ├── classlibrary.csproj
│ │ │ │ └── csClassLibrary.vstemplate
│ │ │ ├── ClassLibrary46.zip
│ │ │ │ ├── assemblyinfo.cs
│ │ │ │ ├── class1.cs
│ │ │ │ ├── classlibrary.csproj
│ │ │ │ └── csClassLibrary.vstemplate
│ │ │ ├── ConsoleApplication.zip
│ │ │ │ ├── App.config
│ │ │ │ ├── assemblyinfo.cs
│ │ │ │ ├── consoleapplication.csproj
│ │ │ │ ├── csConsoleApplication.vstemplate
│ │ │ │ └── program.cs
│ │ │ ├── EmptyMvcWebApplicationProjectTemplatev4.0.csaspx.zip
│ │ │ │ ├── App_Start
│ │ │ │ │ ├── FilterConfig.cs
│ │ │ │ │ ├── RouteConfig.cs
│ │ │ │ │ └── WebApiConfig.cs
│ │ │ │ ├── EmptyGlobal.asax.cs
│ │ │ │ ├── EmptyMvcApplication.csproj
│ │ │ │ ├── EmptyMvcWebApplicationProjectTemplate.11.csaspx.vstemplate
│ │ │ │ ├── EmptyWeb.config
│ │ │ │ ├── Global.asax
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── Views
│ │ │ │ │ └── EmptyWeb.config
│ │ │ │ ├── Web.Debug.config
│ │ │ │ └── Web.Release.config
│ │ │ ├── EmptyWeb.zip
│ │ │ │ ├── EmptyWeb.vstemplate
│ │ │ │ ├── EmptyWeb.webproj
│ │ │ │ └── Web.Config
│ │ │ ├── EmptyWebApplicationProject40.zip
│ │ │ │ ├── EmptyWebApplicationProject40.vstemplate
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── Web.Debug.config
│ │ │ │ ├── Web.Release.config
│ │ │ │ ├── Web.config
│ │ │ │ └── WebApplication.csproj
│ │ │ ├── FSharpLibrary.zip
│ │ │ │ ├── Library.fs
│ │ │ │ ├── Library.fsproj
│ │ │ │ └── fsLibrary.vstemplate
│ │ │ ├── NativeConsoleApplication.zip
│ │ │ │ ├── ConsoleApplication1.cpp
│ │ │ │ ├── ConsoleApplication1.vcxproj
│ │ │ │ ├── NativeConsoleApplication.vstemplate
│ │ │ │ ├── ReadMe.txt
│ │ │ │ ├── stdafx.cpp
│ │ │ │ ├── stdafx.h
│ │ │ │ └── targetver.h
│ │ │ ├── NetCoreConsoleApp.zip
│ │ │ │ ├── ConsoleApp.csproj
│ │ │ │ ├── NetCoreConsoleApp.vstemplate
│ │ │ │ ├── Program.cs
│ │ │ │ └── __TemplateIcon.ico
│ │ │ ├── NetCoreConsoleAppWithCustomRestorePackagesPath.zip
│ │ │ │ ├── ConsoleApp10.csproj
│ │ │ │ ├── MyTemplate.vstemplate
│ │ │ │ ├── Program.cs
│ │ │ │ └── __TemplateIcon.ico
│ │ │ ├── NetCoreConsoleMultipleTargetFrameworksApp.zip
│ │ │ │ ├── ConsoleApp.csproj
│ │ │ │ ├── NetCoreConsoleApp.vstemplate
│ │ │ │ ├── Program.cs
│ │ │ │ └── __TemplateIcon.ico
│ │ │ ├── NetCoreConsoleTargetFrameworksApp.zip
│ │ │ │ ├── ConsoleApp.csproj
│ │ │ │ ├── NetCoreConsoleApp.vstemplate
│ │ │ │ ├── Program.cs
│ │ │ │ └── __TemplateIcon.ico
│ │ │ ├── NetCoreWebApplication1.0.zip
│ │ │ │ ├── .bowerrc
│ │ │ │ ├── Controllers
│ │ │ │ │ └── HomeController.cs
│ │ │ │ ├── MyTemplate.vstemplate
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── launchSettings.json
│ │ │ │ ├── Startup.cs
│ │ │ │ ├── Views
│ │ │ │ │ ├── Home
│ │ │ │ │ │ ├── About.cshtml
│ │ │ │ │ │ ├── Contact.cshtml
│ │ │ │ │ │ └── Index.cshtml
│ │ │ │ │ ├── Shared
│ │ │ │ │ │ ├── Error.cshtml
│ │ │ │ │ │ ├── _Layout.cshtml
│ │ │ │ │ │ └── _ValidationScriptsPartial.cshtml
│ │ │ │ │ ├── _ViewImports.cshtml
│ │ │ │ │ └── _ViewStart.cshtml
│ │ │ │ ├── WebApplication.csproj
│ │ │ │ ├── __TemplateIcon.ico
│ │ │ │ ├── appsettings.Development.json
│ │ │ │ ├── appsettings.json
│ │ │ │ ├── bower.json
│ │ │ │ ├── bundleconfig.json
│ │ │ │ ├── runtimeconfig.template.json
│ │ │ │ ├── web.config
│ │ │ │ └── wwwroot
│ │ │ │ │ ├── css
│ │ │ │ │ ├── site.css
│ │ │ │ │ └── site.min.css
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ ├── images
│ │ │ │ │ ├── banner1.svg
│ │ │ │ │ ├── banner2.svg
│ │ │ │ │ ├── banner3.svg
│ │ │ │ │ └── banner4.svg
│ │ │ │ │ └── js
│ │ │ │ │ ├── site.js
│ │ │ │ │ └── site.min.js
│ │ │ ├── PackageReferenceClassLibrary.zip
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Class1.cs
│ │ │ │ ├── ClassLibrary1.csproj
│ │ │ │ └── ProjectTemplate.vstemplate
│ │ │ ├── PackageReferenceClassLibraryWithLockFile.zip
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Class1.cs
│ │ │ │ ├── ClassLibrary1.csproj
│ │ │ │ └── ProjectTemplate.vstemplate
│ │ │ ├── UAPApp.zip
│ │ │ │ ├── App.xaml
│ │ │ │ ├── App.xaml.cs
│ │ │ │ ├── Assets
│ │ │ │ │ ├── Logo.scale-100.png
│ │ │ │ │ ├── SmallLogo.scale-100.png
│ │ │ │ │ ├── SplashScreen.scale-100.png
│ │ │ │ │ ├── StoreLogo.scale-100.png
│ │ │ │ │ └── WideLogo.scale-100.png
│ │ │ │ ├── MainPage.xaml
│ │ │ │ ├── MainPage.xaml.cs
│ │ │ │ ├── Package.appxmanifest
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ └── Default.rd.xml
│ │ │ │ ├── UAPApp.csproj
│ │ │ │ ├── UAPApp.vstemplate
│ │ │ │ ├── __TemplateIcon.ico
│ │ │ │ └── project.json
│ │ │ ├── UwpClassLibraryProjectJson.zip
│ │ │ │ ├── Class1.cs
│ │ │ │ ├── ClassLibrary6.csproj
│ │ │ │ ├── MyTemplate.vstemplate
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ └── ClassLibrary6.rd.xml
│ │ │ │ ├── __TemplateIcon.ico
│ │ │ │ └── project.json
│ │ │ ├── UwpNativeApp.zip
│ │ │ │ ├── App.xaml
│ │ │ │ ├── App.xaml.cpp
│ │ │ │ ├── App.xaml.h
│ │ │ │ ├── Application.vcxproj
│ │ │ │ ├── Application.vcxproj.filters
│ │ │ │ ├── Application_TemporaryKey.pfx
│ │ │ │ ├── BlankApp.png
│ │ │ │ ├── BlankApplication.vstemplate
│ │ │ │ ├── LockScreenLogo.scale-200.png
│ │ │ │ ├── MainPage.xaml
│ │ │ │ ├── MainPage.xaml.cpp
│ │ │ │ ├── MainPage.xaml.h
│ │ │ │ ├── Package-native.appxmanifest
│ │ │ │ ├── SplashScreen.scale-200.png
│ │ │ │ ├── Square150x150Logo.scale-200.png
│ │ │ │ ├── Square44x44Logo.scale-200.png
│ │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png
│ │ │ │ ├── StoreLogo.png
│ │ │ │ ├── Wide310x150Logo.scale-200.png
│ │ │ │ ├── __TemplateIcon.ico
│ │ │ │ ├── pch.cpp
│ │ │ │ └── pch.h
│ │ │ ├── UwpNativeProjectJson.zip
│ │ │ │ ├── Dll1.cpp
│ │ │ │ ├── Dll1.h
│ │ │ │ ├── Dll1.vcxproj
│ │ │ │ ├── Dll1.vcxproj.filters
│ │ │ │ ├── MyTemplate.vstemplate
│ │ │ │ ├── __TemplateIcon.ico
│ │ │ │ ├── dllmain.cpp
│ │ │ │ ├── pch.cpp
│ │ │ │ ├── pch.h
│ │ │ │ ├── project.json
│ │ │ │ └── targetver.h
│ │ │ ├── UwpPackageRefClassLibrary.zip
│ │ │ │ ├── Class1.cs
│ │ │ │ ├── ClassLibrary47.csproj
│ │ │ │ ├── MyTemplate.vstemplate
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ └── ClassLibrary47.rd.xml
│ │ │ │ └── __TemplateIcon.ico
│ │ │ ├── WPFApplication.zip
│ │ │ │ ├── App.config
│ │ │ │ ├── App.xaml
│ │ │ │ ├── App.xaml.cs
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── MainWindow.xaml
│ │ │ │ ├── MainWindow.xaml.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ ├── Settings.settings
│ │ │ │ ├── WPFApplication.csproj
│ │ │ │ └── csWPFApplication.vstemplate
│ │ │ └── WebApplicationProject40.zip
│ │ │ │ ├── About.aspx
│ │ │ │ ├── About.aspx.cs
│ │ │ │ ├── About.aspx.designer.cs
│ │ │ │ ├── Account
│ │ │ │ ├── ChangePassword.aspx
│ │ │ │ ├── ChangePassword.aspx.cs
│ │ │ │ ├── ChangePassword.aspx.designer.cs
│ │ │ │ ├── ChangePasswordSuccess.aspx
│ │ │ │ ├── ChangePasswordSuccess.aspx.cs
│ │ │ │ ├── ChangePasswordSuccess.aspx.designer.cs
│ │ │ │ ├── Login.aspx
│ │ │ │ ├── Login.aspx.cs
│ │ │ │ ├── Login.aspx.designer.cs
│ │ │ │ ├── Register.aspx
│ │ │ │ ├── Register.aspx.cs
│ │ │ │ ├── Register.aspx.designer.cs
│ │ │ │ └── Web.config
│ │ │ │ ├── Default.aspx
│ │ │ │ ├── Default.aspx.cs
│ │ │ │ ├── Default.aspx.designer.cs
│ │ │ │ ├── Global.asax
│ │ │ │ ├── Global.asax.cs
│ │ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── Site.Master
│ │ │ │ ├── Site.Master.cs
│ │ │ │ ├── Site.Master.designer.cs
│ │ │ │ ├── Styles
│ │ │ │ └── Site.css
│ │ │ │ ├── Web.Debug.config
│ │ │ │ ├── Web.Release.config
│ │ │ │ ├── Web.config
│ │ │ │ ├── WebApplication.csproj
│ │ │ │ └── WebApplicationProject40.vstemplate
│ │ ├── assert.ps1
│ │ ├── nuget.assert.ps1
│ │ ├── tests
│ │ │ ├── A-TopDownloadedPackages.ps1
│ │ │ ├── BuildIntegratedTest.ps1
│ │ │ ├── ExecuteInitScriptTest.ps1
│ │ │ ├── FindPackageTest.ps1
│ │ │ ├── GetPackageTest.ps1
│ │ │ ├── GetProjectTest.ps1
│ │ │ ├── InstallPackageTest.ps1
│ │ │ ├── LegacyPackageRefProjectTest.ps1
│ │ │ ├── NativeProjectTest.ps1
│ │ │ ├── NetCoreProjectTest.ps1
│ │ │ ├── PackTest.ps1
│ │ │ ├── PackageNameSpaceTests.ps1
│ │ │ ├── ProjectRetargeting.ps1
│ │ │ ├── ServicesTest.ps1
│ │ │ ├── Settings.ps1
│ │ │ ├── SyncPackageTest.ps1
│ │ │ ├── TabExpansionTest.ps1
│ │ │ ├── UninstallPackageTest.ps1
│ │ │ ├── UniversalWindowsProjectTest.ps1
│ │ │ └── UpdatePackageTest.ps1
│ │ ├── utility.ps1
│ │ └── vs.ps1
│ ├── NuGet.Clients.FuncTests
│ │ ├── Directory.Build.props
│ │ ├── NuGet.CommandLine.FuncTest
│ │ │ ├── Caching
│ │ │ │ ├── CachingTestContext.cs
│ │ │ │ ├── CachingTestRunner.cs
│ │ │ │ ├── CachingTests.cs
│ │ │ │ ├── CachingType.cs
│ │ │ │ ├── CachingValidation.cs
│ │ │ │ ├── CachingValidationType.cs
│ │ │ │ ├── CachingValidations.cs
│ │ │ │ ├── Commands
│ │ │ │ │ ├── ICachingCommand.cs
│ │ │ │ │ ├── InstallPackagesConfigCommand.cs
│ │ │ │ │ ├── InstallSpecificVersionCommand.cs
│ │ │ │ │ ├── RestorePackageReferenceCommand.cs
│ │ │ │ │ └── RestorePackagesConfigCommand.cs
│ │ │ │ ├── NuGetExe
│ │ │ │ │ ├── INuGetExe.cs
│ │ │ │ │ └── NuGetExe.cs
│ │ │ │ ├── ServerType.cs
│ │ │ │ └── Tests
│ │ │ │ │ ├── AllowsMissingPackageOnSourceTest.cs
│ │ │ │ │ ├── CleansUpDirectDownloadTest.cs
│ │ │ │ │ ├── ICachingTest.cs
│ │ │ │ │ ├── PopulatesDestinationFolderTest.cs
│ │ │ │ │ ├── PopulatesGlobalPackagesFolderTest.cs
│ │ │ │ │ ├── ReadsFromHttpCacheTest.cs
│ │ │ │ │ ├── UsesGlobalPackageFolderCopyOnEveryRunTest.cs
│ │ │ │ │ ├── UsesGlobalPackagesFolderCopyTest.cs
│ │ │ │ │ └── WritesToHttpCacheTest.cs
│ │ │ ├── CommandRunnerTest.cs
│ │ │ ├── Commands
│ │ │ │ ├── InstallCommandTests.cs
│ │ │ │ ├── PushCommandTest.cs
│ │ │ │ ├── RestoreCommandSignPackagesTests.cs
│ │ │ │ ├── RestoreCommandTests.cs
│ │ │ │ ├── SearchCommandTests.cs
│ │ │ │ ├── SignCommandTestCollection.cs
│ │ │ │ ├── SignCommandTestFixture.cs
│ │ │ │ ├── SignCommandTests.cs
│ │ │ │ ├── TrustedSignersCommandTests.cs
│ │ │ │ └── VerifyCommandTests.cs
│ │ │ ├── NuGet.CommandLine.FuncTest.csproj
│ │ │ ├── RetryRunnerTest.cs
│ │ │ ├── compiler
│ │ │ │ └── resources
│ │ │ │ │ └── pc.packages.lock.json
│ │ │ └── xunit.runner.json
│ │ └── NuGet.MSSigning.Extensions.FuncTest
│ │ │ ├── Commands
│ │ │ ├── MSSignCommandTests.cs
│ │ │ └── ReposignCommandTests.cs
│ │ │ ├── CommonAssemblyInfo.cs
│ │ │ ├── MSSignCommandTestCollection.cs
│ │ │ ├── MSSignCommandTestContext.cs
│ │ │ ├── MSSignCommandTestFixture.cs
│ │ │ ├── NuGet.MSSigning.Extensions.FuncTest.csproj
│ │ │ └── xunit.runner.json
│ ├── NuGet.Clients.Tests
│ │ ├── Directory.Build.props
│ │ ├── NuGet.CommandLine.Test
│ │ │ ├── CommandLineParserTests.cs
│ │ │ ├── CommandTests.cs
│ │ │ ├── Commands
│ │ │ │ └── EulaCommandTests.cs
│ │ │ ├── Common
│ │ │ │ ├── InstallCommandProjectTests.cs
│ │ │ │ └── SelfUpdaterTests.cs
│ │ │ ├── ConsoleCredentialProviderTest.cs
│ │ │ ├── ConsoleTest.cs
│ │ │ ├── DeprecatedCommandAttributeTest.cs
│ │ │ ├── ExtensionsTests.cs
│ │ │ ├── FeedPackagePruningTests.cs
│ │ │ ├── LocalResourceUtilsTest.cs
│ │ │ ├── LocalizedResourceManagerTests.cs
│ │ │ ├── LocalsUtil.cs
│ │ │ ├── MSBuildProjectSystemTests.cs
│ │ │ ├── MSBuildUtilityTest.cs
│ │ │ ├── MsBuildToolsetTest.cs
│ │ │ ├── NativeMethods.cs
│ │ │ ├── NetworkCallCountTest.cs
│ │ │ ├── NotThreadSafeResourceCollection.cs
│ │ │ ├── NuGet.CommandLine.Test.csproj
│ │ │ ├── NuGetAddCommandTests.cs
│ │ │ ├── NuGetClientCertCommandTests.cs
│ │ │ ├── NuGetConfigCommandTest.cs
│ │ │ ├── NuGetDeleteCommandTest.cs
│ │ │ ├── NuGetHelpCommandTest.cs
│ │ │ ├── NuGetInitCommandTests.cs
│ │ │ ├── NuGetInstallCommandTest.cs
│ │ │ ├── NuGetListCommandTest.cs
│ │ │ ├── NuGetLocalsCommandTest.cs
│ │ │ ├── NuGetMockServerTests.cs
│ │ │ ├── NuGetPackCommandTest.cs
│ │ │ ├── NuGetPushCommandTest.cs
│ │ │ ├── NuGetResponseFileTests.cs
│ │ │ ├── NuGetRestoreCommandTest.cs
│ │ │ ├── NuGetSetApiKeyTests.cs
│ │ │ ├── NuGetSignCommandTest.cs
│ │ │ ├── NuGetSourcesCommandTest.cs
│ │ │ ├── NuGetSpecCommandTest.cs
│ │ │ ├── NuGetUpdateCommandTests.cs
│ │ │ ├── NuGetVerifyCommandTest.cs
│ │ │ ├── PackageCreator.cs
│ │ │ ├── ProjectFactoryTest.cs
│ │ │ ├── RegistryKeyUtilityTests.cs
│ │ │ ├── ResourceHelperTests.cs
│ │ │ ├── RestoreLoggingTests.cs
│ │ │ ├── RestoreMessageTest.cs
│ │ │ ├── RestoreNETCoreTest.cs
│ │ │ ├── RestoreRetryTests.cs
│ │ │ ├── RestoreTransitiveLoggingTests.cs
│ │ │ ├── RestoreUAPPackageReferenceTests.cs
│ │ │ ├── TestResource.Designer.cs
│ │ │ ├── TestResource.resx
│ │ │ ├── UILanguageOverrideTests.cs
│ │ │ ├── Util.cs
│ │ │ ├── XunitAttribute.cs
│ │ │ ├── compiler
│ │ │ │ └── resources
│ │ │ │ │ ├── TestPackage.AuthorSigned.1.0.0.nupkg
│ │ │ │ │ └── mockserver.xml
│ │ │ └── xunit.runner.json
│ │ ├── NuGet.Indexing.Test
│ │ │ ├── MergeSort.cs
│ │ │ ├── MergeTests.cs
│ │ │ ├── NuGet.Indexing.Test.csproj
│ │ │ ├── PackageSearchMetadataSplicerTests.cs
│ │ │ ├── RelevanceSearchResultsIndexerTests.cs
│ │ │ ├── SearchResultsAggregatorTests.cs
│ │ │ ├── TestUtility.cs
│ │ │ ├── TokenizingHelperTests.cs
│ │ │ └── compiler
│ │ │ │ └── resources
│ │ │ │ ├── NuGet.Core.json
│ │ │ │ ├── mergeVersions1.json
│ │ │ │ ├── mergeVersions2.json
│ │ │ │ ├── relativeOrder1.json
│ │ │ │ ├── relativeOrder2.json
│ │ │ │ ├── relativeOrder3.json
│ │ │ │ ├── searchResults1.json
│ │ │ │ ├── searchResults2.json
│ │ │ │ └── unrankedEntries.json
│ │ ├── NuGet.MSSigning.Extensions.Test
│ │ │ ├── NuGet.MSSigning.Extensions.Test.csproj
│ │ │ ├── NuGetMSSignCommandTest.cs
│ │ │ ├── NuGetReposignCommandTest.cs
│ │ │ └── xunit.runner.json
│ │ ├── NuGet.PackageManagement.UI.Test
│ │ │ ├── Actions
│ │ │ │ ├── AccessiblePackageIdentityTests.cs
│ │ │ │ ├── UIActionEngineTests.cs
│ │ │ │ └── UpdatePreviewResultTests.cs
│ │ │ ├── ConverterTests.cs
│ │ │ ├── Converters
│ │ │ │ ├── DeprecationToDeprecationLabelStateConverterTests.cs
│ │ │ │ ├── FormattedStringPartConverterTests.cs
│ │ │ │ ├── GreaterThanThresholdToVisibilityConverterTests.cs
│ │ │ │ ├── LastItemToVisibilityConverterTests.cs
│ │ │ │ ├── PackageLevelToGroupNameConverterTests.cs
│ │ │ │ ├── ParametersToHyperlinkTupleConverterTests.cs
│ │ │ │ └── VersionToStringConverterTests.cs
│ │ │ ├── GlobalSuppressions.cs
│ │ │ ├── Models
│ │ │ │ ├── DetailControlModelTests.cs
│ │ │ │ ├── DetailedPackageMetadataTests.cs
│ │ │ │ ├── LocalDetailControlModelTests.cs
│ │ │ │ ├── Package
│ │ │ │ │ ├── DeprecationPackageMetadataCapabilityTests.cs
│ │ │ │ │ ├── DirectlyReferencedPackageModelTests.cs
│ │ │ │ │ ├── EmbeddedResourcesCapabilityTests.cs
│ │ │ │ │ ├── LocalPackageModelTests.cs
│ │ │ │ │ ├── PackageMetadataRetrievalAdapterTests.cs
│ │ │ │ │ ├── PackageModelCreationTestHelper.cs
│ │ │ │ │ ├── PackageModelFactoryTests.cs
│ │ │ │ │ ├── PackageModelTests.cs
│ │ │ │ │ ├── RecommendedPackageModelTests.cs
│ │ │ │ │ ├── RemotePackageModelTests.cs
│ │ │ │ │ ├── TestVulnerableCapability.cs
│ │ │ │ │ ├── TransitivelyReferencedPackageModelTests.cs
│ │ │ │ │ ├── VulnerableCapabilityBaseTests.cs
│ │ │ │ │ ├── VulnerableDatabaseCapabilityTests.cs
│ │ │ │ │ └── VulnerablePackageMetadataCapabilityTests.cs
│ │ │ │ ├── PackageDependencySetMetadataTests.cs
│ │ │ │ ├── PreviewWindowModelTests.cs
│ │ │ │ └── V3DetailControlModelTests.cs
│ │ │ ├── NuGet.PackageManagement.UI.Test.csproj
│ │ │ ├── NuGetSettingsSerializerTests.cs
│ │ │ ├── NuGetSolutionManagerServiceWrapperTests.cs
│ │ │ ├── NuGetSourcesServiceWrapperTests.cs
│ │ │ ├── PackageItemLoaderTests.cs
│ │ │ ├── PackageLicenseUtilitiesTests.cs
│ │ │ ├── PackageManagerListItemsTest.cs
│ │ │ ├── Resources
│ │ │ │ ├── customMetadata.jpeg
│ │ │ │ └── grayicc.png
│ │ │ ├── TestNuGetUILogger.cs
│ │ │ ├── UserInterfaceService
│ │ │ │ ├── NuGetUIContextTests.cs
│ │ │ │ └── NuGetUITests.cs
│ │ │ ├── Utility
│ │ │ │ ├── NuGetSearchServiceReconnectorTests.cs
│ │ │ │ ├── PackageSourceMappingUtilityTests.cs
│ │ │ │ ├── ProjectUtilityTests.cs
│ │ │ │ └── RestoreBarLoggerTests.cs
│ │ │ ├── ViewModels
│ │ │ │ ├── ClearNuGetLocalsViewModelTests.cs
│ │ │ │ ├── KnownOwnerViewModelTests.cs
│ │ │ │ ├── PackageItemViewModelTests.cs
│ │ │ │ ├── PackageSourceMappingActionViewModelTests.cs
│ │ │ │ └── ReadmePreviewViewModelTests.cs
│ │ │ ├── WpfFactAttribute.cs
│ │ │ ├── WpfFactDiscoverer.cs
│ │ │ ├── WpfTestCase.cs
│ │ │ ├── WpfTheoryAttribute.cs
│ │ │ ├── WpfTheoryDiscoverer.cs
│ │ │ ├── Xamls
│ │ │ │ └── InfiniteScrollListTests.cs
│ │ │ └── compiler
│ │ │ │ └── resources
│ │ │ │ ├── EntityFrameworkSearch.json
│ │ │ │ ├── index.json
│ │ │ │ ├── nugetSearchPage1.json
│ │ │ │ └── nugetSearchPage2.json
│ │ ├── NuGet.PackageManagement.VisualStudio.Test
│ │ │ ├── Common
│ │ │ │ ├── IProjectContextInfoExtensionsTests.cs
│ │ │ │ └── PackageCollectionExtensionsTests.cs
│ │ │ ├── CpsPackageReferenceProjectTests.cs
│ │ │ ├── Feeds
│ │ │ │ ├── ConsolidatePackageFeedTests.cs
│ │ │ │ ├── FeedTestUtils.cs
│ │ │ │ ├── InstalledAndTransitivePackageFeedTests.cs
│ │ │ │ ├── InstalledPackageFeedTests.cs
│ │ │ │ ├── MultiSourcePackageMetadataProviderTests.cs
│ │ │ │ ├── RecommenderPackageFeedTests.cs
│ │ │ │ ├── SourceRepositoryCreator.cs
│ │ │ │ ├── SourceRepositoryExtensionsTests.cs
│ │ │ │ └── UpdatePackageFeedTests.cs
│ │ │ ├── FrameworkAssemblyResolverTests.cs
│ │ │ ├── Migrate
│ │ │ │ └── ProjectJsonMigrationCandidatePackageSpecReaderTests.cs
│ │ │ ├── NuGet.PackageManagement.VisualStudio.Test.csproj
│ │ │ ├── Options
│ │ │ │ ├── ConfigurationFilesPageTests.cs
│ │ │ │ ├── GeneralPageTests.cs
│ │ │ │ ├── NuGetExternalSettingsProviderTests.cs
│ │ │ │ ├── OpenFileArrayItemCommandTests.cs
│ │ │ │ ├── PackageSourceMappingPageTests.cs
│ │ │ │ ├── PackageSourceValidatorTests.cs
│ │ │ │ └── PackageSourcesPageTests.cs
│ │ │ ├── PackageFeeds
│ │ │ │ └── PackageSourceMonikerTests.cs
│ │ │ ├── ProjectFactories.cs
│ │ │ ├── ProjectSystems
│ │ │ │ ├── LegacyPackageReferenceProjectTests.cs
│ │ │ │ ├── LegacyPackageReferenceRestoreUtilityTests.cs
│ │ │ │ ├── ProjectSystemCacheTests.cs
│ │ │ │ └── TestVSProjectAdapter.cs
│ │ │ ├── Projects
│ │ │ │ ├── CpsPackageReferenceProjectProviderTests.cs
│ │ │ │ ├── FrameworkInstalledPackagesTests.cs
│ │ │ │ └── PackageReferenceProjectTests.cs
│ │ │ ├── Services
│ │ │ │ ├── MockedVSCollectionTests.cs
│ │ │ │ ├── NuGetLockServiceTests.cs
│ │ │ │ ├── NuGetPackageFileServiceTests.cs
│ │ │ │ ├── NuGetPackageSearchServiceTests.cs
│ │ │ │ ├── NuGetProjectManagerServiceTests.cs
│ │ │ │ ├── NuGetSourcesServiceTests.cs
│ │ │ │ ├── PackageVulnerabilityServiceTests.cs
│ │ │ │ ├── SharedServiceStateTests.cs
│ │ │ │ └── TestSharedServiceState.cs
│ │ │ ├── Telemetry
│ │ │ │ ├── ActionsTelemetryServiceTests.cs
│ │ │ │ ├── IntervalTrackerTests.cs
│ │ │ │ ├── NavigatedTelemetryEventTests.cs
│ │ │ │ ├── NuGetTelemetryServiceTests.cs
│ │ │ │ ├── PackageManagerUIRefreshTelemetryTests.cs
│ │ │ │ ├── RestoreTelemetryServiceTests.cs
│ │ │ │ ├── SearchSelectionTelemetryEventTests.cs
│ │ │ │ ├── TelemetryOnceEmitterTests.cs
│ │ │ │ ├── TestTelemetryUtility.cs
│ │ │ │ └── VsTelemetrySessionTest.cs
│ │ │ ├── TestNuGetUILogger.cs
│ │ │ ├── Utility
│ │ │ │ ├── FileWatchers
│ │ │ │ │ ├── FileWatcherFactoryTests.cs
│ │ │ │ │ ├── SolutionConfigFileWatcherTests.cs
│ │ │ │ │ └── UserConfigFileWatcherTests.cs
│ │ │ │ └── GetPackageReferenceUtilityTests.cs
│ │ │ ├── VSRestoreSettingsUtilityTests.cs
│ │ │ ├── VSSettingsTests.cs
│ │ │ ├── VisualStudioCredentialProviderTests.cs
│ │ │ ├── VsCredentialProviderAdapterTests.cs
│ │ │ ├── VsCredentialProviderImporterTests.cs
│ │ │ ├── VsProjectBuildPropertiesTelemetryTests.cs
│ │ │ ├── compiler
│ │ │ │ └── resources
│ │ │ │ │ ├── EntityFrameworkSearch.json
│ │ │ │ │ ├── blankSearchPage.json
│ │ │ │ │ ├── index.json
│ │ │ │ │ ├── loggingAbstractions.json
│ │ │ │ │ ├── nugetCoreIndex.json
│ │ │ │ │ ├── nugetSearchPage1.json
│ │ │ │ │ └── nugetSearchPage2.json
│ │ │ └── xunit.runner.json
│ │ ├── NuGet.SolutionRestoreManager.Test
│ │ │ ├── DispatcherThreadCollection.cs
│ │ │ ├── GlobalSuppressions.cs
│ │ │ ├── NuGet.SolutionRestoreManager.Test.csproj
│ │ │ ├── ProjectRestoreReferenceComparerTests.cs
│ │ │ ├── RestoreOperationLoggerTests.cs
│ │ │ ├── SolutionRestoreBuildHandlerTests.cs
│ │ │ ├── SolutionRestoreJobTests.cs
│ │ │ ├── SolutionRestoreWorkerTests.cs
│ │ │ ├── SolutionUpToDateCheckerTests.cs
│ │ │ ├── SourceTelemetryTests.cs
│ │ │ ├── TestProjectRestoreInfoBuilder.cs
│ │ │ ├── VSNominationUtilitiesTests.cs
│ │ │ ├── VsRestoreProgressEventsTests.cs
│ │ │ ├── VsSolutionRestoreServiceTests.cs
│ │ │ ├── VsSolutionRestoreStatusProviderTests.cs
│ │ │ ├── VulnerablePackagesInfoBarTests.cs
│ │ │ └── xunit.runner.json
│ │ ├── NuGet.Tools.Test
│ │ │ ├── Mocks
│ │ │ │ ├── MockAuthorizationService.cs
│ │ │ │ └── MockServiceBroker.cs
│ │ │ ├── NuGet.Tools.Test.csproj
│ │ │ └── NuGetBrokeredServiceFactoryTests.cs
│ │ ├── NuGet.VisualStudio.Common.Test
│ │ │ ├── ErrorListTableDataSourceTests.cs
│ │ │ ├── ErrorListTableEntryTests.cs
│ │ │ ├── Etw
│ │ │ │ └── EventSourceExtensionsTests.cs
│ │ │ ├── ExperimentationConstantsTests.cs
│ │ │ ├── GlobalSuppressions.cs
│ │ │ ├── NuGet.VisualStudio.Common.Test.csproj
│ │ │ ├── NuGetExperimentationServiceTests.cs
│ │ │ ├── NuGetFeatureFlagConstantsTests.cs
│ │ │ ├── NuGetFeatureFlagServiceTests.cs
│ │ │ ├── NuGetFeedbackDiagnosticFileProviderTests.cs
│ │ │ ├── OutputConsoleLoggerTests.Constructor.cs
│ │ │ ├── OutputConsoleLoggerTests.Dispose.cs
│ │ │ ├── OutputConsoleLoggerTests.End.cs
│ │ │ ├── OutputConsoleLoggerTests.ImportingConstructor.cs
│ │ │ ├── OutputConsoleLoggerTests.Log.cs
│ │ │ ├── OutputConsoleLoggerTests.LogAndReportErrorTests.cs
│ │ │ ├── OutputConsoleLoggerTests.ReportError.cs
│ │ │ ├── OutputConsoleLoggerTests.Start.cs
│ │ │ ├── OutputConsoleLoggerTests.cs
│ │ │ ├── PackageManagementFormatTests.cs
│ │ │ ├── ProjectSystems
│ │ │ │ └── ProjectNamesTests.cs
│ │ │ ├── Telemetry
│ │ │ │ ├── InstanceCloseTelemetryEmitterTests.cs
│ │ │ │ ├── PackageSourceTelemetryTests.cs
│ │ │ │ └── TelemetryUtilityTests.cs
│ │ │ └── xunit.runner.json
│ │ ├── NuGet.VisualStudio.Implementation.Test
│ │ │ ├── CachingIServiceBrokerProviderTests.cs
│ │ │ ├── DispatcherThreadCollection.cs
│ │ │ ├── Extensibility
│ │ │ │ ├── NuGetProjectServiceTests.cs
│ │ │ │ ├── VsFrameworkCompatibilityTests
│ │ │ │ │ ├── IVsFrameworkCompatibility3Tests.cs
│ │ │ │ │ └── IVsFrameworkCompatibilityTests.cs
│ │ │ │ ├── VsFrameworkParserTests.cs
│ │ │ │ ├── VsPackageInstallerServicesTests.cs
│ │ │ │ ├── VsPackageRestorerTests.cs
│ │ │ │ ├── VsPackageSourceProviderTests.cs
│ │ │ │ ├── VsPathContextProviderTests.cs
│ │ │ │ ├── VsSemanticVersionComparerTests.cs
│ │ │ │ └── VsSemanticVersionTests.cs
│ │ │ ├── NuGet.VisualStudio.Implementation.Test.csproj
│ │ │ ├── PreinstalledRepositoryProviderTests.cs
│ │ │ ├── SolutionExplorer
│ │ │ │ └── Models
│ │ │ │ │ └── AssetsFileDependenciesSnapshotTests.cs
│ │ │ ├── TestUtilities
│ │ │ │ └── TestProjectThreadingService.cs
│ │ │ └── Utility
│ │ │ │ └── PathLookupTrieTests.cs
│ │ ├── NuGet.VisualStudio.Internal.Contracts.Test
│ │ │ ├── ContextInfos
│ │ │ │ ├── PackageDeprecationMetadataContextInfoTests.cs
│ │ │ │ └── ProjectMetadataContextInfoTests.cs
│ │ │ ├── Formatters
│ │ │ │ ├── AlternatePackageMetadataContextInfoFormatterTests.cs
│ │ │ │ ├── FloatRangeFormatterTests.cs
│ │ │ │ ├── FormatterTests.cs
│ │ │ │ ├── IInstalledAndTransitivePackagesFormatterTests.cs
│ │ │ │ ├── ILogMessageFormatterTests.cs
│ │ │ │ ├── IPackageReferenceContextInfoFormatterTests.cs
│ │ │ │ ├── IProjectContextInfoFormatterTests.cs
│ │ │ │ ├── IProjectMetadataContextInfoFormatterTests.cs
│ │ │ │ ├── ImplicitProjectActionFormatterTests.cs
│ │ │ │ ├── LicenseMetadataFormatterTests.cs
│ │ │ │ ├── NuGetFrameworkFormatterTests.cs
│ │ │ │ ├── NuGetVersionFormatterTests.cs
│ │ │ │ ├── PackageDependencyFormatterTests.cs
│ │ │ │ ├── PackageDependencyInfoFormatterTests.cs
│ │ │ │ ├── PackageDeprecationMetadataContextInfoFormatterTests.cs
│ │ │ │ ├── PackageIdentityFormatterTests.cs
│ │ │ │ ├── PackageReferenceFormatterTests.cs
│ │ │ │ ├── PackageSearchMetadataContextInfoFormatterTests.cs
│ │ │ │ ├── PackageSourceContextInfoFormatterTests.cs
│ │ │ │ ├── PackageSourceFormatterTests.cs
│ │ │ │ ├── PackageVulnerabilityMetadataContextInfoFormatterTests.cs
│ │ │ │ ├── ProjectActionFormatterTests.cs
│ │ │ │ ├── RemoteErrorFormatterTests.cs
│ │ │ │ ├── SearchFilterFormatterTests.cs
│ │ │ │ ├── SearchResultContextInfoFormatterTests.cs
│ │ │ │ ├── VersionInfoContextInfoFormatterTests.cs
│ │ │ │ └── VersionRangeFormatterTests.cs
│ │ │ ├── ImplicitProjectActionTests.cs
│ │ │ ├── NuGet.VisualStudio.Internal.Contracts.Test.csproj
│ │ │ ├── NuGetJsonRpcTests.cs
│ │ │ ├── NuGetServiceMessagePackRpcDescriptorTests.cs
│ │ │ ├── ProjectActionTests.cs
│ │ │ ├── TestUtility.cs
│ │ │ └── Utility
│ │ │ │ ├── RemoteErrorTests.cs
│ │ │ │ └── RemoteErrorUtilityTests.cs
│ │ ├── NuGet.VisualStudio.Test
│ │ │ ├── IVsPathContextProviderTests.cs
│ │ │ ├── IVsPathContextTests.cs
│ │ │ └── NuGet.VisualStudio.Test.csproj
│ │ └── NuGetConsole.Host.PowerShell.Test
│ │ │ ├── NuGetConsole.Host.PowerShell.Test.csproj
│ │ │ └── Utils
│ │ │ └── InstalledPackageEnumeratorTests.cs
│ ├── NuGet.Core.FuncTests
│ │ ├── Directory.Build.props
│ │ ├── Dotnet.Integration.Test
│ │ │ ├── CertificateBundleUtilities.cs
│ │ │ ├── Constants.cs
│ │ │ ├── Dotnet.Integration.Test.csproj
│ │ │ ├── DotnetAddPackageTests.cs
│ │ │ ├── DotnetIntegrationCollection.cs
│ │ │ ├── DotnetIntegrationTestFixture.cs
│ │ │ ├── DotnetListPackageTests.cs
│ │ │ ├── DotnetPackageSearchTests.cs
│ │ │ ├── DotnetPackageUpdateTests.cs
│ │ │ ├── DotnetRestoreTLSCertificateValidationTests.cs
│ │ │ ├── DotnetRestoreTests.cs
│ │ │ ├── DotnetSignTests.cs
│ │ │ ├── DotnetSourcesTests.cs
│ │ │ ├── DotnetTrustTests.cs
│ │ │ ├── DotnetVerifyTests.cs
│ │ │ ├── DotnetWhyTests.cs
│ │ │ ├── PackCommandTests.cs
│ │ │ ├── ProjectFileBuilder.cs
│ │ │ ├── SignCommandTestFixture.cs
│ │ │ ├── X509ChainHolderTests.cs
│ │ │ ├── X509StoreCertificate.cs
│ │ │ ├── X509TrustStoreTests.cs
│ │ │ └── compiler
│ │ │ │ └── resources
│ │ │ │ ├── nuget.versioning.5.0.0.nupkg
│ │ │ │ └── runtime.json
│ │ ├── Msbuild.Integration.Test
│ │ │ ├── GenerateRestoreGraphFileTargetTests.cs
│ │ │ ├── Msbuild.Integration.Test.csproj
│ │ │ ├── MsbuildIntegrationTestFixture.cs
│ │ │ ├── MsbuildRestoreTaskPackageSourceMappingTests.cs
│ │ │ ├── MsbuildRestoreTaskTests.cs
│ │ │ └── NuGetPropertyDefaultsTests.cs
│ │ ├── NuGet.Commands.FuncTest
│ │ │ ├── NuGet.Commands.FuncTest.csproj
│ │ │ ├── RestoreCommandTests.cs
│ │ │ ├── RestoreCommand_AlgorithmEquivalencyTests.cs
│ │ │ ├── RestoreCommand_PackageSourceMapping.cs
│ │ │ ├── RestoreCommand_PackagesLockFileTests.cs
│ │ │ ├── RestoreCommand_PrunePackageReference.cs
│ │ │ ├── TestCollection.cs
│ │ │ ├── UWPRestoreTests.cs
│ │ │ └── compiler
│ │ │ │ └── resources
│ │ │ │ ├── uwpBlankAppV1.json
│ │ │ │ ├── uwpBlankAppV1Original.json
│ │ │ │ └── uwpBlankAppV2.json
│ │ ├── NuGet.Packaging.FuncTest
│ │ │ ├── NuGet.Packaging.FuncTest.csproj
│ │ │ ├── SigningTests
│ │ │ │ ├── AllowListVerificationProviderTests.cs
│ │ │ │ ├── ClientPolicyTests.cs
│ │ │ │ ├── IntegrityVerificationProviderTests.cs
│ │ │ │ ├── PackageSignatureVerifierTests.cs
│ │ │ │ ├── PrimarySignatureTests.cs
│ │ │ │ ├── RepositoryCountersignatureTests.cs
│ │ │ │ ├── SignatureTests.cs
│ │ │ │ ├── SignatureTrustAndValidityVerificationProviderTests.cs
│ │ │ │ ├── SignatureUtilityTests.cs
│ │ │ │ ├── SignedPackageArchiveTests.cs
│ │ │ │ ├── SignedPackageIntegrityVerificationTests.cs
│ │ │ │ ├── SigningTestCollection.cs
│ │ │ │ ├── SigningTestFixture.cs
│ │ │ │ ├── SigningUtilityTests.cs
│ │ │ │ ├── TimestampProviderTests.cs
│ │ │ │ ├── TimestampTests.cs
│ │ │ │ └── TrustStore
│ │ │ │ │ ├── CertificateBundleX509ChainFactoryTests.cs
│ │ │ │ │ ├── DotNetDefaultTrustStoreX509ChainFactoryTests.cs
│ │ │ │ │ ├── FallbackCertificateBundleX509ChainFactoryTests.cs
│ │ │ │ │ ├── NoCertificateBundleX509ChainFactoryTests.cs
│ │ │ │ │ ├── SystemCertificateBundleX509ChainFactoryTests.cs
│ │ │ │ │ └── X509TrustStoreTests.cs
│ │ │ ├── compiler
│ │ │ │ └── resources
│ │ │ │ │ ├── ExpiredPrimaryAndTimestampCertificatesWithUnavailableRevocationInfo.nupkg
│ │ │ │ │ ├── TimestampInvalidGenTimePackage.nupkg
│ │ │ │ │ ├── UnavailableCrlPackage.nupkg
│ │ │ │ │ └── UntrustedTimestampPackage.nupkg
│ │ │ └── xunit.runner.json
│ │ ├── NuGet.Protocol.FuncTest
│ │ │ ├── AuthenticationHandlerTests.cs
│ │ │ ├── DownloadResourceV2FeedTests.cs
│ │ │ ├── DownloadTimeoutStreamTests.cs
│ │ │ ├── FindPackageByIdResourceTests.cs
│ │ │ ├── Helpers
│ │ │ │ ├── MockServerHttpClientHandler.cs
│ │ │ │ ├── MockSourceRepository.cs
│ │ │ │ ├── MockV3ServerHttpClientHandler.cs
│ │ │ │ ├── NupkgDownloadTimeoutHttpClientHandler.cs
│ │ │ │ ├── PluginStub.cs
│ │ │ │ └── TestTimeoutStream.cs
│ │ │ ├── HttpRetryHandlerTests.cs
│ │ │ ├── NuGet.Protocol.FuncTest.csproj
│ │ │ ├── ODataServiceDocumentResourceV2Tests.cs
│ │ │ ├── PluginTests.cs
│ │ │ ├── ResolverTests.cs
│ │ │ ├── ResponseSender.cs
│ │ │ └── V2FeedParserTests.cs
│ │ ├── NuGet.Signing.CrossFramework.Test
│ │ │ ├── CrossFrameworkVerificationTest.cs
│ │ │ ├── CrossVerifyTestCollection.cs
│ │ │ ├── CrossVerifyTestFixture.cs
│ │ │ └── NuGet.Signing.CrossFramework.Test.csproj
│ │ └── NuGet.XPlat.FuncTest
│ │ │ ├── AddPackageCommandUtilityTests.cs
│ │ │ ├── BasicLoggingTests.cs
│ │ │ ├── DotnetCliUtil.cs
│ │ │ ├── ListPackageTests.cs
│ │ │ ├── NuGet.XPlat.FuncTest.csproj
│ │ │ ├── TestCommandOutputLogger.cs
│ │ │ ├── XPlatAddPkgTests.cs
│ │ │ ├── XPlatClientCertTests.cs
│ │ │ ├── XPlatCollection.cs
│ │ │ ├── XPlatConfigTests.cs
│ │ │ ├── XPlatHelpOutputTests.cs
│ │ │ ├── XPlatLocalsTests.cs
│ │ │ ├── XPlatMsbuildTestFixture.cs
│ │ │ ├── XPlatPushTests.cs
│ │ │ ├── XPlatTestUtils.cs
│ │ │ ├── XPlatTrustTests.cs
│ │ │ ├── XPlatVerifyTests.cs
│ │ │ ├── XPlatWhyTests.cs
│ │ │ ├── XplatListPackageJsonRendererTests.cs
│ │ │ ├── XplatRemovePkgTests.cs
│ │ │ ├── XplatSignTests.cs
│ │ │ └── compiler
│ │ │ └── resources
│ │ │ ├── Test.OnePackage.project.assets.json
│ │ │ └── Test.ProjectA.csproj.nuget.g.props
│ ├── NuGet.Core.Tests
│ │ ├── Directory.Build.props
│ │ ├── Microsoft.Build.NuGetSdkResolver.Test
│ │ │ ├── GlobalJsonReader_Tests.cs
│ │ │ ├── Microsoft.Build.NuGetSdkResolver.Test.csproj
│ │ │ ├── MockGlobalJsonReader.cs
│ │ │ ├── MockSdkLogger.cs
│ │ │ ├── MockSdkResolverContext.cs
│ │ │ ├── MockSdkResult.cs
│ │ │ ├── MockSdkResultFactory.cs
│ │ │ ├── NuGetSdkLogger_Tests.cs
│ │ │ ├── NuGetSdkResolver_Tests.cs
│ │ │ └── RestoreRunnerExTests.cs
│ │ ├── NuGet.Build.Tasks.Console.Test
│ │ │ ├── BuildTasksUtilityTests.cs
│ │ │ ├── MSBuildStaticGraphRestoreTests.cs
│ │ │ ├── MockMSBuildProject.cs
│ │ │ ├── NuGet.Build.Tasks.Console.Test.csproj
│ │ │ ├── ProgramTests.cs
│ │ │ └── ProjectItemInstanceEvaluatedIncludeComparerTests.cs
│ │ ├── NuGet.Build.Tasks.Pack.Test
│ │ │ ├── NuGet.Build.Tasks.Pack.Test.csproj
│ │ │ ├── PackTaskLogicTests.cs
│ │ │ ├── PackTaskTests.cs
│ │ │ └── compiler
│ │ │ │ └── resources
│ │ │ │ └── json.assets.project
│ │ ├── NuGet.Build.Tasks.Test
│ │ │ ├── CheckForDuplicateNuGetItemsTaskTests.cs
│ │ │ ├── GenerateRestoreGraphFileTaskTests.cs
│ │ │ ├── GetCentralPackageVersionsTaskTests.cs
│ │ │ ├── GetGlobalPropertyValueTaskTests.cs
│ │ │ ├── GetReferenceNearestTargetFrameworkTaskTest.cs
│ │ │ ├── GetRestoreNuGetAuditSuppressionsTaskTests.cs
│ │ │ ├── GetRestorePackageDownloadsTaskTests.cs
│ │ │ ├── GetRestorePackageReferencesTaskTests.cs
│ │ │ ├── GetRestoreProjectStyleTaskTests.cs
│ │ │ ├── GetRestoreSettingTaskTests.cs
│ │ │ ├── MockTaskItem.cs
│ │ │ ├── NuGet.Build.Tasks.Test.csproj
│ │ │ ├── NuGetMessageTaskTests.cs
│ │ │ ├── RestoreTaskExTests.cs
│ │ │ ├── TaskLoggingQueueTests.cs
│ │ │ ├── TestBuildEngine.cs
│ │ │ ├── TestStrings.Designer.cs
│ │ │ ├── TestStrings.resx
│ │ │ └── WarnForInvalidProjectsTaskTests.cs
│ │ ├── NuGet.CommandLine.Xplat.Tests
│ │ │ ├── CommandLineUtilityTests.cs
│ │ │ ├── Commands
│ │ │ │ ├── Package
│ │ │ │ │ ├── PackageWithNuGetVersionTests.cs
│ │ │ │ │ ├── PackageWithVersionRangeTests.cs
│ │ │ │ │ └── Update
│ │ │ │ │ │ ├── CliParserTests.cs
│ │ │ │ │ │ └── PackageUpdateCommandRunnerTests
│ │ │ │ │ │ ├── GetPackageToUpdateTests.cs
│ │ │ │ │ │ ├── MultiProjectTests.cs
│ │ │ │ │ │ └── SingleProjectTests.cs
│ │ │ │ ├── Why
│ │ │ │ │ ├── DependencyGraphFinderTests.cs
│ │ │ │ │ └── WhyCommandLineParsingTests.cs
│ │ │ │ └── config
│ │ │ │ │ └── ConfigCommandTests.cs
│ │ │ ├── InstallPackagesTests.cs
│ │ │ ├── ListPackageCommandRunnerTests.cs
│ │ │ ├── MSBuildAPIUtilityTests.cs
│ │ │ ├── NETCoreRestoreTestUtility.cs
│ │ │ ├── NuGet.CommandLine.Xplat.Tests.csproj
│ │ │ ├── NullLoggerWithColor.cs
│ │ │ ├── PackageSearchCommandTests.cs
│ │ │ ├── PackageSearchResultJsonPrinterTests.cs
│ │ │ ├── PackageSearchResultTablePrinterTests.cs
│ │ │ ├── PackageSearchRunnerFixture.cs
│ │ │ ├── PackageSearchRunnerTests.cs
│ │ │ ├── PackageSearchTestInitializer.cs
│ │ │ ├── TableTests.cs
│ │ │ ├── Utility
│ │ │ │ ├── ListPackageTestHelper.cs
│ │ │ │ ├── ProjectPackagesPrintUtilityTests.cs
│ │ │ │ └── XPlatUtilityTests.cs
│ │ │ ├── XPlatConfigUnitTests.cs
│ │ │ └── compiler
│ │ │ │ └── resources
│ │ │ │ ├── DNW.Test.SampleProject1.project.assets.json
│ │ │ │ ├── Test.MultiTfmMultiRidProject.project.assets.json
│ │ │ │ ├── Test.NoPackageRidSpecificPackageProject.project.assets.json
│ │ │ │ ├── Test.SampleProject2.project.assets.json
│ │ │ │ └── Test.TwoDifferentVersions.project.assets.json
│ │ ├── NuGet.Commands.Test
│ │ │ ├── BuildAssetsUtilsTests.cs
│ │ │ ├── CertificatesFixture.cs
│ │ │ ├── CollectorLoggerTests.cs
│ │ │ ├── CommandRunnerUtilityTests.cs
│ │ │ ├── CommandsTestUtility.cs
│ │ │ ├── CompatilibityCheckerTests.cs
│ │ │ ├── ContentFileUtilsTests.cs
│ │ │ ├── ContentFilesMSBuildTests.cs
│ │ │ ├── ContentFilesTests.cs
│ │ │ ├── CycleTests.cs
│ │ │ ├── DependencyGraphResolverTests.cs
│ │ │ ├── DependencyTypeConstraintTests.cs
│ │ │ ├── DiagnosticUtilityTests.cs
│ │ │ ├── DotnetCliToolTests.cs
│ │ │ ├── IncludeTypeTests.cs
│ │ │ ├── InstallPackagesTests.cs
│ │ │ ├── MSBuildProjectFactoryTests.cs
│ │ │ ├── MSBuildProjectFrameworkUtilityTests.cs
│ │ │ ├── MSBuildRestoreItemGroupTests.cs
│ │ │ ├── MSBuildRestoreUtilityTests.cs
│ │ │ ├── MinClientVersionTests.cs
│ │ │ ├── NETCoreProject2ProjectTests.cs
│ │ │ ├── NETCoreRestoreTestUtility.cs
│ │ │ ├── NotThreadSafeResourceCollection.cs
│ │ │ ├── NuGet.Commands.Test.csproj
│ │ │ ├── PackCommandRunnerTests.cs
│ │ │ ├── PackagesWithRelatedFilesTests.cs
│ │ │ ├── PackagesWithResourcesTests.cs
│ │ │ ├── Project2ProjectInLockFileTests.cs
│ │ │ ├── ProjectResolutionTests.cs
│ │ │ ├── PushCommandTests.cs
│ │ │ ├── RequestFactoryTests.cs
│ │ │ ├── RestoreBuildTargetsAndPropsTests.cs
│ │ │ ├── RestoreCommandTests
│ │ │ │ ├── CompatibilityIssueTests.cs
│ │ │ │ ├── FallbackFolderRestoreTests.cs
│ │ │ │ ├── LockFileBuilderCacheTest.cs
│ │ │ │ ├── OriginalCaseGlobalPackageFolderTests.cs
│ │ │ │ ├── ProjectRestoreCommandTests.cs
│ │ │ │ ├── RequestFactory
│ │ │ │ │ └── DependencyGraphSpecRequestProviderTests.cs
│ │ │ │ ├── RestoreCommandProviderCacheTests.cs
│ │ │ │ ├── RestoreCommandTests.cs
│ │ │ │ ├── Utility
│ │ │ │ │ ├── AuditUtilityTests.cs
│ │ │ │ │ └── FrameworkRuntimeDefinitionTests.cs
│ │ │ │ └── VulnerabilityInformationProviderTests.cs
│ │ │ ├── RestoreResultTests.cs
│ │ │ ├── RestoreRunnerTests.cs
│ │ │ ├── RestoreSemVerTests.cs
│ │ │ ├── RuntimePackageTests.cs
│ │ │ ├── RuntimeTargetsTests.cs
│ │ │ ├── SdkAnalysisLevelMinimumsTests.cs
│ │ │ ├── SignCommandRunnerTests.cs
│ │ │ ├── SingleFileProviderTests.cs
│ │ │ ├── SourceRepositoryDependencyProviderTests.cs
│ │ │ ├── SpecValidationUtilityTests.cs
│ │ │ ├── TestPackageSourceProvider.cs
│ │ │ ├── TestUtilityTests.cs
│ │ │ ├── TransitiveNoWarnUtilsTests.cs
│ │ │ ├── TrustedSignerActionsProviderTests.cs
│ │ │ ├── TrustedSignersCommandRunnerTests.cs
│ │ │ ├── UnexpectedDependencyMessagesTests.cs
│ │ │ ├── UnresolvedMessagesTests.cs
│ │ │ ├── WarningPropertiesCollectionTests.cs
│ │ │ ├── WarningPropertiesTests.cs
│ │ │ └── compiler
│ │ │ │ └── resources
│ │ │ │ └── EmptyCertificateStore.p7b
│ │ ├── NuGet.Common.Test
│ │ │ ├── ActivityCorrelationIdFuncTests.cs
│ │ │ ├── ActivityCorrelationIdTests.cs
│ │ │ ├── AggregateEnumerableAsyncTest.cs
│ │ │ ├── ConcurrencyUtilitiesTests.cs
│ │ │ ├── CryptoHashProviderTest.cs
│ │ │ ├── CryptoHashUtilityTests.cs
│ │ │ ├── CultureUtilityTests.cs
│ │ │ ├── DateTimeUtilityTests.cs
│ │ │ ├── EnvironmentVariableWrapperTests.cs
│ │ │ ├── ExceptionUtilitiesTests.cs
│ │ │ ├── FileUtilityTests.cs
│ │ │ ├── KeyedLockTests.cs
│ │ │ ├── Logging
│ │ │ │ └── ExceptionLoggerTests.cs
│ │ │ ├── MSBuildStringUtilityTests.cs
│ │ │ ├── Migration1Tests.cs
│ │ │ ├── MigrationRunnerTests.cs
│ │ │ ├── NoAllocEnumerateExtensionsTests.cs
│ │ │ ├── NuGet.Common.Test.csproj
│ │ │ ├── NuGetEnvironmentTests.cs
│ │ │ ├── PackageSpecificWanringPropertiesTests.cs
│ │ │ ├── PathResolverTests.cs
│ │ │ ├── PathUtilityTests.cs
│ │ │ ├── PathValidatorTest.cs
│ │ │ ├── PosixPermissionsTests.cs
│ │ │ ├── PreprocessorTests.cs
│ │ │ ├── ProjectJsonPathUtilitiesTests.cs
│ │ │ ├── RestoreLogMessageTests.cs
│ │ │ ├── RuntimeEnvironmentHelperTests.cs
│ │ │ ├── StringExtensionsTests.cs
│ │ │ ├── SynchronizationTest.cs
│ │ │ ├── TelemetryActivityTests.cs
│ │ │ ├── TestResource.Designer.cs
│ │ │ ├── TestResource.de.resx
│ │ │ ├── TestResource.resx
│ │ │ └── UriUtilityTests.cs
│ │ ├── NuGet.Configuration.Test
│ │ │ ├── ClientCertificateProviderTests.cs
│ │ │ ├── ConfigurationDefaultsTests.cs
│ │ │ ├── ConfigurationDefaultsThreadSafetyTests.cs
│ │ │ ├── EnvironmentSupportTests.cs
│ │ │ ├── FallbackFolderTests.cs
│ │ │ ├── NotThreadSafeResourceCollection.cs
│ │ │ ├── NuGet.Configuration.Test.csproj
│ │ │ ├── NuGetPathContextTests.cs
│ │ │ ├── PackageSourceCredentialTests.cs
│ │ │ ├── PackageSourceMappingConfigurationTests.cs
│ │ │ ├── PackageSourceMappingProviderTests.cs
│ │ │ ├── PackageSourceProviderTests.cs
│ │ │ ├── PackageSourceTests.cs
│ │ │ ├── ProxyCacheTests.cs
│ │ │ ├── SearchTreeTest.cs
│ │ │ ├── SettingsFileParsingTests
│ │ │ │ ├── AddItemTests.cs
│ │ │ │ ├── AuthorItemTests.cs
│ │ │ │ ├── CertificateItemTests.cs
│ │ │ │ ├── ClearItemTests.cs
│ │ │ │ ├── CredentialsItemTests.cs
│ │ │ │ ├── FileClientCertItemTests.cs
│ │ │ │ ├── NuGetConfigurationTests.cs
│ │ │ │ ├── OwnersItemTests.cs
│ │ │ │ ├── PackagePatternItemTests.cs
│ │ │ │ ├── PackageSourceMappingSourceItemTests.cs
│ │ │ │ ├── RepositoryItemTests.cs
│ │ │ │ ├── SettingSectionTests.cs
│ │ │ │ ├── SettingTextTests.cs
│ │ │ │ ├── SettingsFileTests.cs
│ │ │ │ ├── SourceItemTests.cs
│ │ │ │ ├── StoreClientCertItemTests.cs
│ │ │ │ ├── TrustedSignerItemTests.cs
│ │ │ │ └── UnknownItemTests.cs
│ │ │ ├── SettingsLoadingContextTests.cs
│ │ │ ├── SettingsTestUtils.cs
│ │ │ ├── SettingsTests.cs
│ │ │ ├── SettingsUtilityTests.cs
│ │ │ ├── TestConfigurationDefaults.cs
│ │ │ └── TestMachineWideSettings.cs
│ │ ├── NuGet.Credentials.Test
│ │ │ ├── CredentialServiceTests.cs
│ │ │ ├── DelegatingLoggerTests.cs
│ │ │ ├── NuGet.Credentials.Test.csproj
│ │ │ ├── PluginCredentialProviderBuilderTests.cs
│ │ │ ├── PluginCredentialProviderTests.cs
│ │ │ ├── PluginManagerMock.cs
│ │ │ ├── SecurePluginCredentialProviderBuilderTests.cs
│ │ │ └── SecurePluginCredentialProviderTests.cs
│ │ ├── NuGet.DependencyResolver.Core.Tests
│ │ │ ├── FindPackageTests.cs
│ │ │ ├── GraphItemKeyComparerTests.cs
│ │ │ ├── GraphNodeTests.cs
│ │ │ ├── GraphOperationsTests.cs
│ │ │ ├── LocalDependencyProviderTests.cs
│ │ │ ├── NuGet.DependencyResolver.Core.Tests.csproj
│ │ │ ├── RemoteDependencyWalkerTests.cs
│ │ │ ├── RemoteWalkContextTests.cs
│ │ │ ├── ResolverFacts.cs
│ │ │ └── TrackerTests.cs
│ │ ├── NuGet.Frameworks.Test
│ │ │ ├── AssetTargetFallbackTests.cs
│ │ │ ├── CompatibilityListProviderTests.cs
│ │ │ ├── CompatibilityPCLTests.cs
│ │ │ ├── CompatibilityTableTests.cs
│ │ │ ├── CompatibilityTests.cs
│ │ │ ├── DualCompatibilityFrameworkTests.cs
│ │ │ ├── FallbackFrameworkTests.cs
│ │ │ ├── FrameworkComparerTests.cs
│ │ │ ├── FrameworkExpanderTests.cs
│ │ │ ├── FrameworkNameProviderTests.cs
│ │ │ ├── FrameworkRangeTests.cs
│ │ │ ├── FrameworkReducerTests.cs
│ │ │ ├── NuGet.Frameworks.Test.csproj
│ │ │ ├── NuGetFrameworkParseComponentsTest.cs
│ │ │ ├── NuGetFrameworkParseTests.cs
│ │ │ ├── NuGetFrameworkTests.cs
│ │ │ ├── NuGetFrameworkUtilityTests.cs
│ │ │ └── SpecialFrameworkTests.cs
│ │ ├── NuGet.LibraryModel.Tests
│ │ │ ├── CentralPackageVersionNameComparerTests.cs
│ │ │ ├── FrameworkDependencyFlagsUtilsTests.cs
│ │ │ ├── FrameworkDependencyTests.cs
│ │ │ ├── LibraryDependencyTargetUtilsTests.cs
│ │ │ ├── LibraryDependencyTests.cs
│ │ │ ├── LibraryIdentityTests.cs
│ │ │ ├── LibraryIncludeFlagUtilsTests.cs
│ │ │ ├── LibraryRangeTests.cs
│ │ │ ├── NuGet.LibraryModel.Tests.csproj
│ │ │ └── PrunePackageReferenceTests.cs
│ │ ├── NuGet.PackageManagement.Test
│ │ │ ├── AuditCheckerTests.cs
│ │ │ ├── BuildIntegratedTests.cs
│ │ │ ├── BuildIntegration
│ │ │ │ ├── BuildIntegratedNuGetProjectTests.cs
│ │ │ │ ├── BuildIntegratedProjectActionTests.cs
│ │ │ │ ├── BuildIntegratedRestoreUtilityTests.cs
│ │ │ │ ├── BuildIntegrationTestUtility.cs
│ │ │ │ ├── DependencyGraphRestoreUtilityTests.cs
│ │ │ │ ├── TestExternalProjectReference.cs
│ │ │ │ ├── TestMSBuildNuGetProject.cs
│ │ │ │ └── TestPackageReferenceNuGetProject.cs
│ │ │ ├── DependencyGraphSpecTests.cs
│ │ │ ├── FileModifiers
│ │ │ │ ├── PreprocessorTests.cs
│ │ │ │ ├── XdtTransformerTests.cs
│ │ │ │ └── XmlTransformerTests.cs
│ │ │ ├── InstallationCompatibilityTests.cs
│ │ │ ├── NotThreadSafeResourceCollection.cs
│ │ │ ├── NuGet.PackageManagement.Test.csproj
│ │ │ ├── NuGetPackageManagerTests
│ │ │ │ ├── BatchedEventTests.cs
│ │ │ │ ├── ConstructorTests.cs
│ │ │ │ ├── InstallPackageTests.cs
│ │ │ │ ├── NuGetPackageManagerTelemetryTests.cs
│ │ │ │ ├── OtherTests.cs
│ │ │ │ ├── PackageSourceMappingTests.cs
│ │ │ │ ├── PackagesConfigLockFileTests.cs
│ │ │ │ ├── PreviewInstallTests.cs
│ │ │ │ └── UninstallPackageTests.cs
│ │ │ ├── NuGetPackageManagerUtilityTests.cs
│ │ │ ├── NuGetProjectTests.cs
│ │ │ ├── PackageDownloaderTests.cs
│ │ │ ├── PackageManagement
│ │ │ │ ├── TestDependencyInfoProvider.cs
│ │ │ │ └── TestMetadataProvider.cs
│ │ │ ├── PackagePreFetcherTests.cs
│ │ │ ├── PackageReferenceBasedNuGetPackageManagerTests.cs
│ │ │ ├── PackageRestoreManagerTests.cs
│ │ │ ├── ProjectManagement
│ │ │ │ ├── BuildIntegratedNuGetProjectTests.cs
│ │ │ │ ├── FolderNuGetProjectTests.cs
│ │ │ │ ├── JsonConfigUtilityTests.cs
│ │ │ │ ├── MSBuildNuGetProjectTests.cs
│ │ │ │ └── PackagesConfigNuGetProjectTests.cs
│ │ │ ├── ResolverGatherTests.cs
│ │ │ ├── SourceRepositoryProviderTests.cs
│ │ │ ├── TestNuGetProject.cs
│ │ │ ├── TestSourceControlManager.cs
│ │ │ ├── TestSourceControlManagerProvider.cs
│ │ │ ├── TestVSSolutionManager.cs
│ │ │ ├── UninstallResolverTests.cs
│ │ │ ├── UnzippedPackageInstallTests.cs
│ │ │ ├── Utility
│ │ │ │ ├── FileSystemUtilityTests.cs
│ │ │ │ ├── MSBuildNuGetProjectSystemUtilityTests.cs
│ │ │ │ ├── PackageGraphAnalysisUtilitiesTests.cs
│ │ │ │ ├── PackageReferenceComparerTests.cs
│ │ │ │ ├── PackagesConfigContentHashProviderTests.cs
│ │ │ │ └── PackagesConfigLockFileUtilityTests.cs
│ │ │ ├── V2V3ParityTests.cs
│ │ │ └── xunit.runner.json
│ │ ├── NuGet.Packaging.Test
│ │ │ ├── AccidentallyCompatibleWithAllFrameworksRuleTests.cs
│ │ │ ├── ContentModelTests
│ │ │ │ ├── ContentItemTests.cs
│ │ │ │ ├── ContentModelBuildTests.cs
│ │ │ │ ├── ContentModelContentFilesTests.cs
│ │ │ │ ├── ContentModelLibTests.cs
│ │ │ │ ├── ContentModelNativeTests.cs
│ │ │ │ ├── ContentModelResourceTests.cs
│ │ │ │ ├── ContentModelTests.cs
│ │ │ │ ├── ContentModelToolsTests.cs
│ │ │ │ ├── PatternTableTests.cs
│ │ │ │ └── ReadOnlyMemoryCharComparerOrdinalTests.cs
│ │ │ ├── Core
│ │ │ │ └── comparers
│ │ │ │ │ ├── PackageDependencyInfoComparerTests.cs
│ │ │ │ │ └── PackageIdentityComparerTests.cs
│ │ │ ├── DefaultManifestValuesRuleTests.cs
│ │ │ ├── DependenciesGroupsForEachTFMRuleTests.cs
│ │ │ ├── ExceptionAssert.cs
│ │ │ ├── FallbackPackagePathResolverTests.cs
│ │ │ ├── FrameworkReferenceGroupTests.cs
│ │ │ ├── FrameworkReferenceTests.cs
│ │ │ ├── InvalidFrameworkFolderRuleTests.cs
│ │ │ ├── InvalidPlaceholderFileRuleTests.cs
│ │ │ ├── InvalidUndottedFrameworkRuleTests.cs
│ │ │ ├── LicensesTests
│ │ │ │ ├── LicenseExpressionTokenizerTests.cs
│ │ │ │ ├── NuGetLicenseExpressionParserTests.cs
│ │ │ │ └── NuGetLicenseTests.cs
│ │ │ ├── ManifestFileTest.cs
│ │ │ ├── ManifestSchemaUtilityTest.cs
│ │ │ ├── ManifestTest.cs
│ │ │ ├── ManifestVersionUtilityTest.cs
│ │ │ ├── MinClientVersionUtilityTests.cs
│ │ │ ├── MissingReadmeRuleTests.cs
│ │ │ ├── NuGet.Packaging.Test.csproj
│ │ │ ├── NuSpecCoreReaderTests.cs
│ │ │ ├── NugetPackageUtilTests.cs
│ │ │ ├── NupkgMetadataFileFormatTests.cs
│ │ │ ├── NupkgMetadataFileTests.cs
│ │ │ ├── NuspecReaderTests.cs
│ │ │ ├── PackageArchiveReaderTests.cs
│ │ │ ├── PackageBuilderTest.cs
│ │ │ ├── PackageDependencyGroupTests.cs
│ │ │ ├── PackageExtraction
│ │ │ │ ├── StreamExtensionsTests.cs
│ │ │ │ └── ZipArchiveExtensionsTests.cs
│ │ │ ├── PackageExtractorTests.cs
│ │ │ ├── PackageFolderReaderTests.cs
│ │ │ ├── PackageHelperTests.cs
│ │ │ ├── PackageIdValidatorTest.cs
│ │ │ ├── PackageIdentityTests.cs
│ │ │ ├── PackagePathResolverTests.cs
│ │ │ ├── PackageReaderExtensionsTests.cs
│ │ │ ├── PackageTypeTests.cs
│ │ │ ├── PackagesConfigReaderTests.cs
│ │ │ ├── PackagesConfigWriterTests.cs
│ │ │ ├── ReferencesInNuspecMatchRefAssetsRuleTests.cs
│ │ │ ├── RelatedFileExtensionPropertyTests.cs
│ │ │ ├── RepositoryMetadataTests.cs
│ │ │ ├── RuleSetTests.cs
│ │ │ ├── Rules
│ │ │ │ └── MisplacedAssemblyOutsideLibRuleTests.cs
│ │ │ ├── RuntimeModelTests
│ │ │ │ ├── JsonObjectWriterTests.cs
│ │ │ │ ├── JsonRuntimeFormatTests.cs
│ │ │ │ ├── RuntimeDescriptionTests.cs
│ │ │ │ └── RuntimeGraphTests.cs
│ │ │ ├── SigningTests
│ │ │ │ ├── AccuracyTests.cs
│ │ │ │ ├── AlgorithmIdentifierTests.cs
│ │ │ │ ├── AttributeUtilityTests.cs
│ │ │ │ ├── AuthorSignPackageRequestTests.cs
│ │ │ │ ├── CertificateChainUtilityTests.cs
│ │ │ │ ├── CertificateUtilityTests.cs
│ │ │ │ ├── CertificatesFixture.cs
│ │ │ │ ├── ChainBuilding
│ │ │ │ │ ├── DefaultX509ChainBuildPolicyTests.cs
│ │ │ │ │ ├── RetriableX509ChainBuildPolicyTests.cs
│ │ │ │ │ └── X509ChainBuildPolicyFactoryTests.cs
│ │ │ │ ├── ClientPolicyContextTests.cs
│ │ │ │ ├── CommitmentTypeIndicationTests.cs
│ │ │ │ ├── CommitmentTypeQualifierTests.cs
│ │ │ │ ├── Crc32Tests.cs
│ │ │ │ ├── DerGeneralizedTimeTests.cs
│ │ │ │ ├── EssCertIdTests.cs
│ │ │ │ ├── EssCertIdV2Tests.cs
│ │ │ │ ├── ExtensionsTests.cs
│ │ │ │ ├── GeneralNameTests.cs
│ │ │ │ ├── IssuerSerialTests.cs
│ │ │ │ ├── KeyPairFileReaderTests.cs
│ │ │ │ ├── KeyPairFileUtilityTests.cs
│ │ │ │ ├── KeyPairFileWriterTests.cs
│ │ │ │ ├── MessageImprintTests.cs
│ │ │ │ ├── NuGetPackageOwnersTests.cs
│ │ │ │ ├── NuGetV3ServiceIndexUrlTests.cs
│ │ │ │ ├── PolicyInformationTests.cs
│ │ │ │ ├── PolicyQualifierInfoTests.cs
│ │ │ │ ├── PrimarySignatureTests.cs
│ │ │ │ ├── ReadOnlyBufferedStreamTests.cs
│ │ │ │ ├── RepositoryCountersignatureTests.cs
│ │ │ │ ├── RepositorySignPackageRequestTests.cs
│ │ │ │ ├── RepositorySignatureInfoUtilityTests.cs
│ │ │ │ ├── Rfc3161TimestampProviderTests.cs
│ │ │ │ ├── SignatureContentTests.cs
│ │ │ │ ├── SignatureLogTests.cs
│ │ │ │ ├── SignatureTrustAndValidityVerificationProviderTests.cs
│ │ │ │ ├── SignatureUtilityTests.cs
│ │ │ │ ├── SignatureVerificationStatusFlagsTests.cs
│ │ │ │ ├── SignedPackageArchiveIOUtilityTests.cs
│ │ │ │ ├── SignedPackageArchiveTests.cs
│ │ │ │ ├── SignedPackageArchiveUtilityTests.cs
│ │ │ │ ├── SignedPackageVerifierSettingsTests.cs
│ │ │ │ ├── SigningCertificateTests.cs
│ │ │ │ ├── SigningCertificateV2Tests.cs
│ │ │ │ ├── SigningOptionsTests.cs
│ │ │ │ ├── SigningTestsCollection.cs
│ │ │ │ ├── SigningUtilityTests.cs
│ │ │ │ ├── TrustStore
│ │ │ │ │ ├── DotNetDefaultTrustStoreX509ChainFactoryTests.cs
│ │ │ │ │ ├── FallbackCertificateBundleX509ChainFactoryTests.cs
│ │ │ │ │ ├── NoCertificateBundleX509ChainFactoryTests.cs
│ │ │ │ │ ├── SystemCertificateBundleX509ChainFactoryTests.cs
│ │ │ │ │ └── X509ChainWrapperTests.cs
│ │ │ │ ├── TrustedSignersProviderTests.cs
│ │ │ │ ├── TstInfoTests.cs
│ │ │ │ ├── VerificationUtilityTests.cs
│ │ │ │ └── Zip
│ │ │ │ │ ├── CentralDirectoryHeader.cs
│ │ │ │ │ ├── EndOfCentralDirectoryRecord.cs
│ │ │ │ │ ├── LocalFileHeader.cs
│ │ │ │ │ └── Zip.cs
│ │ │ ├── TopologicalSortUtilityTests.cs
│ │ │ ├── UpholdBuildConventionRuleTests.cs
│ │ │ └── VersionFolderPathResolverTests.cs
│ │ ├── NuGet.ProjectModel.Test
│ │ │ ├── AssetTargetFallbackTests.cs
│ │ │ ├── Builders
│ │ │ │ ├── LockFileDependencyBuilder.cs
│ │ │ │ ├── PackagesLockFileBuilder.cs
│ │ │ │ └── PackagesLockFileTargetBuilder.cs
│ │ │ ├── CacheFileFormatTests.cs
│ │ │ ├── CentralTransitiveDependencyGroupTests.cs
│ │ │ ├── DependencyGraphSpecTests.cs
│ │ │ ├── DependencyTargetTests.cs
│ │ │ ├── FileFormatExceptionTests.cs
│ │ │ ├── FnvHash64FunctionTests.cs
│ │ │ ├── HashObjectWriterTests.cs
│ │ │ ├── ImportFrameworkTest.cs
│ │ │ ├── IncludeFlagTests.cs
│ │ │ ├── JsonPackageSpecReaderTests.cs
│ │ │ ├── JsonTextReaderExtensionsTests.cs
│ │ │ ├── LazyStringSplitTests.cs
│ │ │ ├── LockFileEqualityTests.cs
│ │ │ ├── LockFileExtensionsTests.cs
│ │ │ ├── LockFileFormatTests.cs
│ │ │ ├── LockFileLibraryTests.cs
│ │ │ ├── LockFileTargetLibraryTests.cs
│ │ │ ├── LockFileTargetTests.cs
│ │ │ ├── LockFileTests.cs
│ │ │ ├── MacroStringsUtilityTests.cs
│ │ │ ├── NuGet.ProjectModel.Test.csproj
│ │ │ ├── PackageSpecExtensions.cs
│ │ │ ├── PackageSpecOperationsTests.cs
│ │ │ ├── PackageSpecReferenceDependencyProviderTests.cs
│ │ │ ├── PackageSpecTestUtility.cs
│ │ │ ├── PackageSpecTests.cs
│ │ │ ├── PackageSpecUtilityTests.cs
│ │ │ ├── PackageSpecWriterTests.cs
│ │ │ ├── PackagesLockFileFormatTests.cs
│ │ │ ├── PackagesLockFileTargetTests.cs
│ │ │ ├── PackagesLockFileTests.cs
│ │ │ ├── ProjectFileDependencyGroupTests.cs
│ │ │ ├── ProjectLockFile
│ │ │ │ ├── LockFileDependencyComparerWithoutContentHashTests.cs
│ │ │ │ ├── LockFileDependencyIdVersionComparerTests.cs
│ │ │ │ └── LockFileUtilitiesTests.cs
│ │ │ ├── ProjectRestoreMetadataFrameworkInfoTests.cs
│ │ │ ├── ProjectRestoreMetadataTests.cs
│ │ │ ├── ProjectRestoreReferenceTests.cs
│ │ │ ├── RestoreAuditPropertiesTests.cs
│ │ │ ├── Sha512HashFunctionTests.cs
│ │ │ ├── StringExtensionTests.cs
│ │ │ ├── TargetFrameworkInformationTests.cs
│ │ │ ├── ToolPathResolverTests.cs
│ │ │ ├── Utf8JsonReaderExtensionsTests.cs
│ │ │ ├── Utf8JsonStreamReaderTests.cs
│ │ │ └── compiler
│ │ │ │ └── resources
│ │ │ │ ├── DependencyGraphSpec_CentralVersionDependencies.json
│ │ │ │ ├── DependencyGraphSpec_Save_SerializesMembersAsJson.json
│ │ │ │ ├── PackageSpecWriter_Write_SerializesMembersAsJson.json
│ │ │ │ ├── empty.dg
│ │ │ │ ├── project1.json
│ │ │ │ ├── project2.json
│ │ │ │ ├── sample.assets.json
│ │ │ │ ├── test1.dg
│ │ │ │ ├── test2.dg
│ │ │ │ └── test3.dg
│ │ ├── NuGet.Protocol.Tests
│ │ │ ├── AutoCompleteResourceV2FeedTests.cs
│ │ │ ├── AutoCompleteResourceV3Tests.cs
│ │ │ ├── Converters
│ │ │ │ ├── MetadataStringOrArrayConverterTests.cs
│ │ │ │ ├── PackageVulnerabilityInfoConverterTests.cs
│ │ │ │ ├── SemanticVersionConverterTests.cs
│ │ │ │ ├── VersionRangeConverterTests.cs
│ │ │ │ ├── VersionRangeStjConverterTests.cs
│ │ │ │ └── VulnerabilityFileDataConverterTests.cs
│ │ │ ├── Core
│ │ │ │ └── Types
│ │ │ │ │ └── PackageSearchMetadataBuilderTests.cs
│ │ │ ├── DedicatedAsynchronousProcessingThreadTests.cs
│ │ │ ├── DependencyInfo
│ │ │ │ ├── RegistrationUtilityTests.cs
│ │ │ │ └── TrimTests.cs
│ │ │ ├── DependencyInfoResourceV2FeedTests.cs
│ │ │ ├── DownloadResourceResultTests.cs
│ │ │ ├── DownloadResourceV2FeedTests.cs
│ │ │ ├── EnhancedHttpRetryHelperTests.cs
│ │ │ ├── Events
│ │ │ │ └── ProtocolDiagnosticsStreamTests.cs
│ │ │ ├── FactoryExtensionsV3Tests.cs
│ │ │ ├── FeedTypeUtilityTests.cs
│ │ │ ├── HttpHandlerResourceV3ProviderTests.cs
│ │ │ ├── HttpSource
│ │ │ │ ├── ClientCertificatesTests.cs
│ │ │ │ ├── HttpRetryHandlerTests.cs
│ │ │ │ ├── HttpSourceAuthenticationHandlerTests.cs
│ │ │ │ ├── HttpSourceTests.cs
│ │ │ │ ├── HttpStreamValidationTests.cs
│ │ │ │ ├── LambdaMessageHandler.cs
│ │ │ │ ├── NoSyncReadStream.cs
│ │ │ │ ├── ProxyAuthenticationHandlerTests.cs
│ │ │ │ ├── SemaphoreSlimThrottleTests.cs
│ │ │ │ ├── StsAuthenticationHandlerTests.cs
│ │ │ │ └── TestProxy.cs
│ │ │ ├── HttpSourceResourceProviderTests.cs
│ │ │ ├── JsonExtensionsTest.cs
│ │ │ ├── LegacyCapabilityResourceTests.cs
│ │ │ ├── LegacyFeed
│ │ │ │ └── V2FeedQueryBuilderTests.cs
│ │ │ ├── LocalFolderUtilityTests.cs
│ │ │ ├── LocalPackageArchiveDownloaderTests.cs
│ │ │ ├── LocalPackageFileCacheTests.cs
│ │ │ ├── LocalPackageListResourceTests.cs
│ │ │ ├── LocalPackageSearchMetadataTests.cs
│ │ │ ├── LocalRepositories
│ │ │ │ ├── LocalV2FindPackageByIdResourceTests.cs
│ │ │ │ └── LocalV3FindPackageByIdResourceTests.cs
│ │ │ ├── LocalResourceTests
│ │ │ │ ├── FindLocalPackagesResourceTests.cs
│ │ │ │ ├── FindPackageByIdResourceTests.cs
│ │ │ │ ├── LocalAutoCompleteResourceTests.cs
│ │ │ │ ├── LocalDependencyInfoResourceTests.cs
│ │ │ │ ├── LocalDownloadResourceTests.cs
│ │ │ │ ├── LocalMetadataResourceTests.cs
│ │ │ │ ├── LocalPackageMetadataResourceTests.cs
│ │ │ │ ├── LocalPackageSearchResourceTests.cs
│ │ │ │ ├── TestFindLocalPackagesResource.cs
│ │ │ │ └── TestLocalPackageInfo.cs
│ │ │ ├── MetadataClientTests.cs
│ │ │ ├── MetadataResourceV2FeedTests.cs
│ │ │ ├── Model
│ │ │ │ └── VulnerabilityInfoTests.cs
│ │ │ ├── NotThreadSafeResourceCollection.cs
│ │ │ ├── NuGet.Protocol.Tests.csproj
│ │ │ ├── NuGetv3LocalRepositoryTests.cs
│ │ │ ├── ODataServiceDocumentV2Tests.cs
│ │ │ ├── PackageDetailsUriResourceV3Tests.cs
│ │ │ ├── PackageMetadataResourceV2FeedTests.cs
│ │ │ ├── PackageMetadataResourceV3Tests.cs
│ │ │ ├── PackageSearchMetadataV2FeedTests.cs
│ │ │ ├── PackageSearchResourceV2FeedTests.cs
│ │ │ ├── PackageSearchResourceV3Tests.cs
│ │ │ ├── PackageVulnerabilityInfoTests.cs
│ │ │ ├── Plugins
│ │ │ │ ├── AutomaticProgressReporterTests.cs
│ │ │ │ ├── ConnectionOptionsTests.cs
│ │ │ │ ├── ConnectionTests.cs
│ │ │ │ ├── DownloadResourcePluginProviderTests.cs
│ │ │ │ ├── DownloadResourcePluginTests.cs
│ │ │ │ ├── FaultedPluginEventArgsTests.cs
│ │ │ │ ├── Helpers
│ │ │ │ │ ├── DelayedFindLocalPackagesResourceV2.cs
│ │ │ │ │ ├── SimulatedIpc.cs
│ │ │ │ │ ├── SimulatedReadOnlyFileStream.cs
│ │ │ │ │ ├── SimulatedStreamReader.cs
│ │ │ │ │ ├── SimulatedStreamWriter.cs
│ │ │ │ │ ├── SimulatedWriteOnlyFileStream.cs
│ │ │ │ │ └── TestUtilities.cs
│ │ │ │ ├── InboundRequestContextTests.cs
│ │ │ │ ├── InboundRequestProcessingHandlerTests.cs
│ │ │ │ ├── JsonSerializationUtilitiesTests.cs
│ │ │ │ ├── LineReadEventArgsTests.cs
│ │ │ │ ├── Logging
│ │ │ │ │ ├── AssemblyLogMessageTests.cs
│ │ │ │ │ ├── CommunicationLogMessageTests.cs
│ │ │ │ │ ├── EnvironmentVariablesLogMessageTests.cs
│ │ │ │ │ ├── LogMessageTests.cs
│ │ │ │ │ ├── MachineLogMessageTests.cs
│ │ │ │ │ ├── PluginInstanceLogMessageTests.cs
│ │ │ │ │ ├── PluginLoggerTests.cs
│ │ │ │ │ ├── ProcessLogMessageTests.cs
│ │ │ │ │ ├── StopwatchLogMessageTests.cs
│ │ │ │ │ ├── TaskLogMessageTests.cs
│ │ │ │ │ └── ThreadPoolLogMessageTests.cs
│ │ │ │ ├── MessageDispatcherTests.cs
│ │ │ │ ├── MessageEventArgsTests.cs
│ │ │ │ ├── MessageUtilitiesTests.cs
│ │ │ │ ├── Messages
│ │ │ │ │ ├── CopyFilesInPackageRequestTests.cs
│ │ │ │ │ ├── CopyFilesInPackageResponseTests.cs
│ │ │ │ │ ├── CopyNupkgFileRequestTests.cs
│ │ │ │ │ ├── CopyNupkgFileResponseTests.cs
│ │ │ │ │ ├── FaultTests.cs
│ │ │ │ │ ├── GetAuthenticationCredentialsRequestTests.cs
│ │ │ │ │ ├── GetAuthenticationCredentialsResponseTests.cs
│ │ │ │ │ ├── GetCredentialsRequestTests.cs
│ │ │ │ │ ├── GetCredentialsResponseTests.cs
│ │ │ │ │ ├── GetFilesInPackageRequestTests.cs
│ │ │ │ │ ├── GetFilesInPackageResponseTests.cs
│ │ │ │ │ ├── GetOperationClaimsRequestTests.cs
│ │ │ │ │ ├── GetOperationClaimsResponseTests.cs
│ │ │ │ │ ├── GetPackageHashRequestTests.cs
│ │ │ │ │ ├── GetPackageHashResponseTests.cs
│ │ │ │ │ ├── GetPackageVersionsRequestTests.cs
│ │ │ │ │ ├── GetPackageVersionsResponseTests.cs
│ │ │ │ │ ├── GetServiceIndexRequestTests.cs
│ │ │ │ │ ├── GetServiceIndexResponseTests.cs
│ │ │ │ │ ├── HandshakeRequestTests.cs
│ │ │ │ │ ├── HandshakeResponseTests.cs
│ │ │ │ │ ├── InitializeRequestTests.cs
│ │ │ │ │ ├── InitializeResponseTests.cs
│ │ │ │ │ ├── LogRequestTests.cs
│ │ │ │ │ ├── LogResponseTests.cs
│ │ │ │ │ ├── MessageTests.cs
│ │ │ │ │ ├── MonitorNuGetProcessExitRequestTests.cs
│ │ │ │ │ ├── MonitorNuGetProcessExitResponseTests.cs
│ │ │ │ │ ├── PrefetchPackageRequestTests.cs
│ │ │ │ │ ├── PrefetchPackageResponseTests.cs
│ │ │ │ │ ├── ProgressTests.cs
│ │ │ │ │ ├── SetCredentialsRequestTests.cs
│ │ │ │ │ ├── SetCredentialsResponseTests.cs
│ │ │ │ │ ├── SetLogLevelRequestTests.cs
│ │ │ │ │ └── SetLogLevelResponseTests.cs
│ │ │ │ ├── NoOpDisposePluginTests.cs
│ │ │ │ ├── OutboundRequestContextTests.cs
│ │ │ │ ├── PluginCacheEntryTests.cs
│ │ │ │ ├── PluginCreationResultTests.cs
│ │ │ │ ├── PluginDiscovererTests.cs
│ │ │ │ ├── PluginDiscoveryResultTests.cs
│ │ │ │ ├── PluginDiscoveryUtilityTest.cs
│ │ │ │ ├── PluginEventArgsTests.cs
│ │ │ │ ├── PluginFactoryTests.cs
│ │ │ │ ├── PluginFileTests.cs
│ │ │ │ ├── PluginFindPackageByIdResourceProviderTests.cs
│ │ │ │ ├── PluginFindPackageByIdResourceTests.cs
│ │ │ │ ├── PluginManagerTests.cs
│ │ │ │ ├── PluginMulticlientUtilitiesTests.cs
│ │ │ │ ├── PluginPackageDownloaderTests.cs
│ │ │ │ ├── PluginPackageReaderTests.cs
│ │ │ │ ├── PluginProcessTests.cs
│ │ │ │ ├── PluginResourceProviderTests.cs
│ │ │ │ ├── PluginResourceTests.cs
│ │ │ │ ├── PluginTests.cs
│ │ │ │ ├── ProtocolErrorEventArgsTests.cs
│ │ │ │ ├── RequestHandlers
│ │ │ │ │ ├── CloseRequestHandlerTests.cs
│ │ │ │ │ ├── GetCredentialsRequestHandlerTests.cs
│ │ │ │ │ ├── GetServiceIndexRequestHandlerTests.cs
│ │ │ │ │ ├── LogRequestHandlerTests.cs
│ │ │ │ │ ├── MonitorNuGetProcessExitRequestHandlerTests.cs
│ │ │ │ │ └── SymmetricHandshakeTests.cs
│ │ │ │ ├── RequestHandlersTests.cs
│ │ │ │ ├── RequestIdGeneratorTests.cs
│ │ │ │ ├── SenderTests.cs
│ │ │ │ ├── StandardInputReceiverTests.cs
│ │ │ │ ├── StandardOutputReceiverTests.cs
│ │ │ │ └── TimeoutUtilitiesTests.cs
│ │ │ ├── PowershellAutoCompleteResourceTests.cs
│ │ │ ├── PowershellJsonData.cs
│ │ │ ├── Providers
│ │ │ │ ├── MockServiceIndexResourceV3Provider.cs
│ │ │ │ ├── OwnerDetailsUriResourceV3ProviderTests.cs
│ │ │ │ ├── PackageDetailsUriResourceV3ProviderTests.cs
│ │ │ │ ├── ReadmeUriTemplateResourceProviderTests.cs
│ │ │ │ ├── ReportAbuseResourceV3ProviderTests.cs
│ │ │ │ ├── RepositorySignatureResourceProviderTests.cs
│ │ │ │ └── VulnerabilityInfoResourceV3ProviderTests.cs
│ │ │ ├── RawSearchResourceTests.cs
│ │ │ ├── ReadmeUriTemplateResourceTests.cs
│ │ │ ├── RegistrationResourceV3Tests.cs
│ │ │ ├── RemotePackageArchiveDownloaderTests.cs
│ │ │ ├── RemoteRepositories
│ │ │ │ ├── HttpFileSystemBasedFindPackageByIdResourceTests.cs
│ │ │ │ ├── RemoteV2FindPackageByIdResourceTests.cs
│ │ │ │ └── RemoteV3FindPackageByIdResourceTests.cs
│ │ │ ├── ReportAbuseResourceV3Tests.cs
│ │ │ ├── RepositoryTests.cs
│ │ │ ├── Resources
│ │ │ │ ├── OwnerDetailsUriTemplateResourceV3Tests.cs
│ │ │ │ ├── PackageUpdateResourceTests.cs
│ │ │ │ ├── RegistrationResourceV3ProviderTests.cs
│ │ │ │ ├── RepositorySignatureResourceTests.cs
│ │ │ │ └── VulnerabilityInfoResourceV3Tests.cs
│ │ │ ├── ServiceIndexResourceV3ProviderTests.cs
│ │ │ ├── ServiceIndexResourceV3Tests.cs
│ │ │ ├── ServiceTypesTests.cs
│ │ │ ├── SourceCacheContextTests.cs
│ │ │ ├── UserAgentStringBuilderTests.cs
│ │ │ ├── Utility
│ │ │ │ ├── AuthTypeFilteredCredentialTests.cs
│ │ │ │ ├── FindPackagesByIdNupkgDownloaderTests.cs
│ │ │ │ ├── GetDownloadResultUtilityTests.cs
│ │ │ │ ├── HttpHeaderUtilityTests.cs
│ │ │ │ ├── MetadataReferenceCacheTestUtility.cs
│ │ │ │ ├── MetadataReferenceCacheTests.cs
│ │ │ │ ├── OfflineFeedUtilityTests.cs
│ │ │ │ ├── PackageIdValidatorTests.cs
│ │ │ │ ├── TimeoutUtilityTests.cs
│ │ │ │ └── UsingSemaphore.cs
│ │ │ ├── V2FeedListResourceTests.cs
│ │ │ ├── V2FeedPackageInfoTests.cs
│ │ │ ├── V2FeedParserTests.cs
│ │ │ └── compiler
│ │ │ │ └── resources
│ │ │ │ ├── 500Error.xml
│ │ │ │ ├── 6DelistedEntries.xml
│ │ │ │ ├── AzureAutoComplete.json
│ │ │ │ ├── AzureSearch.xml
│ │ │ │ ├── AzureSearch100.xml
│ │ │ │ ├── AzureSearchNext100.xml
│ │ │ │ ├── CyclicDependency.xml
│ │ │ │ ├── CyclicDependencyPage1.xml
│ │ │ │ ├── CyclicDependencyPage2.xml
│ │ │ │ ├── DefaultClassLibrary.dll
│ │ │ │ ├── DotNetOpenAuth.Core.4.3.2.13293GetPackages.xml
│ │ │ │ ├── EmptySearchResponse.json
│ │ │ │ ├── EntityFrameworkSearch.json
│ │ │ │ ├── EntityFrameworkSearchWithStringTypes.json
│ │ │ │ ├── EntityFrameworkSearchWithoutOwner.json
│ │ │ │ ├── FindPackagesByIdWithDuplicateBesidesVersion.xml
│ │ │ │ ├── MetadataFF.xml
│ │ │ │ ├── MetadataFT.xml
│ │ │ │ ├── MetadataTF.xml
│ │ │ │ ├── MetadataTT.xml
│ │ │ │ ├── NewtonSearch30Entries.xml
│ │ │ │ ├── NewtonSearch3Entries.xml
│ │ │ │ ├── NexusFindPackagesById.xml
│ │ │ │ ├── NotFoundFindPackagesById.xml
│ │ │ │ ├── NuGetExeSearch.xml
│ │ │ │ ├── ODataServiceDocument.xml
│ │ │ │ ├── RavendbFindPackagesById.xml
│ │ │ │ ├── RavendbFindPackagesByIdPage1.xml
│ │ │ │ ├── RavendbFindPackagesByIdPage2.xml
│ │ │ │ ├── SearchOrderById.xml
│ │ │ │ ├── SearchV2WithDuplicateBesidesVersion.xml
│ │ │ │ ├── SearchV3WithDuplicateBesidesVersion.json
│ │ │ │ ├── V3Search.json
│ │ │ │ ├── WindowsAzureServiceBus-FindPackageById-Page1.xml
│ │ │ │ ├── WindowsAzureServiceBus-FindPackageById-Page2.xml
│ │ │ │ ├── WindowsAzureStorageFindPackagesById.xml
│ │ │ │ ├── WindowsAzureStorageGetPackages.xml
│ │ │ │ ├── WindowsAzureStorageSearchPackage17Entries.xml
│ │ │ │ ├── WindowsAzureStorageSearchPackage30Entries.xml
│ │ │ │ ├── Xunit.2.1.0-beta1-build2945GetPackages.xml
│ │ │ │ ├── XunitFindPackagesById.xml
│ │ │ │ └── XunitVersionAutoComplete.json
│ │ ├── NuGet.Resolver.Test
│ │ │ ├── NuGet.Resolver.Test.csproj
│ │ │ ├── ResolverData.cs
│ │ │ ├── ResolverInputSortTests.cs
│ │ │ ├── ResolverSortTests.cs
│ │ │ ├── ResolverTests.cs
│ │ │ └── ResolverUtilityTests.cs
│ │ ├── NuGet.Shared.Tests
│ │ │ ├── EqualityUtilityTests.cs
│ │ │ ├── HashCodeCombinerTests.cs
│ │ │ ├── NuGet.Shared.Tests.csproj
│ │ │ └── XmlUtilityTests.cs
│ │ └── NuGet.Versioning.Test
│ │ │ ├── ExampleComparers.cs
│ │ │ ├── ExceptionAssert.cs
│ │ │ ├── ExternalComparerTests.cs
│ │ │ ├── FloatingRangeTests.cs
│ │ │ ├── NuGet.Versioning.Test.csproj
│ │ │ ├── NuGetVersionTest.cs
│ │ │ ├── SemVer201SpecTests.cs
│ │ │ ├── SemanticVersionConverterTests.cs
│ │ │ ├── SemanticVersionTests.cs
│ │ │ ├── VersionComparerTests.cs
│ │ │ ├── VersionExtensionsTests.cs
│ │ │ ├── VersionFormatterTests.cs
│ │ │ ├── VersionParsingTests.cs
│ │ │ ├── VersionRangeComparerTests.cs
│ │ │ ├── VersionRangeFloatParsingTests.cs
│ │ │ ├── VersionRangeOperationTests.cs
│ │ │ └── VersionRangeTests.cs
│ ├── NuGet.Tests.Apex
│ │ ├── Directory.Build.props
│ │ ├── NuGet.Console.TestContract
│ │ │ ├── ApexTestConsole.cs
│ │ │ ├── NuGet.Console.TestContract.csproj
│ │ │ └── NuGetApexConsoleTestService.cs
│ │ ├── NuGet.OptProf
│ │ │ ├── Assets
│ │ │ │ └── PackageReferenceSdk
│ │ │ │ │ ├── Directory.Build.props
│ │ │ │ │ ├── Directory.Build.targets
│ │ │ │ │ ├── Directory.Packages.props
│ │ │ │ │ ├── PackageReferenceSdk.sln
│ │ │ │ │ ├── PackageReferenceSdk
│ │ │ │ │ ├── Class1.cs
│ │ │ │ │ └── PackageReferenceSdk.csproj
│ │ │ │ │ └── nuget.config
│ │ │ ├── NuGet.OptProf.csproj
│ │ │ ├── TestIVsPackageSourceProvider.cs
│ │ │ └── Tests.cs
│ │ ├── NuGet.PackageManagement.UI.TestContract
│ │ │ ├── ApexTestUIProject.cs
│ │ │ ├── NuGet.PackageManagement.UI.TestContract.csproj
│ │ │ └── NuGetApexUITestService.cs
│ │ ├── NuGet.Tests.Apex.Daily
│ │ │ ├── NetCoreProjectTestCase.cs
│ │ │ ├── NuGet.Tests.Apex.Daily.csproj
│ │ │ ├── NuGetConsoleTestCase.cs
│ │ │ └── NuGetUITestCase.cs
│ │ ├── NuGet.Tests.Apex
│ │ │ ├── Apex
│ │ │ │ ├── ApexBaseTestClass.cs
│ │ │ │ ├── ApexTestContext.cs
│ │ │ │ ├── NuGetApexTestService.cs
│ │ │ │ ├── NuGetBaseTestExtension.cs
│ │ │ │ ├── NuGetConsoleTestExtension.cs
│ │ │ │ ├── NuGetConsoleTestExtensionVerifier.cs
│ │ │ │ ├── NuGetTestOperationConfiguration.cs
│ │ │ │ ├── NuGetTypeConstraint.cs
│ │ │ │ ├── NuGetUIProjectTestExtension.cs
│ │ │ │ ├── NuGetUIProjectTestExtensionVerifier.cs
│ │ │ │ └── SharedVisualStudioHostTestClass.cs
│ │ │ ├── Fixtures
│ │ │ │ ├── ApexTestRequirementsFixture.cs
│ │ │ │ ├── IVisualStudioHostFixtureFactory.cs
│ │ │ │ ├── SignedPackagesTestsApexFixture.cs
│ │ │ │ ├── VisualStudioHostFixture.cs
│ │ │ │ ├── VisualStudioHostFixtureFactory.cs
│ │ │ │ └── VisualStudioOperationsFixture.cs
│ │ │ ├── NuGet.Tests.Apex.csproj
│ │ │ ├── NuGetEndToEndTests
│ │ │ │ ├── IVsServicesTestCase.cs
│ │ │ │ ├── NetCoreProjectTestCase.cs
│ │ │ │ ├── NuGetAuditTests.cs
│ │ │ │ ├── NuGetConsoleTestCase.cs
│ │ │ │ └── NuGetUITestCase.cs
│ │ │ ├── NuGetPackageSigningTests
│ │ │ │ ├── AuthorSignedPackageTestCase.cs
│ │ │ │ ├── RepositoryCountersignedPackageTestCase.cs
│ │ │ │ └── RepositorySignedPackageTestCase.cs
│ │ │ ├── Utility
│ │ │ │ ├── CommonUtility.cs
│ │ │ │ └── SigningUtility.cs
│ │ │ └── VisualStudioHostExtension.cs
│ │ ├── README.md
│ │ ├── debugging-apex-test.png
│ │ └── running-apex-test.png
│ ├── TestExtensions
│ │ ├── API.Test
│ │ │ ├── API.Test.csproj
│ │ │ ├── Cmdlets
│ │ │ │ ├── GetInstalledPackageCommand.cs
│ │ │ │ ├── InvokeShellCommand.cs
│ │ │ │ ├── TestExtensionCmdlet.cs
│ │ │ │ ├── TestInstalledPackageCommand.cs
│ │ │ │ └── TestProjectCommand.cs
│ │ │ ├── InternalAPITestHook.cs
│ │ │ ├── ServiceLocator.cs
│ │ │ ├── Utils.cs
│ │ │ ├── VSHelper.cs
│ │ │ ├── VSProjectHelper.cs
│ │ │ └── VSSolutionHelper.cs
│ │ ├── Directory.Build.props
│ │ ├── GenerateLicenseList
│ │ │ ├── GenerateLicenseList.csproj
│ │ │ ├── LicenseDataCodeGenerator.cs
│ │ │ ├── LicenseDataParser.cs
│ │ │ └── Program.cs
│ │ ├── GenerateTestPackages
│ │ │ ├── AssemblySourceFileGenerator.cs
│ │ │ ├── AssemblySourceFileGenerator.tt
│ │ │ ├── AssemblySourceFileGenerator_Partial.cs
│ │ │ ├── GenerateTestPackages.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Test.dgml
│ │ │ ├── TestPackageKey.snk
│ │ │ └── ToolTestKey.snk
│ │ ├── SampleCommandLineExtensions
│ │ │ ├── GreetCommand.cs
│ │ │ ├── HelloCommand.cs
│ │ │ └── SampleCommandLineExtensions.csproj
│ │ ├── TestablePlugin
│ │ │ ├── Arguments.cs
│ │ │ ├── Program.cs
│ │ │ ├── Response.cs
│ │ │ ├── ResponseReceiver.cs
│ │ │ ├── TestablePlugin.cs
│ │ │ ├── TestablePlugin.csproj
│ │ │ └── ThrowException.cs
│ │ └── TestablePluginCredentialProvider
│ │ │ ├── Program.cs
│ │ │ ├── TestCredentialResponse.cs
│ │ │ └── TestableCredentialProvider.csproj
│ └── TestUtilities
│ │ ├── CreateEndToEndTestPackage
│ │ └── CreateEndToEndTestPackage.proj
│ │ ├── Microsoft.Internal.NuGet.Testing.SignedPackages
│ │ ├── Asn1
│ │ │ ├── Accuracy.cs
│ │ │ ├── AlgorithmIdentifier.cs
│ │ │ ├── Asn1Tags.cs
│ │ │ ├── BasicOcspResponse.cs
│ │ │ ├── CertId.cs
│ │ │ ├── CertStatus.cs
│ │ │ ├── DirectoryString.cs
│ │ │ ├── EdiPartyName.cs
│ │ │ ├── EssCertId.cs
│ │ │ ├── EssCertIdV2.cs
│ │ │ ├── GeneralName.cs
│ │ │ ├── InvalidAsn1Exception.cs
│ │ │ ├── IssuerSerial.cs
│ │ │ ├── MessageImprint.cs
│ │ │ ├── OcspRequest.cs
│ │ │ ├── OcspResponse.cs
│ │ │ ├── OcspResponseStatus.cs
│ │ │ ├── OcspSignature.cs
│ │ │ ├── OtherName.cs
│ │ │ ├── PkiFailureInfo.cs
│ │ │ ├── PkiStatus.cs
│ │ │ ├── PkiStatusInfo.cs
│ │ │ ├── PolicyInformation.cs
│ │ │ ├── PolicyQualifierInfo.cs
│ │ │ ├── Request.cs
│ │ │ ├── ResponderId.cs
│ │ │ ├── ResponseBytes.cs
│ │ │ ├── ResponseData.cs
│ │ │ ├── RevokedInfo.cs
│ │ │ ├── SigningCertificate.cs
│ │ │ ├── SigningCertificateV2.cs
│ │ │ ├── SingleResponse.cs
│ │ │ ├── TbsRequest.cs
│ │ │ ├── TestSignedCms.cs
│ │ │ ├── TestSignerInfo.cs
│ │ │ ├── TimeStampReq.cs
│ │ │ ├── TimeStampResp.cs
│ │ │ ├── TstInfo.cs
│ │ │ └── X509ExtensionAsn.xml.cs
│ │ ├── CertificateAuthority.cs
│ │ ├── CertificateRevocationList.cs
│ │ ├── CertificateRevocationListBuilder.Build.cs
│ │ ├── CertificateRevocationListBuilder.CdpExtension.cs
│ │ ├── CertificateRevocationListBuilder.Load.cs
│ │ ├── CertificateRevocationListBuilder.cs
│ │ ├── CertificateStoreUtilities.cs
│ │ ├── CertificateUtilities.cs
│ │ ├── ChainCertificateRequest.cs
│ │ ├── ChildProcess
│ │ │ ├── CommandRunner.cs
│ │ │ ├── CommandRunnerResult.cs
│ │ │ └── RetryRunner.cs
│ │ ├── CodeSigningRootX509Store.cs
│ │ ├── DerGeneralizedTimeUtility.cs
│ │ ├── DisposableList.cs
│ │ ├── ErrorConstants.cs
│ │ ├── HexConverter.cs
│ │ ├── HttpResponder.cs
│ │ ├── IHttpResonder.cs
│ │ ├── IRootX509Store.cs
│ │ ├── ISigningTestServer.cs
│ │ ├── IX509Store.cs
│ │ ├── IX509StoreCertificate.cs
│ │ ├── IssueCertificateOptions.cs
│ │ ├── Microsoft.Internal.NuGet.Testing.SignedPackages.csproj
│ │ ├── Microsoft.Internal.NuGet.Testing.SignedPackages.sln
│ │ ├── OcspResponder.cs
│ │ ├── OcspResponderOptions.cs
│ │ ├── PlatformX509Store.cs
│ │ ├── README.md
│ │ ├── ResourceTestUtility.cs
│ │ ├── RevocationReason.cs
│ │ ├── SignatureTestUtility.cs
│ │ ├── SigningCertificateUsage.cs
│ │ ├── SigningTestServer.cs
│ │ ├── SigningTestUtility.cs
│ │ ├── SystemToolException.cs
│ │ ├── TestCertificate.cs
│ │ ├── TestCertificateGenerator.cs
│ │ ├── TestFallbackCertificateBundleX509ChainFactories.cs
│ │ ├── TestFallbackCertificateBundleX509ChainFactory.cs
│ │ ├── TestOids.cs
│ │ ├── TestRepositoryCertificateInfo.cs
│ │ ├── TestServer
│ │ │ └── PortReserver.cs
│ │ ├── TimestampService.cs
│ │ ├── TimestampServiceOptions.cs
│ │ ├── TimestampingRootX509Store.cs
│ │ ├── TrustedTestCert.cs
│ │ ├── TrustedTestCertificateChain.cs
│ │ ├── X509AuthorityInformationAccessExtension.cs
│ │ ├── X509AuthorityKeyIdentifierExtension.cs
│ │ ├── X509CertificateExtensions.cs
│ │ ├── X509CertificateWithKeyInfo.cs
│ │ ├── X509RevocationReason.cs
│ │ ├── X509StorePurpose.cs
│ │ ├── X509StoreUtilities.cs
│ │ ├── X509TrustTestFixture.cs
│ │ └── compiler
│ │ │ └── resources
│ │ │ ├── .signature.p7s
│ │ │ ├── CentralDirectoryHeaderWithZip64ExtraField.zip
│ │ │ ├── EmptyZip64.zip
│ │ │ ├── LocalFileHeaderWithZip64ExtraField.zip
│ │ │ ├── SignatureFileEntry.zip
│ │ │ ├── SignatureFileWithDeflateCompressionMethodAndDefaultCompressionLevel.zip
│ │ │ ├── SignatureFileWithFakeContent.zip
│ │ │ ├── SignatureFileWithUppercaseFileName.zip
│ │ │ ├── SignedPackage.1.0.0.nupkg
│ │ │ ├── Test.RepoCountersigned.1.0.0.nupkg
│ │ │ ├── Test.Reposigned.1.0.0.nupkg
│ │ │ ├── TestPackage.AuthorSigned.1.0.0.nupkg
│ │ │ ├── codesignctl.pem
│ │ │ ├── intermediate.crt
│ │ │ ├── leaf.crt
│ │ │ ├── project1.csproj
│ │ │ ├── project2.csproj
│ │ │ ├── root.crt
│ │ │ ├── runtime.json
│ │ │ └── timestampctl.pem
│ │ ├── Test.Utility
│ │ ├── AssemblyReader.cs
│ │ ├── CentralPackageVersionsManagementFile.cs
│ │ ├── Commands
│ │ │ ├── PackageReferenceSpecBuilder.cs
│ │ │ ├── PackageSpecOperationsUtility.cs
│ │ │ ├── ProjectTestHelpers.cs
│ │ │ └── TestRestoreRequest.cs
│ │ ├── DebuggerUtils.cs
│ │ ├── DefaultConfigurationFilePreserver.cs
│ │ ├── DependencyResolver
│ │ │ ├── DependencyProvider.cs
│ │ │ └── TestRestoreWalkContext.cs
│ │ ├── ExceptionUtility.cs
│ │ ├── FileSystemBackedV3MockServer.cs
│ │ ├── GlobalFolderUtility.cs
│ │ ├── HttpRetryTestHandler.cs
│ │ ├── JsonData.cs
│ │ ├── MockResponses
│ │ │ ├── FeedUtilities.cs
│ │ │ ├── MockResponse.cs
│ │ │ └── MockResponseBuilder.cs
│ │ ├── MockServer.cs
│ │ ├── MockSettingSection.cs
│ │ ├── MockSettings.cs
│ │ ├── NuspecBuilder.cs
│ │ ├── PackageManagement
│ │ │ └── TestDeleteOnRestartManager.cs
│ │ ├── PackageSourceMappingUtility.cs
│ │ ├── PlatformXunitAttributes
│ │ │ ├── CIOnlyFactAttribute.cs
│ │ │ ├── CIOnlyTheoryAttribute.cs
│ │ │ ├── FileExistsFactAttribute.cs
│ │ │ ├── FileExistsInNuGetRoamingFactAttribute.cs
│ │ │ ├── FileExistsInNuGetRoamingTheoryAttribute.cs
│ │ │ ├── FileExistsTheoryAttribute.cs
│ │ │ ├── LocalOnlyFactAttribute.cs
│ │ │ ├── LocalOnlyTheoryAttribute.cs
│ │ │ ├── PackageSourceTheoryAttribute.cs
│ │ │ ├── Platform.cs
│ │ │ ├── PlatformFactAttribute.cs
│ │ │ ├── PlatformTheoryAttribute.cs
│ │ │ ├── UseCultureAttribute.cs
│ │ │ └── XunitAttributeUtility.cs
│ │ ├── ProjectManagement
│ │ │ ├── DependencyGraphSpecTestUtilities.cs
│ │ │ ├── TestMSBuildNuGetProjectSystem.cs
│ │ │ ├── TestNuGetProjectContext.cs
│ │ │ └── TestSolutionManager.cs
│ │ ├── Protocol
│ │ │ ├── LocalPackageSearchMetadataFixture.cs
│ │ │ ├── StaticHttpHandler.cs
│ │ │ ├── StaticHttpSource.cs
│ │ │ ├── TestContent.cs
│ │ │ ├── TestHttpHandler.cs
│ │ │ ├── TestHttpHandlerProvider.cs
│ │ │ ├── TestHttpSource.cs
│ │ │ ├── TestHttpSourceProvider.cs
│ │ │ ├── TestMessageHandler.cs
│ │ │ ├── TestSourceCacheContext.cs
│ │ │ └── V3PackageSearchMetadataFixture.cs
│ │ ├── ProtocolUtility.cs
│ │ ├── README.md
│ │ ├── ReadTimeoutHonoringSlowStream.cs
│ │ ├── SelfSignedCertificateMockServer.cs
│ │ ├── SelfSignedHttpsServerWithHttpResources.cs
│ │ ├── Signing
│ │ │ └── SignedArchiveTestUtility.cs
│ │ ├── SimpleTestSetup
│ │ │ ├── ProjectFileUtils.cs
│ │ │ ├── SimpleTestPackageContext.cs
│ │ │ ├── SimpleTestPackageUtility.cs
│ │ │ ├── SimpleTestPathContext.cs
│ │ │ ├── SimpleTestProjectContext.cs
│ │ │ ├── SimpleTestProjectFrameworkContext.cs
│ │ │ ├── SimpleTestSettingsContext.cs
│ │ │ └── SimpleTestSolutionContext.cs
│ │ ├── SlowStream.cs
│ │ ├── SourceRepository
│ │ │ └── TestSourceRepositoryUtility.cs
│ │ ├── StreamExtensions.cs
│ │ ├── TargetsUtility.cs
│ │ ├── Telemetry
│ │ │ └── TelemetryUtility.cs
│ │ ├── Test.Utility.csproj
│ │ ├── TestDirectory.cs
│ │ ├── TestDirectoryBuilder.cs
│ │ ├── TestDotnetCLiUtility.cs
│ │ ├── TestEnvironmentVariableReader.cs
│ │ ├── TestFileSystemUtility.cs
│ │ ├── TestLogger.cs
│ │ ├── TestPackageInfo.cs
│ │ ├── TestPackageSpecFactory.cs
│ │ ├── TestPackages.cs
│ │ ├── TestPackagesCore.cs
│ │ ├── TestServer
│ │ │ ├── ITestServer.cs
│ │ │ ├── NotListeningServer.cs
│ │ │ ├── PortReserverOfMockServer.cs
│ │ │ ├── TcpListenerServer.cs
│ │ │ └── UnknownDnsServer.cs
│ │ ├── TestSources.cs
│ │ ├── XunitLogger.cs
│ │ └── ZipExtensions.cs
│ │ └── VisualStudio.Test.Utility
│ │ ├── TestCpsPackageReferenceProject.cs
│ │ ├── TestExternalProjectReference.cs
│ │ ├── TestProjectSystemServices.cs
│ │ ├── TestProjectThreadingService.cs
│ │ ├── Threading
│ │ ├── DispatcherThread.cs
│ │ └── DispatcherThreadFixture.cs
│ │ ├── VisualStudio.Test.Utility.csproj
│ │ └── VisualStudio
│ │ ├── NuGetExperimentationServiceUtility.cs
│ │ └── OutputConsoleUtility.cs
│ └── tools-local
│ ├── doc.tasks
│ ├── GenerateMarkdownDoc.cs
│ └── doc.tasks.csproj
│ ├── ensure-nupkg-dependencies-on-source
│ ├── NuGetFeed.cs
│ ├── PackageInfo.cs
│ ├── Program.cs
│ └── ensure-nupkg-dependencies-on-source.csproj
│ └── ship-public-apis
│ ├── Program.cs
│ ├── PublicAPIAnalyzerLineComparer.cs
│ └── ship-public-apis.csproj
├── global.json
├── src
├── BuildPackageRestore
│ └── BuildPackageRestore.csproj
├── DepsVersions.props
├── Directory.Build.props
├── Dn
│ ├── BuildArguments.cs
│ ├── BuildCommand.cs
│ ├── CommandLine
│ │ ├── Argument.cs
│ │ ├── ArgumentCommand.cs
│ │ ├── ArgumentCommand_1.cs
│ │ ├── ArgumentLexer.cs
│ │ ├── ArgumentList_1.cs
│ │ ├── ArgumentParser.cs
│ │ ├── ArgumentSyntax.cs
│ │ ├── ArgumentSyntaxException.cs
│ │ ├── ArgumentSyntax_Definers.cs
│ │ ├── ArgumentToken.cs
│ │ ├── Argument_1.cs
│ │ ├── CommandLineException.cs
│ │ ├── CommandLineHelpers.cs
│ │ ├── HelpTextGenerator.cs
│ │ ├── Strings.cs
│ │ └── Strings.resx
│ ├── Dn.csproj
│ ├── DnEnv.cs
│ ├── GenerateRuntimeConfigFiles.cs
│ ├── MockEngine.cs
│ ├── PackageSpecAdapter.cs
│ ├── RestoreCommand.cs
│ └── VersionInfo.cs
├── DnExe
│ ├── DnExe.csproj
│ └── Program.cs
└── MiniBuild
│ ├── MiniBuild.csproj
│ ├── ProjectContext.cs
│ └── ProjectParser.cs
├── tests
├── DnTests
│ ├── DnTests.csproj
│ ├── ExecTests.cs
│ ├── ParseProjectTests.cs
│ ├── ResolvedProjectTests.cs
│ ├── TempDirectory.cs
│ └── TestWriter.cs
├── test_baselines
│ ├── MakeBaselines
│ │ ├── MakeBaselines.csproj
│ │ └── Program.cs
│ ├── test_baselines.json
│ ├── test_baselines.sln
│ └── test_projects
│ │ ├── Directory.Build.props
│ │ └── HelloWorld
│ │ ├── HelloWorld.csproj
│ │ └── Program.cs
└── test_restore
│ ├── Program.cs
│ └── TestRestore.csproj
└── tools
└── FixupRoslyn
├── FixupRoslyn.csproj
└── Program.cs
/.github/workflows/ci.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/.github/workflows/ci.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/.gitignore
--------------------------------------------------------------------------------
/Directory.Build.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/Directory.Build.props
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/LICENSE
--------------------------------------------------------------------------------
/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/Makefile
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/README.md
--------------------------------------------------------------------------------
/dn.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/dn.sln
--------------------------------------------------------------------------------
/docs/ARCHITECTURE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/docs/ARCHITECTURE.md
--------------------------------------------------------------------------------
/docs/NUGET_RESTORE_RESEARCH.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/docs/NUGET_RESTORE_RESEARCH.md
--------------------------------------------------------------------------------
/docs/RESTORE_PROGRESS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/docs/RESTORE_PROGRESS.md
--------------------------------------------------------------------------------
/external/nuget.client/.azuredevops/policies/branchClassification.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.azuredevops/policies/branchClassification.yml
--------------------------------------------------------------------------------
/external/nuget.client/.config/CredScanSuppressions.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.config/CredScanSuppressions.json
--------------------------------------------------------------------------------
/external/nuget.client/.config/TSAOptions.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.config/TSAOptions.json
--------------------------------------------------------------------------------
/external/nuget.client/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.editorconfig
--------------------------------------------------------------------------------
/external/nuget.client/.gdn/.gdnsuppress:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.gdn/.gdnsuppress
--------------------------------------------------------------------------------
/external/nuget.client/.git-blame-ignore-revs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.git-blame-ignore-revs
--------------------------------------------------------------------------------
/external/nuget.client/.gitattributes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.gitattributes
--------------------------------------------------------------------------------
/external/nuget.client/.github/CODEOWNERS:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.github/CODEOWNERS
--------------------------------------------------------------------------------
/external/nuget.client/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.github/PULL_REQUEST_TEMPLATE.md
--------------------------------------------------------------------------------
/external/nuget.client/.github/copilot-instructions.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.github/copilot-instructions.md
--------------------------------------------------------------------------------
/external/nuget.client/.github/policies/breaking-changes.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.github/policies/breaking-changes.yml
--------------------------------------------------------------------------------
/external/nuget.client/.github/policies/ci-changes.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.github/policies/ci-changes.yml
--------------------------------------------------------------------------------
/external/nuget.client/.github/policies/community.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.github/policies/community.yml
--------------------------------------------------------------------------------
/external/nuget.client/.github/policies/compliance-reminders.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.github/policies/compliance-reminders.yml
--------------------------------------------------------------------------------
/external/nuget.client/.github/policies/stalebot.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.github/policies/stalebot.yml
--------------------------------------------------------------------------------
/external/nuget.client/.github/workflows/backport.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.github/workflows/backport.yml
--------------------------------------------------------------------------------
/external/nuget.client/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.gitignore
--------------------------------------------------------------------------------
/external/nuget.client/.gitmodules:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/.vsconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/.vsconfig
--------------------------------------------------------------------------------
/external/nuget.client/CODE-OF-CONDUCT.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/CODE-OF-CONDUCT.md
--------------------------------------------------------------------------------
/external/nuget.client/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/CONTRIBUTING.md
--------------------------------------------------------------------------------
/external/nuget.client/Directory.Build.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/Directory.Build.props
--------------------------------------------------------------------------------
/external/nuget.client/Directory.Build.rsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/Directory.Build.rsp
--------------------------------------------------------------------------------
/external/nuget.client/Directory.Build.targets:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/Directory.Build.targets
--------------------------------------------------------------------------------
/external/nuget.client/Directory.Packages.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/Directory.Packages.props
--------------------------------------------------------------------------------
/external/nuget.client/Directory.Solution.targets:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/Directory.Solution.targets
--------------------------------------------------------------------------------
/external/nuget.client/LICENSE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/LICENSE.txt
--------------------------------------------------------------------------------
/external/nuget.client/NuGet-Commandline-WithTests.slnf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/NuGet-Commandline-WithTests.slnf
--------------------------------------------------------------------------------
/external/nuget.client/NuGet-Src-Commandline.slnf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/NuGet-Src-Commandline.slnf
--------------------------------------------------------------------------------
/external/nuget.client/NuGet-Src.slnf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/NuGet-Src.slnf
--------------------------------------------------------------------------------
/external/nuget.client/NuGet-UnitTests.slnf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/NuGet-UnitTests.slnf
--------------------------------------------------------------------------------
/external/nuget.client/NuGet-VS.slnf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/NuGet-VS.slnf
--------------------------------------------------------------------------------
/external/nuget.client/NuGet.Config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/NuGet.Config
--------------------------------------------------------------------------------
/external/nuget.client/NuGet.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/NuGet.sln
--------------------------------------------------------------------------------
/external/nuget.client/NuGet.vssettings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/NuGet.vssettings
--------------------------------------------------------------------------------
/external/nuget.client/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/README.md
--------------------------------------------------------------------------------
/external/nuget.client/SECURITY.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/SECURITY.md
--------------------------------------------------------------------------------
/external/nuget.client/build.cmd:
--------------------------------------------------------------------------------
1 | @echo off
2 | powershell.exe -NoProfile -ExecutionPolicy RemoteSigned -Command "%~dpn0.ps1" %*
3 |
--------------------------------------------------------------------------------
/external/nuget.client/build.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build.ps1
--------------------------------------------------------------------------------
/external/nuget.client/build.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build.sh
--------------------------------------------------------------------------------
/external/nuget.client/build/BannedSymbols.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/BannedSymbols.txt
--------------------------------------------------------------------------------
/external/nuget.client/build/BuildValidator.proj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/BuildValidator.proj
--------------------------------------------------------------------------------
/external/nuget.client/build/DotNetSdkTestVersions.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/DotNetSdkTestVersions.txt
--------------------------------------------------------------------------------
/external/nuget.client/build/DotNetSdkVersions.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/DotNetSdkVersions.txt
--------------------------------------------------------------------------------
/external/nuget.client/build/NOTICES.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/NOTICES.txt
--------------------------------------------------------------------------------
/external/nuget.client/build/OptProfV2.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/OptProfV2.props
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/DeconstructionExtensions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/DeconstructionExtensions.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/DynamicallyAccessedMemberTypes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/DynamicallyAccessedMemberTypes.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/DynamicallyAccessedMembersAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/DynamicallyAccessedMembersAttribute.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/EncodingUtility.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/EncodingUtility.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/EqualityUtility.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/EqualityUtility.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/HashCodeCombiner.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/HashCodeCombiner.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/IsExternalInit.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/IsExternalInit.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/NoAllocEnumerateExtensions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/NoAllocEnumerateExtensions.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/NullableAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/NullableAttributes.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/RequiredModifierAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/RequiredModifierAttributes.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/RequiresDynamicCodeAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/RequiresDynamicCodeAttribute.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/RequiresUnreferencedCodeAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/RequiresUnreferencedCodeAttribute.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/SharedExtensions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/SharedExtensions.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/SimplePool.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/SimplePool.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/StringBuilderPool.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/StringBuilderPool.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/TaskResult.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/TaskResult.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/TaskResultCache.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/TaskResultCache.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/Utf8JsonReaderExtensions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/Utf8JsonReaderExtensions.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/Utf8JsonStreamReader.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/Utf8JsonStreamReader.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/Utf8JsonStreamReaderConverter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/Utf8JsonStreamReaderConverter.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/Shared/XmlUtility.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/Shared/XmlUtility.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/TestShared/CommonAssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/TestShared/CommonAssemblyInfo.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/TestShared/IsExternalInit.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/TestShared/IsExternalInit.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/TestShared/RequiredModifierAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/TestShared/RequiredModifierAttributes.cs
--------------------------------------------------------------------------------
/external/nuget.client/build/UpdateNuGetModuleManifest.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/UpdateNuGetModuleManifest.ps1
--------------------------------------------------------------------------------
/external/nuget.client/build/build.proj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/build.proj
--------------------------------------------------------------------------------
/external/nuget.client/build/common.project.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/common.project.props
--------------------------------------------------------------------------------
/external/nuget.client/build/common.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/common.props
--------------------------------------------------------------------------------
/external/nuget.client/build/common.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/common.ps1
--------------------------------------------------------------------------------
/external/nuget.client/build/common.targets:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/common.targets
--------------------------------------------------------------------------------
/external/nuget.client/build/config.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/config.props
--------------------------------------------------------------------------------
/external/nuget.client/build/docs.proj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/docs.proj
--------------------------------------------------------------------------------
/external/nuget.client/build/ignorecodesign.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/ignorecodesign.csv
--------------------------------------------------------------------------------
/external/nuget.client/build/publish.proj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/publish.proj
--------------------------------------------------------------------------------
/external/nuget.client/build/restorehelper.targets:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/restorehelper.targets
--------------------------------------------------------------------------------
/external/nuget.client/build/runsettings.proj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/runsettings.proj
--------------------------------------------------------------------------------
/external/nuget.client/build/sign.proj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/sign.proj
--------------------------------------------------------------------------------
/external/nuget.client/build/sign.targets:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/sign.targets
--------------------------------------------------------------------------------
/external/nuget.client/build/symbols.proj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/symbols.proj
--------------------------------------------------------------------------------
/external/nuget.client/build/template.runsettingsproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/template.runsettingsproj
--------------------------------------------------------------------------------
/external/nuget.client/build/test.targets:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/test.targets
--------------------------------------------------------------------------------
/external/nuget.client/build/tests.optprof.vsconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/tests.optprof.vsconfig
--------------------------------------------------------------------------------
/external/nuget.client/build/tests.vsconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/tests.vsconfig
--------------------------------------------------------------------------------
/external/nuget.client/build/xunit.runsettings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/build/xunit.runsettings
--------------------------------------------------------------------------------
/external/nuget.client/configure.cmd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/configure.cmd
--------------------------------------------------------------------------------
/external/nuget.client/configure.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/configure.ps1
--------------------------------------------------------------------------------
/external/nuget.client/configure.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/configure.sh
--------------------------------------------------------------------------------
/external/nuget.client/docs/coding-guidelines.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/coding-guidelines.md
--------------------------------------------------------------------------------
/external/nuget.client/docs/cross-platform-debugging.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/cross-platform-debugging.md
--------------------------------------------------------------------------------
/external/nuget.client/docs/debugging.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/debugging.md
--------------------------------------------------------------------------------
/external/nuget.client/docs/design-review-guide.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/design-review-guide.md
--------------------------------------------------------------------------------
/external/nuget.client/docs/feature-guide.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/feature-guide.md
--------------------------------------------------------------------------------
/external/nuget.client/docs/images/bad-commit-message.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/images/bad-commit-message.png
--------------------------------------------------------------------------------
/external/nuget.client/docs/images/enable-child-process-debugging.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/images/enable-child-process-debugging.png
--------------------------------------------------------------------------------
/external/nuget.client/docs/images/enable-mixed-mode-debugging.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/images/enable-mixed-mode-debugging.png
--------------------------------------------------------------------------------
/external/nuget.client/docs/images/good-commit-message-expanded.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/images/good-commit-message-expanded.png
--------------------------------------------------------------------------------
/external/nuget.client/docs/images/good-commit-message.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/images/good-commit-message.png
--------------------------------------------------------------------------------
/external/nuget.client/docs/images/project-tfm-selection.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/images/project-tfm-selection.png
--------------------------------------------------------------------------------
/external/nuget.client/docs/images/release-branch-commit-message.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/images/release-branch-commit-message.png
--------------------------------------------------------------------------------
/external/nuget.client/docs/images/vs-debugger-processes-list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/images/vs-debugger-processes-list.png
--------------------------------------------------------------------------------
/external/nuget.client/docs/localizability.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/localizability.md
--------------------------------------------------------------------------------
/external/nuget.client/docs/nuget-project-types.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/nuget-project-types.md
--------------------------------------------------------------------------------
/external/nuget.client/docs/nuget-sdk.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/nuget-sdk.md
--------------------------------------------------------------------------------
/external/nuget.client/docs/plugin-logging.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/plugin-logging.md
--------------------------------------------------------------------------------
/external/nuget.client/docs/project-overview.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/project-overview.md
--------------------------------------------------------------------------------
/external/nuget.client/docs/ui-guidelines.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/ui-guidelines.md
--------------------------------------------------------------------------------
/external/nuget.client/docs/updating-packages.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/updating-packages.md
--------------------------------------------------------------------------------
/external/nuget.client/docs/updating-target-frameworks.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/updating-target-frameworks.md
--------------------------------------------------------------------------------
/external/nuget.client/docs/workflow.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/docs/workflow.md
--------------------------------------------------------------------------------
/external/nuget.client/eng/Publishing.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/Publishing.props
--------------------------------------------------------------------------------
/external/nuget.client/eng/Version.Details.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/Version.Details.props
--------------------------------------------------------------------------------
/external/nuget.client/eng/Version.Details.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/Version.Details.xml
--------------------------------------------------------------------------------
/external/nuget.client/eng/Versions.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/Versions.props
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/CIBuild.cmd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/CIBuild.cmd
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/PSScriptAnalyzerSettings.psd1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/PSScriptAnalyzerSettings.psd1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/README.md
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/SetupNugetSources.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/SetupNugetSources.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/SetupNugetSources.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/SetupNugetSources.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/build.cmd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/build.cmd
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/build.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/build.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/build.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/build.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/cibuild.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/cibuild.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/core-templates/job/job.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/core-templates/job/job.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/core-templates/job/onelocbuild.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/core-templates/job/onelocbuild.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/core-templates/job/source-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/core-templates/job/source-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/core-templates/jobs/codeql-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/core-templates/jobs/codeql-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/core-templates/jobs/jobs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/core-templates/jobs/jobs.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/core-templates/jobs/source-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/core-templates/jobs/source-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/core-templates/post-build/post-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/core-templates/post-build/post-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/core-templates/steps/generate-sbom.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/core-templates/steps/generate-sbom.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/core-templates/steps/publish-logs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/core-templates/steps/publish-logs.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/core-templates/steps/retain-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/core-templates/steps/retain-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/core-templates/steps/send-to-helix.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/core-templates/steps/send-to-helix.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/core-templates/steps/source-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/core-templates/steps/source-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/cross/arm/tizen/tizen.patch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/cross/arm/tizen/tizen.patch
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/cross/arm64/tizen/tizen.patch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/cross/arm64/tizen/tizen.patch
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/cross/armel/tizen/tizen.patch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/cross/armel/tizen/tizen.patch
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/cross/build-android-rootfs.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/cross/build-android-rootfs.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/cross/build-rootfs.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/cross/build-rootfs.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/cross/install-debs.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/cross/install-debs.py
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/cross/riscv64/tizen/tizen.patch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/cross/riscv64/tizen/tizen.patch
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/cross/tizen-build-rootfs.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/cross/tizen-build-rootfs.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/cross/tizen-fetch.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/cross/tizen-fetch.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/cross/toolchain.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/cross/toolchain.cmake
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/cross/x86/tizen/tizen.patch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/cross/x86/tizen/tizen.patch
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/darc-init.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/darc-init.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/darc-init.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/darc-init.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/dotnet-install.cmd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/dotnet-install.cmd
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/dotnet-install.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/dotnet-install.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/dotnet-install.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/dotnet-install.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/dotnet.cmd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/dotnet.cmd
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/dotnet.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/dotnet.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/dotnet.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/dotnet.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/enable-cross-org-publishing.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/enable-cross-org-publishing.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/generate-locproject.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/generate-locproject.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/generate-sbom-prep.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/generate-sbom-prep.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/generate-sbom-prep.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/generate-sbom-prep.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/helixpublish.proj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/helixpublish.proj
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/init-tools-native.cmd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/init-tools-native.cmd
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/init-tools-native.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/init-tools-native.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/init-tools-native.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/init-tools-native.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/internal-feed-operations.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/internal-feed-operations.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/internal-feed-operations.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/internal-feed-operations.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/internal/Directory.Build.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/internal/Directory.Build.props
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/internal/NuGet.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/internal/NuGet.config
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/internal/Tools.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/internal/Tools.csproj
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/loc/P22DotNetHtmlLocalization.lss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/loc/P22DotNetHtmlLocalization.lss
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/msbuild.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/msbuild.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/msbuild.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/msbuild.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/native/CommonLibrary.psm1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/native/CommonLibrary.psm1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/native/common-library.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/native/common-library.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/native/init-compiler.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/native/init-compiler.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/native/init-distro-rid.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/native/init-distro-rid.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/native/init-os-and-arch.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/native/init-os-and-arch.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/native/install-cmake-test.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/native/install-cmake-test.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/native/install-cmake.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/native/install-cmake.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/native/install-dependencies.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/native/install-dependencies.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/native/install-tool.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/native/install-tool.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/pipeline-logging-functions.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/pipeline-logging-functions.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/pipeline-logging-functions.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/pipeline-logging-functions.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/post-build/check-channel-consistency.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/post-build/check-channel-consistency.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/post-build/nuget-validation.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/post-build/nuget-validation.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/post-build/nuget-verification.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/post-build/nuget-verification.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/post-build/publish-using-darc.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/post-build/publish-using-darc.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/post-build/redact-logs.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/post-build/redact-logs.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/post-build/sourcelink-validation.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/post-build/sourcelink-validation.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/post-build/symbols-validation.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/post-build/symbols-validation.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/retain-build.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/retain-build.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/sdk-task.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/sdk-task.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/sdk-task.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/sdk-task.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/sdl/NuGet.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/sdl/NuGet.config
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/sdl/configure-sdl-tool.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/sdl/configure-sdl-tool.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/sdl/execute-all-sdl-tools.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/sdl/execute-all-sdl-tools.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/sdl/extract-artifact-archives.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/sdl/extract-artifact-archives.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/sdl/extract-artifact-packages.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/sdl/extract-artifact-packages.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/sdl/init-sdl.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/sdl/init-sdl.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/sdl/packages.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/sdl/packages.config
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/sdl/run-sdl.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/sdl/run-sdl.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/sdl/sdl.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/sdl/sdl.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/sdl/trim-assets-version.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/sdl/trim-assets-version.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/template-guidance.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/template-guidance.md
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates-official/job/job.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates-official/job/job.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates-official/job/onelocbuild.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates-official/job/onelocbuild.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates-official/job/source-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates-official/job/source-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates-official/jobs/codeql-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates-official/jobs/codeql-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates-official/jobs/jobs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates-official/jobs/jobs.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates-official/jobs/source-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates-official/jobs/source-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates-official/steps/publish-logs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates-official/steps/publish-logs.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates-official/steps/retain-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates-official/steps/retain-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates-official/steps/source-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates-official/steps/source-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/job/job.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/job/job.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/job/onelocbuild.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/job/onelocbuild.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/job/publish-build-assets.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/job/publish-build-assets.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/job/source-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/job/source-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/job/source-index-stage1.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/job/source-index-stage1.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/jobs/codeql-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/jobs/codeql-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/jobs/jobs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/jobs/jobs.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/jobs/source-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/jobs/source-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/post-build/common-variables.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/post-build/common-variables.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/post-build/post-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/post-build/post-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/steps/component-governance.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/steps/component-governance.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/steps/generate-sbom.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/steps/generate-sbom.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/steps/get-delegation-sas.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/steps/get-delegation-sas.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/steps/publish-logs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/steps/publish-logs.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/steps/retain-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/steps/retain-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/steps/send-to-helix.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/steps/send-to-helix.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/steps/source-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/steps/source-build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/steps/vmr-sync.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/steps/vmr-sync.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/variables/pool-providers.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/variables/pool-providers.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/templates/vmr-build-pr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/templates/vmr-build-pr.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/tools.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/tools.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/tools.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/tools.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/vmr-sync.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/vmr-sync.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/common/vmr-sync.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/common/vmr-sync.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/dotnet-build/Noop.proj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/dotnet-build/Noop.proj
--------------------------------------------------------------------------------
/external/nuget.client/eng/dotnet-build/build.cmd:
--------------------------------------------------------------------------------
1 | @echo off
2 | powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0build.ps1""" %*"
--------------------------------------------------------------------------------
/external/nuget.client/eng/dotnet-build/build.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/dotnet-build/build.ps1
--------------------------------------------------------------------------------
/external/nuget.client/eng/dotnet-build/build.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/dotnet-build/build.sh
--------------------------------------------------------------------------------
/external/nuget.client/eng/dotnet-build/dotnet-build.proj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/dotnet-build/dotnet-build.proj
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/backup_build_artifacts.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/backup_build_artifacts.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/ci.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/ci.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/compliance.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/compliance.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/dailytests.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/dailytests.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/official.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/official.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/optprof.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/optprof.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/pr.job.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/pr.job.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/pr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/pr.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/pull_request.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/pull_request.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/templates/Build_and_UnitTest.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/templates/Build_and_UnitTest.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/templates/Initialize_Build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/templates/Initialize_Build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/templates/Source_Build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/templates/Source_Build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/templates/Static_Source_Analysis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/templates/Static_Source_Analysis.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/templates/Tests_On_Linux.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/templates/Tests_On_Linux.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/templates/Tests_On_Mac.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/templates/Tests_On_Mac.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/templates/Validate_Build_Output.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/templates/Validate_Build_Output.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/templates/pipeline.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/templates/pipeline.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/vs-test/apex.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/vs-test/apex.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/vs-test/build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/vs-test/build.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/vs-test/end_to_end.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/vs-test/end_to_end.yml
--------------------------------------------------------------------------------
/external/nuget.client/eng/pipelines/vs-tests.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/eng/pipelines/vs-tests.yml
--------------------------------------------------------------------------------
/external/nuget.client/es-metadata.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/es-metadata.yml
--------------------------------------------------------------------------------
/external/nuget.client/global.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/global.json
--------------------------------------------------------------------------------
/external/nuget.client/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/icon.png
--------------------------------------------------------------------------------
/external/nuget.client/keys/35MSSharedLib1024.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/keys/35MSSharedLib1024.snk
--------------------------------------------------------------------------------
/external/nuget.client/keys/NuGetKey.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/keys/NuGetKey.snk
--------------------------------------------------------------------------------
/external/nuget.client/keys/Test.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/keys/Test.snk
--------------------------------------------------------------------------------
/external/nuget.client/runTests.cmd:
--------------------------------------------------------------------------------
1 | @echo off
2 | powershell.exe -NoProfile -ExecutionPolicy RemoteSigned -Command "%~dpn0.ps1" %*
3 |
--------------------------------------------------------------------------------
/external/nuget.client/runTests.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/runTests.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/cibuild/ConfigureVstsBuild.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/cibuild/ConfigureVstsBuild.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/cibuild/CopyArtifacts.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/cibuild/CopyArtifacts.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/common.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/common.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/e2etests/CreateTestDataPackage.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/e2etests/CreateTestDataPackage.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/e2etests/InstallNuGetVSIX.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/e2etests/InstallNuGetVSIX.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/e2etests/NuGetFunctionalTestUtils.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/e2etests/NuGetFunctionalTestUtils.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/e2etests/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/e2etests/README.md
--------------------------------------------------------------------------------
/external/nuget.client/scripts/e2etests/RunFunctionalTests.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/e2etests/RunFunctionalTests.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/e2etests/SetupFunctionalTests.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/e2etests/SetupFunctionalTests.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/e2etests/SetupMachine.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/e2etests/SetupMachine.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/e2etests/Utils.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/e2etests/Utils.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/e2etests/VSUtils.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/e2etests/VSUtils.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/funcTests/runFuncTests.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/funcTests/runFuncTests.sh
--------------------------------------------------------------------------------
/external/nuget.client/scripts/nuget-debug-helpers.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/nuget-debug-helpers.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/perftests/PerformanceTestRunner.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/perftests/PerformanceTestRunner.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/perftests/PerformanceTestUtilities.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/perftests/PerformanceTestUtilities.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/perftests/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/perftests/README.md
--------------------------------------------------------------------------------
/external/nuget.client/scripts/perftests/RunPerformanceTests.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/perftests/RunPerformanceTests.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/perftests/testCases/Test-NuGetClient.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/perftests/testCases/Test-NuGetClient.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/perftests/testCases/Test-OrchardCore.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/perftests/testCases/Test-OrchardCore.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/utils/DisableStrongNameVerification.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/utils/DisableStrongNameVerification.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/utils/EnableStrongNameVerification.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/utils/EnableStrongNameVerification.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/utils/EnsureAllPackagesExist.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/utils/EnsureAllPackagesExist.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/utils/StrongNameVerification.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/utils/StrongNameVerification.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/utils/UpdateNuGetLicenseSPDXList.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/utils/UpdateNuGetLicenseSPDXList.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/utils/UpdateNuGetVersion.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/utils/UpdateNuGetVersion.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/utils/docsPRGen.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/utils/docsPRGen.ps1
--------------------------------------------------------------------------------
/external/nuget.client/scripts/utils/ttGen.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/scripts/utils/ttGen.ps1
--------------------------------------------------------------------------------
/external/nuget.client/setup/After.Microsoft.Common.targets:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/setup/After.Microsoft.Common.targets
--------------------------------------------------------------------------------
/external/nuget.client/setup/Directory.Build.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/setup/Directory.Build.props
--------------------------------------------------------------------------------
/external/nuget.client/setup/Directory.Build.targets:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/setup/Directory.Build.targets
--------------------------------------------------------------------------------
/external/nuget.client/spelling.dic:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/spelling.dic
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.CommandLine/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.CommandLine/Program.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.CommandLine/README.md:
--------------------------------------------------------------------------------
1 | NuGet Command Line Interface.
2 |
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.CommandLine/app.manifest:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.CommandLine/app.manifest
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.CommandLine/ilmerge.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.CommandLine/ilmerge.props
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/Guids.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/Guids.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/HostNameAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/HostNameAttribute.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/ICommandExpansion.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/ICommandExpansion.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/ICommandTokenizer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/ICommandTokenizer.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/IHostInitializer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/IHostInitializer.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/IHostMetadata.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/IHostMetadata.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/IHostProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/IHostProvider.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/IPathExpansion.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/IPathExpansion.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/ITabExpansion.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/ITabExpansion.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/IWpfConsole.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/IWpfConsole.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/NativeMethods.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/NativeMethods.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/NuGet.Console.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/NuGet.Console.csproj
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/PkgCmdID.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/PkgCmdID.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/Resources.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/Resources.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/ScriptExecutor.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/ScriptExecutor.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/SimpleExpansion.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/SimpleExpansion.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/Token.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/Token.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/TokenType.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/TokenType.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/Utils/Marshaler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/Utils/Marshaler.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.cs.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.cs.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.de.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.de.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.es.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.es.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.fr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.fr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.it.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.it.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.ja.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.ja.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.ko.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.ko.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.pl.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.pl.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.ru.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.ru.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.tr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Console/xlf/Resources.tr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/CamelCaseFilter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/CamelCaseFilter.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/DotTokenizer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/DotTokenizer.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/NuGetQuery.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/NuGetQuery.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/OwnerAnalyzer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/OwnerAnalyzer.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/PackageAnalyzer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/PackageAnalyzer.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/README.md
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/SortExtensions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/SortExtensions.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/TagsAnalyzer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/TagsAnalyzer.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/TokenizingHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/TokenizingHelper.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/VersionAnalyzer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Indexing/VersionAnalyzer.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/GlobalSuppressions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/GlobalSuppressions.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/Guids.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/Guids.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/NuGet.Tools.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/NuGet.Tools.csproj
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/NuGetPackage.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/NuGetPackage.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/NuGetSearchProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/NuGetSearchProvider.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/NuGetSearchTask.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/NuGetSearchTask.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/NuGetTools.vsct:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/NuGetTools.vsct
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/PkgCmdID.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/PkgCmdID.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/Resources.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/Resources.Designer.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/Resources.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/Resources.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/VSPackage.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/VSPackage.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.cs.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.cs.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.de.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.de.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.es.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.es.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.fr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.fr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.it.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.it.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.ja.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.ja.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.ko.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.ko.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.pl.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.pl.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.ru.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.ru.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.tr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/Resources.tr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.cs.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.cs.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.de.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.de.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.es.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.es.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.fr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.fr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.it.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.it.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.ja.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.ja.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.ko.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.ko.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.pl.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.pl.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.ru.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.ru.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.tr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.Tools/xlf/VSPackage.tr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.VisualStudio.Client/mcp.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.VisualStudio.Client/mcp.json
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.VisualStudio/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.VisualStudio/AssemblyInfo.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.VisualStudio/IRegistryKey.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.VisualStudio/IRegistryKey.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.VisualStudio/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.VisualStudio/README.md
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Clients/NuGet.VisualStudio/Strings.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Clients/NuGet.VisualStudio/Strings.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/Directory.Build.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/Directory.Build.props
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/Microsoft.Build.NuGetSdkResolver/README.md:
--------------------------------------------------------------------------------
1 | MSBuild SDK resolver for NuGet packages.
2 |
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks.Console/App.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks.Console/App.config
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks.Console/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks.Console/Program.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks.Console/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks.Console/README.md
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks.Pack/PackTask.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks.Pack/PackTask.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks.Pack/README.md:
--------------------------------------------------------------------------------
1 | NuGet tasks for MSBuild and dotnet pack.
2 |
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks.Pack/Strings.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks.Pack/Strings.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/LoggingQueue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/LoggingQueue.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/NuGet.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/NuGet.props
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/NuGet.targets:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/NuGet.targets
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/NuGetMessageTask.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/NuGetMessageTask.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/README.md:
--------------------------------------------------------------------------------
1 | NuGet tasks for MSBuild and dotnet restore.
2 |
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/RestoreTask.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/RestoreTask.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/RestoreTaskEx.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/RestoreTaskEx.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/Strings.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/Strings.Designer.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/Strings.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/Strings.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/TaskLoggingQueue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/TaskLoggingQueue.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.cs.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.cs.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.de.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.de.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.es.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.es.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.fr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.fr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.it.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.it.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.ja.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.ja.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.ko.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.ko.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.pl.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.pl.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.ru.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.ru.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.tr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Build.Tasks/xlf/Strings.tr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.CommandLine.XPlat/ExitCodes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.CommandLine.XPlat/ExitCodes.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.CommandLine.XPlat/Messages.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.CommandLine.XPlat/Messages.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.CommandLine.XPlat/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.CommandLine.XPlat/Program.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.CommandLine.XPlat/PublicAPI.Unshipped.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.CommandLine.XPlat/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.CommandLine.XPlat/README.md
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.CommandLine.XPlat/Strings.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.CommandLine.XPlat/Strings.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/ContentMetadata.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/ContentMetadata.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/GlobalSuppressions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/GlobalSuppressions.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/IProjectFactory.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/IProjectFactory.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/NuGet.Commands.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/NuGet.Commands.csproj
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/PackCollectorLogger.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/PackCollectorLogger.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/README.md
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/Strings.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/Strings.Designer.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/Strings.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/Strings.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/Utility/Extensions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/Utility/Extensions.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.cs.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.cs.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.de.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.de.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.es.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.es.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.fr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.fr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.it.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.it.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.ja.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.ja.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.ko.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.ko.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.pl.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.pl.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.pt-BR.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.pt-BR.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.ru.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.ru.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.tr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Commands/xlf/Strings.tr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/ActivityCorrelationId.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/ActivityCorrelationId.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/AsyncLazy.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/AsyncLazy.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/ClientVersionUtility.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/ClientVersionUtility.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/ComparisonUtility.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/ComparisonUtility.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/ConcurrencyUtilities.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/ConcurrencyUtilities.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/CryptoHashProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/CryptoHashProvider.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/CryptoHashUtility.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/CryptoHashUtility.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/CultureUtility.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/CultureUtility.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/DatetimeUtility.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/DatetimeUtility.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/Errors/ILogMessage.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/Errors/ILogMessage.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/Errors/LogLevel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/Errors/LogLevel.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/Errors/LogMessage.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/Errors/LogMessage.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/Errors/NuGetLogCode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/Errors/NuGetLogCode.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/Errors/WarningLevel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/Errors/WarningLevel.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/ExceptionUtilities.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/ExceptionUtilities.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/GlobalSuppressions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/GlobalSuppressions.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/HashAlgorithmName.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/HashAlgorithmName.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/KeyedLock.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/KeyedLock.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/LocalResourceUtils.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/LocalResourceUtils.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/Logging/ILogger.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/Logging/ILogger.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/Logging/LoggerBase.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/Logging/LoggerBase.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/Logging/NullLogger.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/Logging/NullLogger.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/Migrations/Migration1.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/Migrations/Migration1.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/MsBuildStringUtility.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/MsBuildStringUtility.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/NuGet.Common.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/NuGet.Common.csproj
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/NuGetEventSource.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/NuGetEventSource.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/PathUtil/FileUtility.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/PathUtil/FileUtility.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/PathUtil/PathResolver.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/PathUtil/PathResolver.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/PathUtil/PathUtility.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/PathUtil/PathUtility.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/Preprocessor.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/Preprocessor.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/PublicAPI.Shipped.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/PublicAPI.Shipped.txt
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/PublicAPI.Unshipped.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/PublicAPI.Unshipped.txt
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/README.md
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/RevocationMode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/RevocationMode.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/StringExtensions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/StringExtensions.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/Strings.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/Strings.Designer.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/Strings.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/Strings.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/Tokenizer/Token.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/Tokenizer/Token.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/Tokenizer/Tokenizer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/Tokenizer/Tokenizer.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/UriUtility.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/UriUtility.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.cs.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.cs.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.de.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.de.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.es.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.es.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.fr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.fr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.it.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.it.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.ja.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.ja.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.ko.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.ko.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.pl.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.pl.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.pt-BR.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.pt-BR.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.ru.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.ru.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.tr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.tr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.zh-Hans.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.zh-Hans.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.zh-Hant.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Common/xlf/Strings.zh-Hant.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Configuration/Proxy/WebProxy.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Configuration/Proxy/WebProxy.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Configuration/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Configuration/README.md
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Configuration/Resources.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Configuration/Resources.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Credentials/CredentialStatus.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Credentials/CredentialStatus.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Credentials/DelegatingLogger.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Credentials/DelegatingLogger.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Credentials/PluginException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Credentials/PluginException.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Credentials/README.md:
--------------------------------------------------------------------------------
1 | NuGet client's authentication models.
2 |
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Credentials/Resources.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Credentials/Resources.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.DependencyResolver.Core/README.md:
--------------------------------------------------------------------------------
1 | NuGet's PackageReference dependency resolver implementation.
2 |
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Frameworks/FallbackFramework.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Frameworks/FallbackFramework.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Frameworks/FrameworkRange.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Frameworks/FrameworkRange.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Frameworks/NuGetFramework.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Frameworks/NuGetFramework.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Frameworks/README.md:
--------------------------------------------------------------------------------
1 | NuGet's understanding of target frameworks.
2 |
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Frameworks/Strings.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Frameworks/Strings.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.LibraryModel/Library.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.LibraryModel/Library.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.LibraryModel/LibraryRange.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.LibraryModel/LibraryRange.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.LibraryModel/LibraryType.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.LibraryModel/LibraryType.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.LibraryModel/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.LibraryModel/README.md
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.LibraryModel/Strings.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.LibraryModel/Strings.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Localization/README.md:
--------------------------------------------------------------------------------
1 | NuGet localization package.
2 |
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.PackageManagement/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.PackageManagement/README.md
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/IHashFunction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/IHashFunction.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/NuspecReader.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/NuspecReader.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/PackagesConfig.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/PackagesConfig.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/README.md
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/Rules/RuleSet.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/Rules/RuleSet.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/Signing/Oids.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/Signing/Oids.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/StringFormatter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/StringFormatter.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/Strings.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/Strings.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.cs.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.cs.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.de.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.de.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.es.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.es.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.fr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.fr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.it.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.it.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.ja.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.ja.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.ko.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.ko.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.pl.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.pl.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.ru.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.ru.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.tr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Packaging/xlf/Strings.tr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.ProjectModel/CacheFile.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.ProjectModel/CacheFile.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.ProjectModel/JsonUtility.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.ProjectModel/JsonUtility.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.ProjectModel/PackageSpec.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.ProjectModel/PackageSpec.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.ProjectModel/ProjectStyle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.ProjectModel/ProjectStyle.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.ProjectModel/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.ProjectModel/README.md
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.ProjectModel/Strings.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.ProjectModel/Strings.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/FeedType.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/FeedType.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/FeedTypeResource.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/FeedTypeResource.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/INuGetResource.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/INuGetResource.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/NuGetTestMode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/NuGetTestMode.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/Plugins/IPlugin.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/Plugins/IPlugin.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/Plugins/ISender.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/Plugins/ISender.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/Plugins/Plugin.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/Plugins/Plugin.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/Plugins/Receiver.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/Plugins/Receiver.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/Plugins/Sender.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/Plugins/Sender.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/ProviderComparer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/ProviderComparer.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/README.md
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/Repository.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/Repository.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/ResourceProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/ResourceProvider.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/SearchFilter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/SearchFilter.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/SearchFilterType.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/SearchFilterType.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/SearchOrderBy.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/SearchOrderBy.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/ServiceTypes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/ServiceTypes.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/SourceRepository.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/SourceRepository.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/Strings.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/Strings.Designer.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/Strings.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/Strings.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/UserAgent.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/UserAgent.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.cs.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.cs.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.de.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.de.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.es.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.es.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.fr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.fr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.it.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.it.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.ja.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.ja.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.ko.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.ko.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.pl.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.pl.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.ru.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.ru.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.tr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Protocol/xlf/Strings.tr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/CompareWrapper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/CompareWrapper.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/PackageResolver.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/PackageResolver.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/README.md:
--------------------------------------------------------------------------------
1 | NuGet's dependency resolver for packages.config based projects.
2 |
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/ResolverComparer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/ResolverComparer.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/ResolverPackage.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/ResolverPackage.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/ResolverUtility.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/ResolverUtility.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/Strings.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/Strings.Designer.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/Strings.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/Strings.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.cs.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.cs.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.de.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.de.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.es.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.es.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.fr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.fr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.it.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.it.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.ja.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.ja.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.ko.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.ko.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.pl.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.pl.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.ru.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.ru.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.tr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Resolver/xlf/Strings.tr.xlf
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Versioning/FloatRange.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Versioning/FloatRange.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Versioning/NuGetVersion.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Versioning/NuGetVersion.cs
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Versioning/README.md:
--------------------------------------------------------------------------------
1 | NuGet's implementation of Semantic Versioning.
2 |
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Versioning/Resources.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Versioning/Resources.resx
--------------------------------------------------------------------------------
/external/nuget.client/src/NuGet.Core/NuGet.Versioning/VersionRange.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/src/NuGet.Core/NuGet.Versioning/VersionRange.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/Directory.Build.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/Directory.Build.props
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Directory.Build.props:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Directory.Build.targets:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Directory.Packages.props:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/NuGet.Config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/NuGet.Config
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/NuGet.Tests.psd1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/NuGet.Tests.psd1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/NuGet.Tests.psm1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/NuGet.Tests.psm1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToExistingRuntimePackageFolder/files/PackageWithStrongNamedLib.ja-jp.1.0/RootFile.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToExistingRuntimePackageFolder/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToExistingRuntimePackageFolder/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp/file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToRuntimeFolderWhenInstalledAsDependency/files/PackageWithStrongNamedLib.ja-jp.1.0/RootFile.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToRuntimeFolderWhenInstalledAsDependency/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToRuntimeFolderWhenInstalledAsDependency/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp/file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/InstallingPackageWithDependencyThatFailsShouldRollbackSuccessfully/files/PackageWithBadInstallScript.1.0/tools/install.ps1:
--------------------------------------------------------------------------------
1 | throw "NOT #WINNING"
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/RootFile.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp/file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/PackageInitPS1.1.0.2.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/Packages/PackageInitPS1.1.0.2.nupkg
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/SkypePackage.1.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/Packages/SkypePackage.1.0.nupkg
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/SkypePackage.3.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/Packages/SkypePackage.3.0.nupkg
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/UninstallSatellitePackageDoRemoveCollidingRuntimeFilesWhenContentsMatch/files/PackageWithStrongNamedLib.ja-jp.1.0/RootFile.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/UninstallSatellitePackageDoRemoveCollidingRuntimeFilesWhenContentsMatch/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/UninstallSatellitePackageDoRemoveCollidingRuntimeFilesWhenContentsMatch/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp/file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/coolpackage.nuspec:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/Packages/coolpackage.nuspec
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/netfx-Guard.1.2.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/Packages/netfx-Guard.1.2.0.0.nupkg
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/Packages/secondpackage.nuspec:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/Packages/secondpackage.nuspec
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/ProjectTemplates/EmptyWeb.zip/EmptyWeb.webproj:
--------------------------------------------------------------------------------
1 | C#
2 | $targetframeworkversion$
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/ProjectTemplates/NetCoreWebApplication1.0.zip/.bowerrc:
--------------------------------------------------------------------------------
1 | {
2 | "directory": "wwwroot/lib"
3 | }
4 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/ProjectTemplates/NetCoreWebApplication1.0.zip/wwwroot/js/site.js:
--------------------------------------------------------------------------------
1 | // Write your Javascript code.
2 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/ProjectTemplates/NetCoreWebApplication1.0.zip/wwwroot/js/site.min.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/ProjectTemplates/UwpNativeApp.zip/Application_TemporaryKey.pfx:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/ProjectTemplates/UwpNativeProjectJson.zip/Dll1.h:
--------------------------------------------------------------------------------
1 | #pragma once
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/ProjectTemplates/UwpNativeProjectJson.zip/pch.cpp:
--------------------------------------------------------------------------------
1 | #include "pch.h"
2 |
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/assert.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/assert.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/nuget.assert.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/nuget.assert.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/A-TopDownloadedPackages.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/A-TopDownloadedPackages.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/BuildIntegratedTest.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/BuildIntegratedTest.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/ExecuteInitScriptTest.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/ExecuteInitScriptTest.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/FindPackageTest.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/FindPackageTest.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/GetPackageTest.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/GetPackageTest.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/GetProjectTest.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/GetProjectTest.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/InstallPackageTest.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/InstallPackageTest.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/NativeProjectTest.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/NativeProjectTest.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/NetCoreProjectTest.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/NetCoreProjectTest.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/PackTest.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/PackTest.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/PackageNameSpaceTests.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/PackageNameSpaceTests.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/ProjectRetargeting.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/ProjectRetargeting.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/ServicesTest.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/ServicesTest.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/Settings.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/Settings.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/SyncPackageTest.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/SyncPackageTest.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/TabExpansionTest.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/TabExpansionTest.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/UninstallPackageTest.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/UninstallPackageTest.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/tests/UpdatePackageTest.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/tests/UpdatePackageTest.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/utility.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/utility.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/EndToEnd/vs.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/EndToEnd/vs.ps1
--------------------------------------------------------------------------------
/external/nuget.client/test/NuGet.Clients.Tests/Directory.Build.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/NuGet.Clients.Tests/Directory.Build.props
--------------------------------------------------------------------------------
/external/nuget.client/test/NuGet.Core.FuncTests/Directory.Build.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/NuGet.Core.FuncTests/Directory.Build.props
--------------------------------------------------------------------------------
/external/nuget.client/test/NuGet.Core.Tests/Directory.Build.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/NuGet.Core.Tests/Directory.Build.props
--------------------------------------------------------------------------------
/external/nuget.client/test/NuGet.Core.Tests/NuGet.Commands.Test/compiler/resources/EmptyCertificateStore.p7b:
--------------------------------------------------------------------------------
1 | c```pv
2 | a@
--------------------------------------------------------------------------------
/external/nuget.client/test/NuGet.Tests.Apex/Directory.Build.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/NuGet.Tests.Apex/Directory.Build.props
--------------------------------------------------------------------------------
/external/nuget.client/test/NuGet.Tests.Apex/NuGet.OptProf/Assets/PackageReferenceSdk/Directory.Build.props:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/NuGet.Tests.Apex/NuGet.OptProf/Assets/PackageReferenceSdk/Directory.Build.targets:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/external/nuget.client/test/NuGet.Tests.Apex/NuGet.OptProf/Tests.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/NuGet.Tests.Apex/NuGet.OptProf/Tests.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/NuGet.Tests.Apex/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/NuGet.Tests.Apex/README.md
--------------------------------------------------------------------------------
/external/nuget.client/test/NuGet.Tests.Apex/debugging-apex-test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/NuGet.Tests.Apex/debugging-apex-test.png
--------------------------------------------------------------------------------
/external/nuget.client/test/NuGet.Tests.Apex/running-apex-test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/NuGet.Tests.Apex/running-apex-test.png
--------------------------------------------------------------------------------
/external/nuget.client/test/TestExtensions/API.Test/API.Test.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestExtensions/API.Test/API.Test.csproj
--------------------------------------------------------------------------------
/external/nuget.client/test/TestExtensions/API.Test/ServiceLocator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestExtensions/API.Test/ServiceLocator.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestExtensions/API.Test/Utils.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestExtensions/API.Test/Utils.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestExtensions/API.Test/VSHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestExtensions/API.Test/VSHelper.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestExtensions/API.Test/VSProjectHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestExtensions/API.Test/VSProjectHelper.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestExtensions/API.Test/VSSolutionHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestExtensions/API.Test/VSSolutionHelper.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestExtensions/Directory.Build.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestExtensions/Directory.Build.props
--------------------------------------------------------------------------------
/external/nuget.client/test/TestExtensions/TestablePlugin/Arguments.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestExtensions/TestablePlugin/Arguments.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestExtensions/TestablePlugin/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestExtensions/TestablePlugin/Program.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestExtensions/TestablePlugin/Response.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestExtensions/TestablePlugin/Response.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestUtilities/Test.Utility/AssemblyReader.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestUtilities/Test.Utility/AssemblyReader.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestUtilities/Test.Utility/DebuggerUtils.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestUtilities/Test.Utility/DebuggerUtils.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestUtilities/Test.Utility/JsonData.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestUtilities/Test.Utility/JsonData.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestUtilities/Test.Utility/MockServer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestUtilities/Test.Utility/MockServer.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestUtilities/Test.Utility/MockSettings.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestUtilities/Test.Utility/MockSettings.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestUtilities/Test.Utility/NuspecBuilder.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestUtilities/Test.Utility/NuspecBuilder.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestUtilities/Test.Utility/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestUtilities/Test.Utility/README.md
--------------------------------------------------------------------------------
/external/nuget.client/test/TestUtilities/Test.Utility/SlowStream.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestUtilities/Test.Utility/SlowStream.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestUtilities/Test.Utility/TargetsUtility.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestUtilities/Test.Utility/TargetsUtility.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestUtilities/Test.Utility/TestDirectory.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestUtilities/Test.Utility/TestDirectory.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestUtilities/Test.Utility/TestLogger.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestUtilities/Test.Utility/TestLogger.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestUtilities/Test.Utility/TestPackages.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestUtilities/Test.Utility/TestPackages.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestUtilities/Test.Utility/TestSources.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestUtilities/Test.Utility/TestSources.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestUtilities/Test.Utility/XunitLogger.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestUtilities/Test.Utility/XunitLogger.cs
--------------------------------------------------------------------------------
/external/nuget.client/test/TestUtilities/Test.Utility/ZipExtensions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/test/TestUtilities/Test.Utility/ZipExtensions.cs
--------------------------------------------------------------------------------
/external/nuget.client/tools-local/doc.tasks/GenerateMarkdownDoc.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/tools-local/doc.tasks/GenerateMarkdownDoc.cs
--------------------------------------------------------------------------------
/external/nuget.client/tools-local/doc.tasks/doc.tasks.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/tools-local/doc.tasks/doc.tasks.csproj
--------------------------------------------------------------------------------
/external/nuget.client/tools-local/ship-public-apis/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/external/nuget.client/tools-local/ship-public-apis/Program.cs
--------------------------------------------------------------------------------
/global.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/global.json
--------------------------------------------------------------------------------
/src/BuildPackageRestore/BuildPackageRestore.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/BuildPackageRestore/BuildPackageRestore.csproj
--------------------------------------------------------------------------------
/src/DepsVersions.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/DepsVersions.props
--------------------------------------------------------------------------------
/src/Directory.Build.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Directory.Build.props
--------------------------------------------------------------------------------
/src/Dn/BuildArguments.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/BuildArguments.cs
--------------------------------------------------------------------------------
/src/Dn/BuildCommand.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/BuildCommand.cs
--------------------------------------------------------------------------------
/src/Dn/CommandLine/Argument.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/CommandLine/Argument.cs
--------------------------------------------------------------------------------
/src/Dn/CommandLine/ArgumentCommand.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/CommandLine/ArgumentCommand.cs
--------------------------------------------------------------------------------
/src/Dn/CommandLine/ArgumentCommand_1.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/CommandLine/ArgumentCommand_1.cs
--------------------------------------------------------------------------------
/src/Dn/CommandLine/ArgumentLexer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/CommandLine/ArgumentLexer.cs
--------------------------------------------------------------------------------
/src/Dn/CommandLine/ArgumentList_1.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/CommandLine/ArgumentList_1.cs
--------------------------------------------------------------------------------
/src/Dn/CommandLine/ArgumentParser.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/CommandLine/ArgumentParser.cs
--------------------------------------------------------------------------------
/src/Dn/CommandLine/ArgumentSyntax.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/CommandLine/ArgumentSyntax.cs
--------------------------------------------------------------------------------
/src/Dn/CommandLine/ArgumentSyntaxException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/CommandLine/ArgumentSyntaxException.cs
--------------------------------------------------------------------------------
/src/Dn/CommandLine/ArgumentSyntax_Definers.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/CommandLine/ArgumentSyntax_Definers.cs
--------------------------------------------------------------------------------
/src/Dn/CommandLine/ArgumentToken.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/CommandLine/ArgumentToken.cs
--------------------------------------------------------------------------------
/src/Dn/CommandLine/Argument_1.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/CommandLine/Argument_1.cs
--------------------------------------------------------------------------------
/src/Dn/CommandLine/CommandLineException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/CommandLine/CommandLineException.cs
--------------------------------------------------------------------------------
/src/Dn/CommandLine/CommandLineHelpers.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/CommandLine/CommandLineHelpers.cs
--------------------------------------------------------------------------------
/src/Dn/CommandLine/HelpTextGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/CommandLine/HelpTextGenerator.cs
--------------------------------------------------------------------------------
/src/Dn/CommandLine/Strings.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/CommandLine/Strings.cs
--------------------------------------------------------------------------------
/src/Dn/CommandLine/Strings.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/CommandLine/Strings.resx
--------------------------------------------------------------------------------
/src/Dn/Dn.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/Dn.csproj
--------------------------------------------------------------------------------
/src/Dn/DnEnv.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/DnEnv.cs
--------------------------------------------------------------------------------
/src/Dn/GenerateRuntimeConfigFiles.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/GenerateRuntimeConfigFiles.cs
--------------------------------------------------------------------------------
/src/Dn/MockEngine.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/MockEngine.cs
--------------------------------------------------------------------------------
/src/Dn/PackageSpecAdapter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/PackageSpecAdapter.cs
--------------------------------------------------------------------------------
/src/Dn/RestoreCommand.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/RestoreCommand.cs
--------------------------------------------------------------------------------
/src/Dn/VersionInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/Dn/VersionInfo.cs
--------------------------------------------------------------------------------
/src/DnExe/DnExe.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/DnExe/DnExe.csproj
--------------------------------------------------------------------------------
/src/DnExe/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/DnExe/Program.cs
--------------------------------------------------------------------------------
/src/MiniBuild/MiniBuild.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/MiniBuild/MiniBuild.csproj
--------------------------------------------------------------------------------
/src/MiniBuild/ProjectContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/MiniBuild/ProjectContext.cs
--------------------------------------------------------------------------------
/src/MiniBuild/ProjectParser.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/src/MiniBuild/ProjectParser.cs
--------------------------------------------------------------------------------
/tests/DnTests/DnTests.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tests/DnTests/DnTests.csproj
--------------------------------------------------------------------------------
/tests/DnTests/ExecTests.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tests/DnTests/ExecTests.cs
--------------------------------------------------------------------------------
/tests/DnTests/ParseProjectTests.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tests/DnTests/ParseProjectTests.cs
--------------------------------------------------------------------------------
/tests/DnTests/ResolvedProjectTests.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tests/DnTests/ResolvedProjectTests.cs
--------------------------------------------------------------------------------
/tests/DnTests/TempDirectory.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tests/DnTests/TempDirectory.cs
--------------------------------------------------------------------------------
/tests/DnTests/TestWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tests/DnTests/TestWriter.cs
--------------------------------------------------------------------------------
/tests/test_baselines/MakeBaselines/MakeBaselines.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tests/test_baselines/MakeBaselines/MakeBaselines.csproj
--------------------------------------------------------------------------------
/tests/test_baselines/MakeBaselines/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tests/test_baselines/MakeBaselines/Program.cs
--------------------------------------------------------------------------------
/tests/test_baselines/test_baselines.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tests/test_baselines/test_baselines.json
--------------------------------------------------------------------------------
/tests/test_baselines/test_baselines.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tests/test_baselines/test_baselines.sln
--------------------------------------------------------------------------------
/tests/test_baselines/test_projects/Directory.Build.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tests/test_baselines/test_projects/Directory.Build.props
--------------------------------------------------------------------------------
/tests/test_baselines/test_projects/HelloWorld/HelloWorld.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tests/test_baselines/test_projects/HelloWorld/HelloWorld.csproj
--------------------------------------------------------------------------------
/tests/test_baselines/test_projects/HelloWorld/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tests/test_baselines/test_projects/HelloWorld/Program.cs
--------------------------------------------------------------------------------
/tests/test_restore/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tests/test_restore/Program.cs
--------------------------------------------------------------------------------
/tests/test_restore/TestRestore.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tests/test_restore/TestRestore.csproj
--------------------------------------------------------------------------------
/tools/FixupRoslyn/FixupRoslyn.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tools/FixupRoslyn/FixupRoslyn.csproj
--------------------------------------------------------------------------------
/tools/FixupRoslyn/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agocke/dn/HEAD/tools/FixupRoslyn/Program.cs
--------------------------------------------------------------------------------