gitextract_jfd2h48b/ ├── .azuredevops/ │ └── dependabot.yml ├── .config/ │ └── 1espt/ │ └── PipelineAutobaseliningConfig.yml ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── 01_bug_report.md │ │ └── config.yml │ ├── policies/ │ │ └── resourceManagement.yml │ └── workflows/ │ ├── backport.yml │ └── inter-branch-merge-flow.yml ├── .gitignore ├── Build.proj ├── CODE-OF-CONDUCT.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── LICENSE ├── NuGet.config ├── README.md ├── WindowsDesktop.sln ├── azure-pipelines-PR.yml ├── azure-pipelines.yml ├── build.cmd ├── build.sh ├── eng/ │ ├── Build.props │ ├── Publishing.props │ ├── Signing.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 │ │ │ │ ├── renovate.yml │ │ │ │ ├── source-build.yml │ │ │ │ └── source-index-stage1.yml │ │ │ ├── jobs/ │ │ │ │ ├── jobs.yml │ │ │ │ └── source-build.yml │ │ │ ├── post-build/ │ │ │ │ ├── common-variables.yml │ │ │ │ ├── post-build.yml │ │ │ │ └── setup-maestro-vars.yml │ │ │ ├── stages/ │ │ │ │ └── renovate.yml │ │ │ ├── steps/ │ │ │ │ ├── cleanup-microbuild.yml │ │ │ │ ├── enable-internal-runtimes.yml │ │ │ │ ├── enable-internal-sources.yml │ │ │ │ ├── generate-sbom.yml │ │ │ │ ├── get-delegation-sas.yml │ │ │ │ ├── get-federated-access-token.yml │ │ │ │ ├── install-microbuild-impl.yml │ │ │ │ ├── install-microbuild.yml │ │ │ │ ├── publish-build-artifacts.yml │ │ │ │ ├── publish-logs.yml │ │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ │ ├── retain-build.yml │ │ │ │ ├── send-to-helix.yml │ │ │ │ ├── source-build.yml │ │ │ │ └── source-index-stage1-publish.yml │ │ │ └── variables/ │ │ │ └── pool-providers.yml │ │ ├── cross/ │ │ │ ├── arm/ │ │ │ │ └── tizen/ │ │ │ │ └── tizen.patch │ │ │ ├── arm64/ │ │ │ │ └── tizen/ │ │ │ │ └── tizen.patch │ │ │ ├── armel/ │ │ │ │ └── tizen/ │ │ │ │ └── tizen.patch │ │ │ ├── build-android-rootfs.sh │ │ │ ├── build-rootfs.sh │ │ │ ├── install-debs.py │ │ │ ├── riscv64/ │ │ │ │ └── tizen/ │ │ │ │ └── tizen.patch │ │ │ ├── tizen-build-rootfs.sh │ │ │ ├── tizen-fetch.sh │ │ │ └── toolchain.cmake │ │ ├── darc-init.ps1 │ │ ├── darc-init.sh │ │ ├── dotnet-install.cmd │ │ ├── dotnet-install.ps1 │ │ ├── dotnet-install.sh │ │ ├── dotnet.cmd │ │ ├── dotnet.ps1 │ │ ├── dotnet.sh │ │ ├── enable-cross-org-publishing.ps1 │ │ ├── generate-locproject.ps1 │ │ ├── helixpublish.proj │ │ ├── init-tools-native.cmd │ │ ├── init-tools-native.ps1 │ │ ├── init-tools-native.sh │ │ ├── internal/ │ │ │ ├── Directory.Build.props │ │ │ ├── NuGet.config │ │ │ └── Tools.csproj │ │ ├── internal-feed-operations.ps1 │ │ ├── internal-feed-operations.sh │ │ ├── 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 │ │ │ └── symbols-validation.ps1 │ │ ├── renovate.env │ │ ├── retain-build.ps1 │ │ ├── sdk-task.ps1 │ │ ├── sdk-task.sh │ │ ├── template-guidance.md │ │ ├── templates/ │ │ │ ├── job/ │ │ │ │ ├── job.yml │ │ │ │ ├── onelocbuild.yml │ │ │ │ ├── publish-build-assets.yml │ │ │ │ ├── source-build.yml │ │ │ │ └── source-index-stage1.yml │ │ │ ├── jobs/ │ │ │ │ ├── jobs.yml │ │ │ │ └── source-build.yml │ │ │ ├── post-build/ │ │ │ │ ├── common-variables.yml │ │ │ │ ├── post-build.yml │ │ │ │ └── setup-maestro-vars.yml │ │ │ ├── steps/ │ │ │ │ ├── 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 │ │ ├── templates-official/ │ │ │ ├── job/ │ │ │ │ ├── job.yml │ │ │ │ ├── onelocbuild.yml │ │ │ │ ├── publish-build-assets.yml │ │ │ │ ├── source-build.yml │ │ │ │ └── source-index-stage1.yml │ │ │ ├── jobs/ │ │ │ │ ├── jobs.yml │ │ │ │ └── source-build.yml │ │ │ ├── post-build/ │ │ │ │ ├── common-variables.yml │ │ │ │ ├── post-build.yml │ │ │ │ └── setup-maestro-vars.yml │ │ │ ├── steps/ │ │ │ │ ├── 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 │ │ ├── vmr-sync.ps1 │ │ └── vmr-sync.sh │ ├── pipelines/ │ │ ├── jobs/ │ │ │ └── windows-build-PR.yml │ │ └── tsaoptions.json │ └── sdl-tsa-vars.config ├── es-metadata.yml ├── github-merge-flow.jsonc ├── global.json └── src/ ├── Microsoft.Windows.Compatibility/ │ ├── package/ │ │ ├── Directory.Build.props │ │ └── runtime.native.System.IO.Ports.csproj │ └── src/ │ ├── Microsoft.Windows.Compatibility.csproj │ ├── PACKAGE.md │ └── README.md ├── Microsoft.WindowsDesktop.App.Internal/ │ └── Microsoft.WindowsDesktop.App.Internal.proj └── windowsdesktop/ ├── src/ │ ├── Directory.Build.props │ ├── Microsoft.WindowsDesktop.App.Ref.stub.proj │ ├── bundle/ │ │ ├── Wix.props │ │ ├── Wix.targets │ │ ├── bundle.thm │ │ ├── bundle.wixproj │ │ ├── bundle.wxs │ │ ├── dotnet-packages.wxs │ │ ├── dummyeula.rtf │ │ └── theme/ │ │ ├── 1028/ │ │ │ └── thm.wxl │ │ ├── 1029/ │ │ │ └── thm.wxl │ │ ├── 1031/ │ │ │ └── thm.wxl │ │ ├── 1033/ │ │ │ └── thm.wxl │ │ ├── 1036/ │ │ │ └── thm.wxl │ │ ├── 1040/ │ │ │ └── thm.wxl │ │ ├── 1041/ │ │ │ └── thm.wxl │ │ ├── 1042/ │ │ │ └── thm.wxl │ │ ├── 1045/ │ │ │ └── thm.wxl │ │ ├── 1046/ │ │ │ └── thm.wxl │ │ ├── 1049/ │ │ │ └── thm.wxl │ │ ├── 1055/ │ │ │ └── thm.wxl │ │ ├── 2052/ │ │ │ └── thm.wxl │ │ └── 3082/ │ │ └── thm.wxl │ └── sfx/ │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── Microsoft.WindowsDesktop.App.Ref.sfxproj │ ├── Microsoft.WindowsDesktop.App.Runtime.sfxproj │ ├── PACKAGE.md │ ├── PackageOverrides.txt │ └── WindowsForms.Packaging.targets └── tests/ ├── Directory.Build.targets ├── Microsoft.WindowsDesktop.App.Tests.csproj ├── NuGetArtifactTester.cs ├── RepoDirectoriesProvider.cs └── WindowsDesktopNupkgTests.cs