gitextract_ol0xcjy2/ ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ ├── announcement.yml │ │ ├── bug-report.yml │ │ ├── config.yml │ │ └── tool-request.yml │ ├── copilot-instructions.md │ ├── pull_request_template.md │ └── workflows/ │ ├── check-pinned-versions.yml │ ├── codeql-analysis.yml │ ├── create_github_release.yml │ ├── create_pull_request.yml │ ├── create_sbom_report.yml │ ├── docker-images.yml │ ├── linter.yml │ ├── merge_pull_request.yml │ ├── powershell-tests.yml │ ├── trigger-ubuntu-win-build.yml │ ├── ubuntu2204.yml │ ├── ubuntu2404.yml │ ├── update_github_release.yml │ ├── validate-json-schema.yml │ ├── windows2022.yml │ ├── windows2025-vs2026.yml │ └── windows2025.yml ├── .gitignore ├── .vscode/ │ ├── extensions.json │ ├── settings.json │ └── tasks.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── docs/ │ ├── create-image-and-azure-resources.md │ └── dotnet-ubuntu.md ├── helpers/ │ ├── CheckJsonSchema.ps1 │ ├── CheckOutdatedVersionPinning.ps1 │ ├── CreateAzureVMFromPackerTemplate.ps1 │ ├── GenerateResourcesAndImage.ps1 │ ├── GitHubApi.psm1 │ ├── WaitWorkflowCompletion.ps1 │ └── software-report-base/ │ ├── Calculate-ImagesDifference.ps1 │ ├── SoftwareReport.BaseNodes.psm1 │ ├── SoftwareReport.DifferenceCalculator.psm1 │ ├── SoftwareReport.DifferenceRender.psm1 │ ├── SoftwareReport.Nodes.psm1 │ ├── SoftwareReport.psm1 │ └── tests/ │ ├── SoftwareReport.Difference.E2E.Tests.ps1 │ ├── SoftwareReport.DifferenceCalculator.Unit.Tests.ps1 │ ├── SoftwareReport.DifferenceRender.Unit.Tests.ps1 │ ├── SoftwareReport.E2E.Tests.ps1 │ ├── SoftwareReport.Nodes.Unit.Tests.ps1 │ └── TestHelpers.psm1 ├── images/ │ ├── macos/ │ │ ├── assets/ │ │ │ ├── add-certificate.swift │ │ │ ├── auto-software-update-arm64.exp │ │ │ ├── bashprofile │ │ │ ├── bashrc │ │ │ └── bootstrap-provisioner/ │ │ │ ├── change_password │ │ │ ├── installNewProvisioner.sh │ │ │ ├── kcpassword.py │ │ │ └── setAutoLogin.sh │ │ ├── macos-14-Readme.md │ │ ├── macos-14-arm64-Readme.md │ │ ├── macos-15-Readme.md │ │ ├── macos-15-arm64-Readme.md │ │ ├── macos-26-Readme.md │ │ ├── macos-26-arm64-Readme.md │ │ ├── scripts/ │ │ │ ├── build/ │ │ │ │ ├── Configure-Toolset.ps1 │ │ │ │ ├── Configure-Xcode-Simulators.ps1 │ │ │ │ ├── Install-Toolset.ps1 │ │ │ │ ├── Install-Xcode.ps1 │ │ │ │ ├── Update-XcodeSimulators.ps1 │ │ │ │ ├── configure-auto-updates.sh │ │ │ │ ├── configure-autologin.sh │ │ │ │ ├── configure-hostname.sh │ │ │ │ ├── configure-machine.sh │ │ │ │ ├── configure-ntpconf.sh │ │ │ │ ├── configure-preimagedata.sh │ │ │ │ ├── configure-shell.sh │ │ │ │ ├── configure-ssh.sh │ │ │ │ ├── configure-system.sh │ │ │ │ ├── configure-tccdb-macos.sh │ │ │ │ ├── configure-windows.sh │ │ │ │ ├── configure-xcode.sh │ │ │ │ ├── install-actions-cache.sh │ │ │ │ ├── install-android-sdk.sh │ │ │ │ ├── install-audiodevice.sh │ │ │ │ ├── install-aws-tools.sh │ │ │ │ ├── install-azcopy.sh │ │ │ │ ├── install-bicep.sh │ │ │ │ ├── install-chrome.sh │ │ │ │ ├── install-cocoapods.sh │ │ │ │ ├── install-codeql-bundle.sh │ │ │ │ ├── install-common-utils.sh │ │ │ │ ├── install-dotnet.sh │ │ │ │ ├── install-edge.sh │ │ │ │ ├── install-firefox.sh │ │ │ │ ├── install-gcc.sh │ │ │ │ ├── install-git.sh │ │ │ │ ├── install-homebrew.sh │ │ │ │ ├── install-llvm.sh │ │ │ │ ├── install-mono.sh │ │ │ │ ├── install-nginx.sh │ │ │ │ ├── install-node.sh │ │ │ │ ├── install-openjdk.sh │ │ │ │ ├── install-openssl.sh │ │ │ │ ├── install-php.sh │ │ │ │ ├── install-postgresql.sh │ │ │ │ ├── install-powershell.sh │ │ │ │ ├── install-python.sh │ │ │ │ ├── install-rosetta.sh │ │ │ │ ├── install-ruby.sh │ │ │ │ ├── install-rubygems.sh │ │ │ │ ├── install-rust.sh │ │ │ │ ├── install-safari.sh │ │ │ │ ├── install-swiftlint.sh │ │ │ │ ├── install-unxip.sh │ │ │ │ ├── install-vcpkg.sh │ │ │ │ └── install-xcode-clt.sh │ │ │ ├── docs-gen/ │ │ │ │ ├── Generate-SoftwareReport.ps1 │ │ │ │ ├── SoftwareReport.Android.psm1 │ │ │ │ ├── SoftwareReport.Browsers.psm1 │ │ │ │ ├── SoftwareReport.Common.psm1 │ │ │ │ ├── SoftwareReport.Helpers.psm1 │ │ │ │ ├── SoftwareReport.Java.psm1 │ │ │ │ ├── SoftwareReport.Toolcache.psm1 │ │ │ │ └── SoftwareReport.Xcode.psm1 │ │ │ ├── helpers/ │ │ │ │ ├── Common.Helpers.psm1 │ │ │ │ ├── Xcode.Helpers.psm1 │ │ │ │ ├── Xcode.Installer.psm1 │ │ │ │ ├── confirm-identified-developers-macos14.scpt │ │ │ │ ├── confirm-identified-developers-macos15.scpt │ │ │ │ ├── invoke-tests.sh │ │ │ │ └── utils.sh │ │ │ └── tests/ │ │ │ ├── ActionArchiveCache.Tests.ps1 │ │ │ ├── Android.Tests.ps1 │ │ │ ├── BasicTools.Tests.ps1 │ │ │ ├── Browsers.Tests.ps1 │ │ │ ├── Common.Tests.ps1 │ │ │ ├── Git.Tests.ps1 │ │ │ ├── Helpers.psm1 │ │ │ ├── Java.Tests.ps1 │ │ │ ├── LLVM.Tests.ps1 │ │ │ ├── Linters.Tests.ps1 │ │ │ ├── Mono.Tests.ps1 │ │ │ ├── Node.Tests.ps1 │ │ │ ├── OpenSSL.Tests.ps1 │ │ │ ├── PHP.Tests.ps1 │ │ │ ├── Powershell.Tests.ps1 │ │ │ ├── Python.Tests.ps1 │ │ │ ├── Rosetta.Tests.ps1 │ │ │ ├── Ruby.Tests.ps1 │ │ │ ├── RubyGem.Tests.ps1 │ │ │ ├── RunAll-Tests.ps1 │ │ │ ├── Rust.Tests.ps1 │ │ │ ├── System.Tests.ps1 │ │ │ ├── Toolcache.Tests.ps1 │ │ │ ├── Toolset.Tests.ps1 │ │ │ └── Xcode.Tests.ps1 │ │ ├── templates/ │ │ │ ├── macOS-14.anka.pkr.hcl │ │ │ ├── macOS-14.arm64.anka.pkr.hcl │ │ │ ├── macOS-15.anka.pkr.hcl │ │ │ ├── macOS-15.arm64.anka.pkr.hcl │ │ │ ├── macOS-26.anka.pkr.hcl │ │ │ └── macOS-26.arm64.anka.pkr.hcl │ │ └── toolsets/ │ │ ├── Readme.md │ │ ├── toolset-14.json │ │ ├── toolset-15.json │ │ └── toolset-26.json │ ├── ubuntu/ │ │ ├── Ubuntu2204-Readme.md │ │ ├── Ubuntu2404-Readme.md │ │ ├── assets/ │ │ │ ├── post-gen/ │ │ │ │ ├── cleanup-logs.sh │ │ │ │ ├── environment-variables.sh │ │ │ │ └── systemd-linger.sh │ │ │ └── ubuntu2204.conf │ │ ├── scripts/ │ │ │ ├── build/ │ │ │ │ ├── Configure-Toolset.ps1 │ │ │ │ ├── Install-PowerShellAzModules.ps1 │ │ │ │ ├── Install-PowerShellModules.ps1 │ │ │ │ ├── Install-Toolset.ps1 │ │ │ │ ├── cleanup.sh │ │ │ │ ├── configure-apt-mock.sh │ │ │ │ ├── configure-apt-sources.sh │ │ │ │ ├── configure-apt.sh │ │ │ │ ├── configure-dpkg.sh │ │ │ │ ├── configure-environment.sh │ │ │ │ ├── configure-image-data.sh │ │ │ │ ├── configure-limits.sh │ │ │ │ ├── configure-snap.sh │ │ │ │ ├── configure-system.sh │ │ │ │ ├── install-actions-cache.sh │ │ │ │ ├── install-aliyun-cli.sh │ │ │ │ ├── install-android-sdk.sh │ │ │ │ ├── install-apache.sh │ │ │ │ ├── install-apt-common.sh │ │ │ │ ├── install-apt-vital.sh │ │ │ │ ├── install-aws-tools.sh │ │ │ │ ├── install-azcopy.sh │ │ │ │ ├── install-azure-cli.sh │ │ │ │ ├── install-azure-devops-cli.sh │ │ │ │ ├── install-bazel.sh │ │ │ │ ├── install-bicep.sh │ │ │ │ ├── install-clang.sh │ │ │ │ ├── install-cmake.sh │ │ │ │ ├── install-codeql-bundle.sh │ │ │ │ ├── install-container-tools.sh │ │ │ │ ├── install-docker.sh │ │ │ │ ├── install-dotnetcore-sdk.sh │ │ │ │ ├── install-firefox.sh │ │ │ │ ├── install-gcc-compilers.sh │ │ │ │ ├── install-gfortran.sh │ │ │ │ ├── install-git-lfs.sh │ │ │ │ ├── install-git.sh │ │ │ │ ├── install-github-cli.sh │ │ │ │ ├── install-google-chrome.sh │ │ │ │ ├── install-google-cloud-cli.sh │ │ │ │ ├── install-haskell.sh │ │ │ │ ├── install-heroku.sh │ │ │ │ ├── install-homebrew.sh │ │ │ │ ├── install-java-tools.sh │ │ │ │ ├── install-julia.sh │ │ │ │ ├── install-kotlin.sh │ │ │ │ ├── install-kubernetes-tools.sh │ │ │ │ ├── install-leiningen.sh │ │ │ │ ├── install-microsoft-edge.sh │ │ │ │ ├── install-miniconda.sh │ │ │ │ ├── install-mono.sh │ │ │ │ ├── install-ms-repos.sh │ │ │ │ ├── install-mssql-tools.sh │ │ │ │ ├── install-mysql.sh │ │ │ │ ├── install-nginx.sh │ │ │ │ ├── install-ninja.sh │ │ │ │ ├── install-nodejs.sh │ │ │ │ ├── install-nvm.sh │ │ │ │ ├── install-oc-cli.sh │ │ │ │ ├── install-oras-cli.sh │ │ │ │ ├── install-packer.sh │ │ │ │ ├── install-php.sh │ │ │ │ ├── install-pipx-packages.sh │ │ │ │ ├── install-postgresql.sh │ │ │ │ ├── install-powershell.sh │ │ │ │ ├── install-pulumi.sh │ │ │ │ ├── install-pypy.sh │ │ │ │ ├── install-python.sh │ │ │ │ ├── install-rlang.sh │ │ │ │ ├── install-ruby.sh │ │ │ │ ├── install-rust.sh │ │ │ │ ├── install-sbt.sh │ │ │ │ ├── install-selenium.sh │ │ │ │ ├── install-sqlpackage.sh │ │ │ │ ├── install-swift.sh │ │ │ │ ├── install-terraform.sh │ │ │ │ ├── install-vcpkg.sh │ │ │ │ ├── install-yq.sh │ │ │ │ ├── install-zstd.sh │ │ │ │ ├── list-dpkg.sh │ │ │ │ └── post-build-validation.sh │ │ │ ├── docs-gen/ │ │ │ │ ├── Generate-SoftwareReport.ps1 │ │ │ │ ├── SoftwareReport.Android.psm1 │ │ │ │ ├── SoftwareReport.Browsers.psm1 │ │ │ │ ├── SoftwareReport.CachedTools.psm1 │ │ │ │ ├── SoftwareReport.Common.psm1 │ │ │ │ ├── SoftwareReport.Databases.psm1 │ │ │ │ ├── SoftwareReport.Helpers.psm1 │ │ │ │ ├── SoftwareReport.Java.psm1 │ │ │ │ ├── SoftwareReport.Rust.psm1 │ │ │ │ ├── SoftwareReport.Tools.psm1 │ │ │ │ └── SoftwareReport.WebServers.psm1 │ │ │ ├── helpers/ │ │ │ │ ├── Common.Helpers.psm1 │ │ │ │ ├── etc-environment.sh │ │ │ │ ├── install.sh │ │ │ │ ├── invoke-tests.sh │ │ │ │ └── os.sh │ │ │ └── tests/ │ │ │ ├── ActionArchiveCache.Tests.ps1 │ │ │ ├── Android.Tests.ps1 │ │ │ ├── Apt.Tests.ps1 │ │ │ ├── Browsers.Tests.ps1 │ │ │ ├── CLI.Tools.Tests.ps1 │ │ │ ├── Common.Tests.ps1 │ │ │ ├── Databases.Tests.ps1 │ │ │ ├── DotnetSDK.Tests.ps1 │ │ │ ├── Haskell.Tests.ps1 │ │ │ ├── Helpers.psm1 │ │ │ ├── Java.Tests.ps1 │ │ │ ├── Node.Tests.ps1 │ │ │ ├── PowerShellModules.Tests.ps1 │ │ │ ├── RunAll-Tests.ps1 │ │ │ ├── System.Tests.ps1 │ │ │ ├── Tools.Tests.ps1 │ │ │ ├── Toolset.Tests.ps1 │ │ │ └── WebServers.Tests.ps1 │ │ ├── templates/ │ │ │ ├── build.ubuntu-22_04.pkr.hcl │ │ │ ├── build.ubuntu-24_04.pkr.hcl │ │ │ ├── locals.ubuntu.pkr.hcl │ │ │ ├── source.ubuntu.pkr.hcl │ │ │ └── variable.ubuntu.pkr.hcl │ │ └── toolsets/ │ │ ├── toolset-2204.json │ │ └── toolset-2404.json │ ├── ubuntu-slim/ │ │ ├── Dockerfile │ │ ├── generate-software-report.sh │ │ ├── scripts/ │ │ │ ├── build/ │ │ │ │ ├── configure-apt-sources.sh │ │ │ │ ├── configure-apt.sh │ │ │ │ ├── configure-dpkg.sh │ │ │ │ ├── configure-environment.sh │ │ │ │ ├── configure-image-data-file.sh │ │ │ │ ├── configure-system.sh │ │ │ │ ├── install-actions-cache.sh │ │ │ │ ├── install-apt-common.sh │ │ │ │ ├── install-apt-vital.sh │ │ │ │ ├── install-aws-tools.sh │ │ │ │ ├── install-azcopy.sh │ │ │ │ ├── install-azure-cli.sh │ │ │ │ ├── install-azure-devops-cli.sh │ │ │ │ ├── install-bicep.sh │ │ │ │ ├── install-docker-cli.sh │ │ │ │ ├── install-git-lfs.sh │ │ │ │ ├── install-git.sh │ │ │ │ ├── install-github-cli.sh │ │ │ │ ├── install-google-cloud-cli.sh │ │ │ │ ├── install-ms-repos.sh │ │ │ │ ├── install-nodejs.sh │ │ │ │ ├── install-nvm.sh │ │ │ │ ├── install-pipx-packages.sh │ │ │ │ ├── install-powershell.sh │ │ │ │ ├── install-python.sh │ │ │ │ ├── install-yq.sh │ │ │ │ └── install-zstd.sh │ │ │ ├── docs-gen/ │ │ │ │ ├── Common.Helpers.psm1 │ │ │ │ ├── Generate-SoftwareReport.ps1 │ │ │ │ ├── SoftwareReport.Common.psm1 │ │ │ │ ├── SoftwareReport.Helpers.psm1 │ │ │ │ └── SoftwareReport.Tools.psm1 │ │ │ ├── entrypoint.sh │ │ │ └── helpers/ │ │ │ ├── cleanup.sh │ │ │ ├── etc-environment.sh │ │ │ ├── install.sh │ │ │ └── os.sh │ │ ├── test.sh │ │ ├── toolsets/ │ │ │ └── toolset.json │ │ ├── ubuntu-slim-Readme.md │ │ └── ubuntu-slim-Report.json │ └── windows/ │ ├── Windows2022-Readme.md │ ├── Windows2025-Readme.md │ ├── Windows2025-VS2026-Readme.md │ ├── assets/ │ │ └── post-gen/ │ │ ├── GenerateIISExpressCertificate.ps1 │ │ ├── InternetExplorerConfiguration.ps1 │ │ ├── Msys2FirstLaunch.ps1 │ │ ├── VSConfiguration.ps1 │ │ └── warmup.vdproj │ ├── scripts/ │ │ ├── build/ │ │ │ ├── Configure-BaseImage.ps1 │ │ │ ├── Configure-DeveloperMode.ps1 │ │ │ ├── Configure-Diagnostics.ps1 │ │ │ ├── Configure-DotnetSecureChannel.ps1 │ │ │ ├── Configure-DynamicPort.ps1 │ │ │ ├── Configure-GDIProcessHandleQuota.ps1 │ │ │ ├── Configure-ImageDataFile.ps1 │ │ │ ├── Configure-PowerShell.ps1 │ │ │ ├── Configure-Shell.ps1 │ │ │ ├── Configure-System.ps1 │ │ │ ├── Configure-SystemEnvironment.ps1 │ │ │ ├── Configure-Toolset.ps1 │ │ │ ├── Configure-User.ps1 │ │ │ ├── Configure-WindowsDefender.ps1 │ │ │ ├── Install-AWSTools.ps1 │ │ │ ├── Install-ActionsCache.ps1 │ │ │ ├── Install-AliyunCli.ps1 │ │ │ ├── Install-AndroidSDK.ps1 │ │ │ ├── Install-Apache.ps1 │ │ │ ├── Install-AzureCli.ps1 │ │ │ ├── Install-AzureCosmosDbEmulator.ps1 │ │ │ ├── Install-AzureDevOpsCli.ps1 │ │ │ ├── Install-Bazel.ps1 │ │ │ ├── Install-Chocolatey.ps1 │ │ │ ├── Install-ChocolateyPackages.ps1 │ │ │ ├── Install-Chrome.ps1 │ │ │ ├── Install-CodeQLBundle.ps1 │ │ │ ├── Install-DACFx.ps1 │ │ │ ├── Install-Docker.ps1 │ │ │ ├── Install-DockerCompose.ps1 │ │ │ ├── Install-DockerWinCred.ps1 │ │ │ ├── Install-DotnetSDK.ps1 │ │ │ ├── Install-EdgeDriver.ps1 │ │ │ ├── Install-Firefox.ps1 │ │ │ ├── Install-Git.ps1 │ │ │ ├── Install-GitHub-CLI.ps1 │ │ │ ├── Install-Haskell.ps1 │ │ │ ├── Install-IEWebDriver.ps1 │ │ │ ├── Install-JavaTools.ps1 │ │ │ ├── Install-Kotlin.ps1 │ │ │ ├── Install-KubernetesTools.ps1 │ │ │ ├── Install-LLVM.ps1 │ │ │ ├── Install-Mercurial.ps1 │ │ │ ├── Install-Mingw64.ps1 │ │ │ ├── Install-Miniconda.ps1 │ │ │ ├── Install-MongoDB.ps1 │ │ │ ├── Install-Msys2.ps1 │ │ │ ├── Install-MysqlCli.ps1 │ │ │ ├── Install-NSIS.ps1 │ │ │ ├── Install-NativeImages.ps1 │ │ │ ├── Install-Nginx.ps1 │ │ │ ├── Install-NodeJS.ps1 │ │ │ ├── Install-OpenSSL.ps1 │ │ │ ├── Install-PHP.ps1 │ │ │ ├── Install-Pipx.ps1 │ │ │ ├── Install-PostgreSQL.ps1 │ │ │ ├── Install-PowerShellModules.ps1 │ │ │ ├── Install-PowershellAzModules.ps1 │ │ │ ├── Install-PowershellCore.ps1 │ │ │ ├── Install-PyPy.ps1 │ │ │ ├── Install-R.ps1 │ │ │ ├── Install-RootCA.ps1 │ │ │ ├── Install-Ruby.ps1 │ │ │ ├── Install-Rust.ps1 │ │ │ ├── Install-SQLOLEDBDriver.ps1 │ │ │ ├── Install-SQLPowerShellTools.ps1 │ │ │ ├── Install-Sbt.ps1 │ │ │ ├── Install-Selenium.ps1 │ │ │ ├── Install-ServiceFabricSDK.ps1 │ │ │ ├── Install-Stack.ps1 │ │ │ ├── Install-Toolset.ps1 │ │ │ ├── Install-TortoiseSvn.ps1 │ │ │ ├── Install-VSExtensions.ps1 │ │ │ ├── Install-Vcpkg.ps1 │ │ │ ├── Install-VisualStudio.ps1 │ │ │ ├── Install-WDK.ps1 │ │ │ ├── Install-WSL2.ps1 │ │ │ ├── Install-WebPlatformInstaller.ps1 │ │ │ ├── Install-WinAppDriver.ps1 │ │ │ ├── Install-WindowsFeatures.ps1 │ │ │ ├── Install-WindowsUpdates.ps1 │ │ │ ├── Install-WindowsUpdatesAfterReboot.ps1 │ │ │ ├── Install-Wix.ps1 │ │ │ ├── Install-Zstd.ps1 │ │ │ ├── Invoke-Cleanup.ps1 │ │ │ └── Post-Build-Validation.ps1 │ │ ├── docs-gen/ │ │ │ ├── Generate-SoftwareReport.ps1 │ │ │ ├── SoftwareReport.Android.psm1 │ │ │ ├── SoftwareReport.Browsers.psm1 │ │ │ ├── SoftwareReport.CachedTools.psm1 │ │ │ ├── SoftwareReport.Common.psm1 │ │ │ ├── SoftwareReport.Databases.psm1 │ │ │ ├── SoftwareReport.Helpers.psm1 │ │ │ ├── SoftwareReport.Java.psm1 │ │ │ ├── SoftwareReport.Tools.psm1 │ │ │ ├── SoftwareReport.VisualStudio.psm1 │ │ │ └── SoftwareReport.WebServers.psm1 │ │ ├── helpers/ │ │ │ ├── AndroidHelpers.ps1 │ │ │ ├── ChocoHelpers.ps1 │ │ │ ├── ImageHelpers.psd1 │ │ │ ├── ImageHelpers.psm1 │ │ │ ├── InstallHelpers.ps1 │ │ │ ├── PathHelpers.ps1 │ │ │ ├── VisualStudioHelpers.ps1 │ │ │ └── test/ │ │ │ └── ImageHelpers.Tests.ps1 │ │ └── tests/ │ │ ├── ActionArchiveCache.Tests.ps1 │ │ ├── Android.Tests.ps1 │ │ ├── Apache.Tests.ps1 │ │ ├── Browsers.Tests.ps1 │ │ ├── CLI.Tools.Tests.ps1 │ │ ├── ChocoPackages.Tests.ps1 │ │ ├── Databases.Tests.ps1 │ │ ├── Docker.Tests.ps1 │ │ ├── DotnetSDK.Tests.ps1 │ │ ├── Git.Tests.ps1 │ │ ├── Haskell.Tests.ps1 │ │ ├── Helpers.psm1 │ │ ├── Java.Tests.ps1 │ │ ├── LLVM.Tests.ps1 │ │ ├── MSYS2.Tests.ps1 │ │ ├── Miniconda.Tests.ps1 │ │ ├── Nginx.Tests.ps1 │ │ ├── Node.Tests.ps1 │ │ ├── PHP.Tests.ps1 │ │ ├── PipxPackages.Tests.ps1 │ │ ├── PowerShellAzModules.Tests.ps1 │ │ ├── PowerShellModules.Tests.ps1 │ │ ├── RunAll-Tests.ps1 │ │ ├── Rust.Tests.ps1 │ │ ├── SSDTExtensions.Tests.ps1 │ │ ├── Shell.Tests.ps1 │ │ ├── Tools.Tests.ps1 │ │ ├── Toolset.Tests.ps1 │ │ ├── VisualStudio.Tests.ps1 │ │ ├── Vsix.Tests.ps1 │ │ ├── WDK.Tests.ps1 │ │ ├── WinAppDriver.Tests.ps1 │ │ ├── WindowsFeatures.Tests.ps1 │ │ └── Wix.Tests.ps1 │ ├── templates/ │ │ ├── build.windows-2022.pkr.hcl │ │ ├── build.windows-2025-vs2026.pkr.hcl │ │ ├── build.windows-2025.pkr.hcl │ │ ├── locals.windows.pkr.hcl │ │ ├── source.windows.pkr.hcl │ │ └── variable.windows.pkr.hcl │ └── toolsets/ │ ├── toolset-2022.json │ ├── toolset-2025-vs2026.json │ └── toolset-2025.json ├── images.CI/ │ ├── credscan-exclusions.json │ ├── linux-and-win/ │ │ ├── build-image.ps1 │ │ ├── cleanup.ps1 │ │ └── create-release.ps1 │ ├── measure-provisioners-duration.ps1 │ └── shebang-linter.ps1 └── schemas/ └── toolset-schema.json