├── .gitattributes ├── .gitignore ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE.txt ├── NuGet.BuildTasks.sln ├── NuGet.config ├── README.md ├── SECURITY.md ├── ThirdPartyNotices.txt ├── eng ├── Signing.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 │ │ ├── armel.jessie.patch │ │ └── 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 │ ├── x64 │ │ └── tizen │ │ │ └── tizen.patch │ └── x86 │ │ └── tizen │ │ └── tizen.patch │ ├── darc-init.ps1 │ ├── darc-init.sh │ ├── dotnet-install.cmd │ ├── dotnet-install.ps1 │ ├── dotnet-install.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 │ └── variables │ │ └── pool-providers.yml │ ├── tools.ps1 │ └── tools.sh ├── global.json ├── setup └── Swix │ └── Microsoft.NuGet.Build.Tasks.Setup │ ├── Microsoft.NuGet.Build.Tasks.Setup.csproj │ └── files.swr └── src ├── Microsoft.NuGet.Build.Tasks.Tests ├── AnalyzerResolutionTests.cs ├── AssertHelpers.cs ├── Helpers │ ├── DisposableDirectory.cs │ ├── DisposableFile.cs │ ├── MockBuildEngine.cs │ ├── TempDirectory.cs │ ├── TempFile.cs │ └── TempRoot.cs ├── Json │ ├── FluentAssertions.lock.json │ ├── FluentAssertionsAndWin10.lock.json │ ├── GlobalMSBuildPlugin.vcxproj.json │ ├── Json.Designer.cs │ ├── Json.resx │ ├── LockFileWithWithSpecifiedPackageFolders.json │ ├── MultipleProjectFileDependencyGroups.json │ ├── MultipleProjectFileDependencyGroups_CaseMismatch.json │ ├── ProjectDependency.assets.json │ ├── Win10.Edm.json │ ├── Win10.json │ ├── Win10.xunit.json │ ├── WithTargets.assets.json │ ├── WithoutTargets.assets.json │ ├── analyzers.json │ └── nativeWinMD.json ├── Microsoft.NuGet.Build.Tasks.Tests.csproj ├── NuGetTestHelpers.cs ├── PackageFolderTests.cs ├── PreprocessorTests.cs ├── ProjectReferences │ ├── LockFileMissingMSBuildProjectThatProvidesAssets.json │ ├── LockFileWithCSProjReference.json │ ├── ProjectReferenceTests.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── ReferenceResolutionTests.cs ├── ResolveNuGetPackageAssetsTests.cs ├── ResolvePackagesResult.cs └── app.config └── Microsoft.NuGet.Build.Tasks ├── .gitignore ├── Delegates.cs ├── ExceptionFromResource.cs ├── GlobalAssemblyInfo.cs ├── ImportBeforeAfter ├── Microsoft.NuGet.ImportAfter.targets ├── Microsoft.NuGet.ImportBefore.props └── Microsoft.NuGet.Solution.ImportAfter.targets ├── Microsoft.NuGet.Build.Tasks.csproj ├── Microsoft.NuGet.props ├── Microsoft.NuGet.targets ├── NativeMethods.cs ├── NuGetPackageObject.cs ├── Preprocessor.cs ├── ResolveNuGetPackageAssets.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 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.BuildTasks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/NuGet.BuildTasks.sln -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /eng/Signing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/Signing.props -------------------------------------------------------------------------------- /eng/Version.Details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/Version.Details.xml -------------------------------------------------------------------------------- /eng/Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/Versions.props -------------------------------------------------------------------------------- /eng/common/BuildConfiguration/build-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/BuildConfiguration/build-configuration.json -------------------------------------------------------------------------------- /eng/common/CIBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/CIBuild.cmd -------------------------------------------------------------------------------- /eng/common/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /eng/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/README.md -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/SetupNugetSources.ps1 -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/SetupNugetSources.sh -------------------------------------------------------------------------------- /eng/common/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/build.cmd -------------------------------------------------------------------------------- /eng/common/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/build.ps1 -------------------------------------------------------------------------------- /eng/common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/build.sh -------------------------------------------------------------------------------- /eng/common/cibuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/cibuild.sh -------------------------------------------------------------------------------- /eng/common/core-templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/cleanup-microbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/steps/cleanup-microbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/install-microbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/steps/install-microbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/core-templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/core-templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/cross/arm/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/cross/arm/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/arm64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/cross/arm64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/armel.jessie.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/cross/armel/armel.jessie.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/cross/armel/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/build-android-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/cross/build-android-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/cross/build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/install-debs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/cross/install-debs.py -------------------------------------------------------------------------------- /eng/common/cross/riscv64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/cross/riscv64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/cross/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/cross/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/cross/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/cross/x64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/cross/x64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/x86/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/cross/x86/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/darc-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/darc-init.ps1 -------------------------------------------------------------------------------- /eng/common/darc-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/darc-init.sh -------------------------------------------------------------------------------- /eng/common/dotnet-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/dotnet-install.cmd -------------------------------------------------------------------------------- /eng/common/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/dotnet-install.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/dotnet-install.sh -------------------------------------------------------------------------------- /eng/common/enable-cross-org-publishing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/enable-cross-org-publishing.ps1 -------------------------------------------------------------------------------- /eng/common/generate-locproject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/generate-locproject.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/generate-sbom-prep.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/generate-sbom-prep.sh -------------------------------------------------------------------------------- /eng/common/helixpublish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/helixpublish.proj -------------------------------------------------------------------------------- /eng/common/init-tools-native.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/init-tools-native.cmd -------------------------------------------------------------------------------- /eng/common/init-tools-native.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/init-tools-native.ps1 -------------------------------------------------------------------------------- /eng/common/init-tools-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/init-tools-native.sh -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/internal-feed-operations.ps1 -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/internal-feed-operations.sh -------------------------------------------------------------------------------- /eng/common/internal/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/internal/Directory.Build.props -------------------------------------------------------------------------------- /eng/common/internal/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/internal/NuGet.config -------------------------------------------------------------------------------- /eng/common/internal/Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/internal/Tools.csproj -------------------------------------------------------------------------------- /eng/common/loc/P22DotNetHtmlLocalization.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/loc/P22DotNetHtmlLocalization.lss -------------------------------------------------------------------------------- /eng/common/msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/msbuild.ps1 -------------------------------------------------------------------------------- /eng/common/msbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/msbuild.sh -------------------------------------------------------------------------------- /eng/common/native/CommonLibrary.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/native/CommonLibrary.psm1 -------------------------------------------------------------------------------- /eng/common/native/common-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/native/common-library.sh -------------------------------------------------------------------------------- /eng/common/native/init-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/native/init-compiler.sh -------------------------------------------------------------------------------- /eng/common/native/init-distro-rid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/native/init-distro-rid.sh -------------------------------------------------------------------------------- /eng/common/native/init-os-and-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/native/init-os-and-arch.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/native/install-cmake-test.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/native/install-cmake.sh -------------------------------------------------------------------------------- /eng/common/native/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/native/install-dependencies.sh -------------------------------------------------------------------------------- /eng/common/native/install-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/native/install-tool.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/pipeline-logging-functions.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/pipeline-logging-functions.sh -------------------------------------------------------------------------------- /eng/common/post-build/check-channel-consistency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/post-build/check-channel-consistency.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/post-build/nuget-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-verification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/post-build/nuget-verification.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/publish-using-darc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/post-build/publish-using-darc.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/redact-logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/post-build/redact-logs.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/sourcelink-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/post-build/sourcelink-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/symbols-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/post-build/symbols-validation.ps1 -------------------------------------------------------------------------------- /eng/common/retain-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/retain-build.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/sdk-task.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/sdk-task.sh -------------------------------------------------------------------------------- /eng/common/sdl/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/sdl/NuGet.config -------------------------------------------------------------------------------- /eng/common/sdl/configure-sdl-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/sdl/configure-sdl-tool.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/execute-all-sdl-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/sdl/execute-all-sdl-tools.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-archives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/sdl/extract-artifact-archives.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/sdl/extract-artifact-packages.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/init-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/sdl/init-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/sdl/packages.config -------------------------------------------------------------------------------- /eng/common/sdl/run-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/sdl/run-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/sdl/sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/trim-assets-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/sdl/trim-assets-version.ps1 -------------------------------------------------------------------------------- /eng/common/template-guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/template-guidance.md -------------------------------------------------------------------------------- /eng/common/templates-official/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/sdl-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates-official/variables/sdl-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/tools.ps1 -------------------------------------------------------------------------------- /eng/common/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/eng/common/tools.sh -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/global.json -------------------------------------------------------------------------------- /setup/Swix/Microsoft.NuGet.Build.Tasks.Setup/Microsoft.NuGet.Build.Tasks.Setup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/setup/Swix/Microsoft.NuGet.Build.Tasks.Setup/Microsoft.NuGet.Build.Tasks.Setup.csproj -------------------------------------------------------------------------------- /setup/Swix/Microsoft.NuGet.Build.Tasks.Setup/files.swr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/setup/Swix/Microsoft.NuGet.Build.Tasks.Setup/files.swr -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/AnalyzerResolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/AnalyzerResolutionTests.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/AssertHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/AssertHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/DisposableDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/DisposableDirectory.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/DisposableFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/DisposableFile.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/MockBuildEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/MockBuildEngine.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempDirectory.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempFile.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Helpers/TempRoot.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Json/FluentAssertions.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Json/FluentAssertions.lock.json -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Json/FluentAssertionsAndWin10.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Json/FluentAssertionsAndWin10.lock.json -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Json/GlobalMSBuildPlugin.vcxproj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Json/GlobalMSBuildPlugin.vcxproj.json -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Json/Json.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Json.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Json/Json.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Json.resx -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Json/LockFileWithWithSpecifiedPackageFolders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Json/LockFileWithWithSpecifiedPackageFolders.json -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Json/MultipleProjectFileDependencyGroups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Json/MultipleProjectFileDependencyGroups.json -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Json/MultipleProjectFileDependencyGroups_CaseMismatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Json/MultipleProjectFileDependencyGroups_CaseMismatch.json -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Json/ProjectDependency.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Json/ProjectDependency.assets.json -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.Edm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.Edm.json -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.json -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.xunit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Json/Win10.xunit.json -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Json/WithTargets.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Json/WithTargets.assets.json -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Json/WithoutTargets.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Json/WithoutTargets.assets.json -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Json/analyzers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Json/analyzers.json -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Json/nativeWinMD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Json/nativeWinMD.json -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/Microsoft.NuGet.Build.Tasks.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/Microsoft.NuGet.Build.Tasks.Tests.csproj -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/NuGetTestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/NuGetTestHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/PackageFolderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/PackageFolderTests.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/PreprocessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/PreprocessorTests.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/ProjectReferences/LockFileMissingMSBuildProjectThatProvidesAssets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/ProjectReferences/LockFileMissingMSBuildProjectThatProvidesAssets.json -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/ProjectReferences/LockFileWithCSProjReference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/ProjectReferences/LockFileWithCSProjReference.json -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/ProjectReferences/ProjectReferenceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/ProjectReferences/ProjectReferenceTests.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/ProjectReferences/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/ProjectReferences/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/ProjectReferences/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/ProjectReferences/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/ReferenceResolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/ReferenceResolutionTests.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/ResolveNuGetPackageAssetsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/ResolveNuGetPackageAssetsTests.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/ResolvePackagesResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/ResolvePackagesResult.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks.Tests/app.config -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/.gitignore -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/Delegates.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/ExceptionFromResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/ExceptionFromResource.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/GlobalAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/GlobalAssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/ImportBeforeAfter/Microsoft.NuGet.ImportAfter.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/ImportBeforeAfter/Microsoft.NuGet.ImportAfter.targets -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/ImportBeforeAfter/Microsoft.NuGet.ImportBefore.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/ImportBeforeAfter/Microsoft.NuGet.ImportBefore.props -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/ImportBeforeAfter/Microsoft.NuGet.Solution.ImportAfter.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/ImportBeforeAfter/Microsoft.NuGet.Solution.ImportAfter.targets -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.Build.Tasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.Build.Tasks.csproj -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.props -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.targets -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/NativeMethods.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/NuGetPackageObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/NuGetPackageObject.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/Preprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/Preprocessor.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/ResolveNuGetPackageAssets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/ResolveNuGetPackageAssets.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/Strings.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/Strings.resx -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/xlf/Strings.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/xlf/Strings.cs.xlf -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/xlf/Strings.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/xlf/Strings.de.xlf -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/xlf/Strings.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/xlf/Strings.es.xlf -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/xlf/Strings.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/xlf/Strings.fr.xlf -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/xlf/Strings.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/xlf/Strings.it.xlf -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/xlf/Strings.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/xlf/Strings.ja.xlf -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/xlf/Strings.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/xlf/Strings.ko.xlf -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/xlf/Strings.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/xlf/Strings.pl.xlf -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/xlf/Strings.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/xlf/Strings.pt-BR.xlf -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/xlf/Strings.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/xlf/Strings.ru.xlf -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/xlf/Strings.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/xlf/Strings.tr.xlf -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/xlf/Strings.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/xlf/Strings.zh-Hans.xlf -------------------------------------------------------------------------------- /src/Microsoft.NuGet.Build.Tasks/xlf/Strings.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/NuGet.BuildTasks/HEAD/src/Microsoft.NuGet.Build.Tasks/xlf/Strings.zh-Hant.xlf --------------------------------------------------------------------------------