├── .azuredevops └── dependabot.yml ├── .config └── tsaoptions.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE.txt ├── NuGet.config ├── README.md ├── azure-pipelines-pr.yml ├── azure-pipelines.yml ├── 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-impl.yml │ │ ├── install-microbuild.yml │ │ ├── publish-build-artifacts.yml │ │ ├── publish-logs.yml │ │ ├── publish-pipeline-artifacts.yml │ │ ├── retain-build.yml │ │ ├── send-to-helix.yml │ │ ├── source-build.yml │ │ └── source-index-stage1-publish.yml │ └── variables │ │ └── pool-providers.yml │ ├── cross │ ├── arm │ │ └── tizen │ │ │ └── tizen.patch │ ├── arm64 │ │ └── tizen │ │ │ └── tizen.patch │ ├── armel │ │ └── tizen │ │ │ └── tizen.patch │ ├── build-android-rootfs.sh │ ├── build-rootfs.sh │ ├── install-debs.py │ ├── riscv64 │ │ └── tizen │ │ │ └── tizen.patch │ ├── tizen-build-rootfs.sh │ ├── tizen-fetch.sh │ ├── toolchain.cmake │ ├── x64 │ │ └── tizen │ │ │ └── tizen.patch │ └── 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 ├── es-metadata.yml ├── global.json ├── src └── Microsoft.Web.XmlTransform │ ├── IXmlOriginalDocumentService.cs │ ├── IXmlTransformationLogger.cs │ ├── Microsoft.Web.XmlTransform.csproj │ ├── NamedTypeFactory.cs │ ├── PositionTrackingTextReaders.cs │ ├── Properties │ ├── Resources.resx │ └── 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 │ ├── XmlArgumentUtility.cs │ ├── XmlAttributePreservationDict.cs │ ├── XmlAttributePreservationProvider.cs │ ├── XmlAttributePreservingWriter.cs │ ├── XmlAttributeTransform.cs │ ├── XmlElementContext.cs │ ├── XmlFileInfoDocument.cs │ ├── XmlFormatter.cs │ ├── XmlLocator.cs │ ├── XmlLocators.cs │ ├── XmlNodeContext.cs │ ├── XmlNodeException.cs │ ├── XmlTransform.cs │ ├── XmlTransformableDocument.cs │ ├── XmlTransformation.cs │ ├── XmlTransformationException.cs │ ├── XmlTransformationLogger.cs │ └── XmlTransforms.cs ├── tests └── Microsoft.Web.XmlTransform.Tests │ ├── Microsoft.Web.XmlTransform.Tests.csproj │ ├── Properties │ └── Resources.resx │ ├── Resources │ ├── AttributeFormatting.Log │ ├── AttributeFormatting_destination.bsl │ ├── AttributeFormatting_source.xml │ ├── AttributeFormatting_transform.xml │ ├── EdgeCase.log │ ├── EdgeCase_destination.bsl │ ├── EdgeCase_source.xml │ ├── EdgeCase_transform.xml │ ├── TagFormatting.log │ ├── TagFormatting_destination.bsl │ ├── TagFormatting_source.xml │ ├── TagFormatting_transform.xml │ ├── WarningsAndErrors.log │ ├── WarningsAndErrors_source.xml │ ├── WarningsAndErrors_transform.xml │ ├── Web.Release.config │ ├── Web.Test.config │ └── Web.config │ ├── TestTransformationLogger.cs │ └── XmlTransformTest.cs └── xdt.sln /.azuredevops/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/.azuredevops/dependabot.yml -------------------------------------------------------------------------------- /.config/tsaoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/.config/tsaoptions.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/azure-pipelines-pr.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /eng/Publishing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/Publishing.props -------------------------------------------------------------------------------- /eng/Version.Details.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/Version.Details.props -------------------------------------------------------------------------------- /eng/Version.Details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/Version.Details.xml -------------------------------------------------------------------------------- /eng/Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/Versions.props -------------------------------------------------------------------------------- /eng/common/BuildConfiguration/build-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/BuildConfiguration/build-configuration.json -------------------------------------------------------------------------------- /eng/common/CIBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/CIBuild.cmd -------------------------------------------------------------------------------- /eng/common/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /eng/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/README.md -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/SetupNugetSources.ps1 -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/SetupNugetSources.sh -------------------------------------------------------------------------------- /eng/common/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/build.cmd -------------------------------------------------------------------------------- /eng/common/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/build.ps1 -------------------------------------------------------------------------------- /eng/common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/build.sh -------------------------------------------------------------------------------- /eng/common/cibuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/cibuild.sh -------------------------------------------------------------------------------- /eng/common/core-templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/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/xdt/HEAD/eng/common/core-templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/cleanup-microbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/steps/cleanup-microbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/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/xdt/HEAD/eng/common/core-templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/install-microbuild-impl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/steps/install-microbuild-impl.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/install-microbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/steps/install-microbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/core-templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/core-templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/cross/arm/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/cross/arm/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/arm64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/cross/arm64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/cross/armel/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/build-android-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/cross/build-android-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/cross/build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/install-debs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/cross/install-debs.py -------------------------------------------------------------------------------- /eng/common/cross/riscv64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/cross/riscv64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/cross/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/cross/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/cross/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/cross/x64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/cross/x64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/x86/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/cross/x86/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/darc-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/darc-init.ps1 -------------------------------------------------------------------------------- /eng/common/darc-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/darc-init.sh -------------------------------------------------------------------------------- /eng/common/dotnet-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/dotnet-install.cmd -------------------------------------------------------------------------------- /eng/common/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/dotnet-install.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/dotnet-install.sh -------------------------------------------------------------------------------- /eng/common/dotnet.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/dotnet.cmd -------------------------------------------------------------------------------- /eng/common/dotnet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/dotnet.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/dotnet.sh -------------------------------------------------------------------------------- /eng/common/enable-cross-org-publishing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/enable-cross-org-publishing.ps1 -------------------------------------------------------------------------------- /eng/common/generate-locproject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/generate-locproject.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/generate-sbom-prep.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/generate-sbom-prep.sh -------------------------------------------------------------------------------- /eng/common/helixpublish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/helixpublish.proj -------------------------------------------------------------------------------- /eng/common/init-tools-native.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/init-tools-native.cmd -------------------------------------------------------------------------------- /eng/common/init-tools-native.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/init-tools-native.ps1 -------------------------------------------------------------------------------- /eng/common/init-tools-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/init-tools-native.sh -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/internal-feed-operations.ps1 -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/internal-feed-operations.sh -------------------------------------------------------------------------------- /eng/common/internal/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/internal/Directory.Build.props -------------------------------------------------------------------------------- /eng/common/internal/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/internal/NuGet.config -------------------------------------------------------------------------------- /eng/common/internal/Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/internal/Tools.csproj -------------------------------------------------------------------------------- /eng/common/loc/P22DotNetHtmlLocalization.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/loc/P22DotNetHtmlLocalization.lss -------------------------------------------------------------------------------- /eng/common/msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/msbuild.ps1 -------------------------------------------------------------------------------- /eng/common/msbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/msbuild.sh -------------------------------------------------------------------------------- /eng/common/native/CommonLibrary.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/native/CommonLibrary.psm1 -------------------------------------------------------------------------------- /eng/common/native/common-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/native/common-library.sh -------------------------------------------------------------------------------- /eng/common/native/init-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/native/init-compiler.sh -------------------------------------------------------------------------------- /eng/common/native/init-distro-rid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/native/init-distro-rid.sh -------------------------------------------------------------------------------- /eng/common/native/init-os-and-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/native/init-os-and-arch.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/native/install-cmake-test.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/native/install-cmake.sh -------------------------------------------------------------------------------- /eng/common/native/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/native/install-dependencies.sh -------------------------------------------------------------------------------- /eng/common/native/install-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/native/install-tool.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/pipeline-logging-functions.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/pipeline-logging-functions.sh -------------------------------------------------------------------------------- /eng/common/post-build/check-channel-consistency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/post-build/check-channel-consistency.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/post-build/nuget-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-verification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/post-build/nuget-verification.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/publish-using-darc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/post-build/publish-using-darc.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/redact-logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/post-build/redact-logs.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/sourcelink-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/post-build/sourcelink-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/symbols-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/post-build/symbols-validation.ps1 -------------------------------------------------------------------------------- /eng/common/retain-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/retain-build.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/sdk-task.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/sdk-task.sh -------------------------------------------------------------------------------- /eng/common/sdl/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/sdl/NuGet.config -------------------------------------------------------------------------------- /eng/common/sdl/configure-sdl-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/sdl/configure-sdl-tool.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/execute-all-sdl-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/sdl/execute-all-sdl-tools.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-archives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/sdl/extract-artifact-archives.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/sdl/extract-artifact-packages.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/init-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/sdl/init-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/sdl/packages.config -------------------------------------------------------------------------------- /eng/common/sdl/run-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/sdl/run-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/sdl/sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/trim-assets-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/sdl/trim-assets-version.ps1 -------------------------------------------------------------------------------- /eng/common/template-guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/template-guidance.md -------------------------------------------------------------------------------- /eng/common/templates-official/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/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/xdt/HEAD/eng/common/templates-official/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/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/xdt/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/xdt/HEAD/eng/common/templates-official/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/sdl-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates-official/variables/sdl-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/vmr-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/steps/vmr-sync.yml -------------------------------------------------------------------------------- /eng/common/templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates/vmr-build-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/templates/vmr-build-pr.yml -------------------------------------------------------------------------------- /eng/common/tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/tools.ps1 -------------------------------------------------------------------------------- /eng/common/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/tools.sh -------------------------------------------------------------------------------- /eng/common/vmr-sync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/vmr-sync.ps1 -------------------------------------------------------------------------------- /eng/common/vmr-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/eng/common/vmr-sync.sh -------------------------------------------------------------------------------- /es-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/es-metadata.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/global.json -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/IXmlOriginalDocumentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/IXmlOriginalDocumentService.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/IXmlTransformationLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/IXmlTransformationLogger.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/Microsoft.Web.XmlTransform.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/Microsoft.Web.XmlTransform.csproj -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/NamedTypeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/NamedTypeFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/PositionTrackingTextReaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/PositionTrackingTextReaders.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.cs.xlf -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.de.xlf -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.es.xlf -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.fr.xlf -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.it.xlf -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.ja.xlf -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.ko.xlf -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.pl.xlf -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.pt-BR.xlf -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.ru.xlf -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.tr.xlf -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.zh-Hans.xlf -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/Properties/xlf/Resources.zh-Hant.xlf -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlArgumentUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlArgumentUtility.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlAttributePreservationDict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlAttributePreservationDict.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlAttributePreservationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlAttributePreservationProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlAttributePreservingWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlAttributePreservingWriter.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlAttributeTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlAttributeTransform.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlElementContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlElementContext.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlFileInfoDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlFileInfoDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlFormatter.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlLocator.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlLocators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlLocators.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlNodeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlNodeContext.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlNodeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlNodeException.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlTransform.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlTransformableDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlTransformableDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlTransformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlTransformation.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlTransformationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlTransformationException.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlTransformationLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlTransformationLogger.cs -------------------------------------------------------------------------------- /src/Microsoft.Web.XmlTransform/XmlTransforms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/src/Microsoft.Web.XmlTransform/XmlTransforms.cs -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Microsoft.Web.XmlTransform.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Microsoft.Web.XmlTransform.Tests.csproj -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Properties/Resources.resx -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/AttributeFormatting.Log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/AttributeFormatting.Log -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/AttributeFormatting_destination.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/AttributeFormatting_destination.bsl -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/AttributeFormatting_source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/AttributeFormatting_source.xml -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/AttributeFormatting_transform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/AttributeFormatting_transform.xml -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/EdgeCase.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/EdgeCase.log -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/EdgeCase_destination.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/EdgeCase_destination.bsl -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/EdgeCase_source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/EdgeCase_source.xml -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/EdgeCase_transform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/EdgeCase_transform.xml -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/TagFormatting.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/TagFormatting.log -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/TagFormatting_destination.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/TagFormatting_destination.bsl -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/TagFormatting_source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/TagFormatting_source.xml -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/TagFormatting_transform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/TagFormatting_transform.xml -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/WarningsAndErrors.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/WarningsAndErrors.log -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/WarningsAndErrors_source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/WarningsAndErrors_source.xml -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/WarningsAndErrors_transform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/WarningsAndErrors_transform.xml -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/Web.Release.config -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/Web.Test.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/Web.Test.config -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/Resources/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/Resources/Web.config -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/TestTransformationLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/TestTransformationLogger.cs -------------------------------------------------------------------------------- /tests/Microsoft.Web.XmlTransform.Tests/XmlTransformTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/tests/Microsoft.Web.XmlTransform.Tests/XmlTransformTest.cs -------------------------------------------------------------------------------- /xdt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xdt/HEAD/xdt.sln --------------------------------------------------------------------------------