gitextract_7_2kiagc/ ├── .azuredevops/ │ └── dependabot.yml ├── .config/ │ └── dotnet-tools.json ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── .editorconfig │ ├── Prime-ForCopilot.ps1 │ ├── actions/ │ │ └── publish-artifacts/ │ │ └── action.yaml │ ├── copilot-instructions.md │ ├── renovate.json │ ├── skills/ │ │ └── update-library-template/ │ │ ├── SKILL.md │ │ └── template-release-notes.md │ └── workflows/ │ ├── copilot-setup-steps.yml │ ├── docs.yml │ ├── docs_validate.yml │ └── libtemplate-update.yml ├── .gitignore ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ ├── mcp.json │ ├── settings.json │ └── tasks.json ├── .vsts-ci.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CodeQL.yml ├── Directory.Build.props ├── Directory.Build.rsp ├── Directory.Build.targets ├── Directory.Packages.props ├── LICENSE ├── README.md ├── Restore.cmd ├── SECURITY.md ├── SUPPORT.md ├── ThirdPartyNotices.txt ├── appveyor.yml ├── azure-pipelines/ │ ├── Archive-SourceCode.ps1 │ ├── BuildStageVariables.yml │ ├── Get-InsertionPRId.ps1 │ ├── GlobalVariables.yml │ ├── Merge-CodeCoverage.ps1 │ ├── NuGetSbom.props │ ├── PoliCheckExclusions.xml │ ├── PostPRMessage.ps1 │ ├── TSAOptions.json │ ├── WIFtoPATauth.yml │ ├── apiscan.yml │ ├── archive-sourcecode.yml │ ├── build.yml │ ├── dotnet.yml │ ├── falsepositives.gdnsuppress │ ├── install-dependencies.yml │ ├── libtemplate-update.yml │ ├── microbuild.after.yml │ ├── microbuild.before.yml │ ├── no_authenticode.txt │ ├── no_strongname.txt │ ├── official.yml │ ├── prepare-insertion-stages.yml │ ├── publish-codecoverage.yml │ ├── publish-symbols.yml │ ├── publish_artifacts.ps1 │ ├── release-deployment-prep.yml │ ├── release.yml │ ├── unofficial.yml │ ├── vs-insertion-script.ps1 │ ├── vs-insertion.yml │ └── vs-validation.yml ├── azure-pipelines.yml ├── doc/ │ ├── targets.md │ ├── transforming_files.md │ └── update.md ├── docfx/ │ ├── .gitignore │ ├── docfx.json │ ├── docs/ │ │ ├── features.md │ │ ├── getting-started.md │ │ └── toc.yml │ ├── index.md │ └── toc.yml ├── global.json ├── init.cmd ├── init.ps1 ├── nuget.config ├── samples/ │ ├── FSharpDemo/ │ │ ├── FSharpDemo.fsproj │ │ ├── Program.fs │ │ ├── app.Debug.config │ │ ├── app.Release.config │ │ └── app.config │ ├── Linked-files/ │ │ ├── connectionStrings.Debug.config │ │ ├── connectionStrings.Release.config │ │ └── connectionStrings.config │ ├── SlowCheetah.Samples.sln │ ├── TransformSetupProject/ │ │ ├── .gitignore │ │ └── TransformSetupProject.vdproj │ ├── WebDemo/ │ │ ├── Default.aspx │ │ ├── Default.aspx.cs │ │ ├── Default.aspx.designer.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── WebDemo.csproj │ │ ├── connectionStrings.Debug.config │ │ ├── connectionStrings.Release.config │ │ ├── connectionStrings.ToPkg.config │ │ └── connectionStrings.config │ ├── WindowsAzure1/ │ │ ├── ServiceConfiguration.Cloud.cscfg │ │ ├── ServiceConfiguration.Local.cscfg │ │ ├── ServiceDefinition.csdef │ │ └── WindowsAzure1.ccproj │ ├── WorkerRole1/ │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── WorkerRole.cs │ │ ├── WorkerRole1.csproj │ │ ├── XMLFile1.xml │ │ ├── app.Debug.config │ │ ├── app.Release.config │ │ ├── app.config │ │ ├── contacts.Debug.xml │ │ ├── contacts.Release.xml │ │ ├── contacts.xml │ │ └── packages.config │ └── Wpf.Transform/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets/ │ │ └── BureauBlue.xaml │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── TransformModel.cs │ ├── Wpf.Transform.csproj │ ├── app.Debug.config │ ├── app.Release.config │ ├── app.config │ ├── connectionStrings.Debug.config │ ├── connectionStrings.Release.config │ ├── connectionStrings.config │ ├── contacts.Debug.xml │ ├── contacts.Release.xml │ └── contacts.xml ├── src/ │ ├── .editorconfig │ ├── AssemblyInfo.cs │ ├── AssemblyInfo.vb │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── Microsoft.VisualStudio.SlowCheetah/ │ │ ├── Build/ │ │ │ ├── Microsoft.VisualStudio.SlowCheetah.App.targets │ │ │ ├── Microsoft.VisualStudio.SlowCheetah.ClickOnce.targets │ │ │ ├── Microsoft.VisualStudio.SlowCheetah.SetupProject.targets │ │ │ ├── Microsoft.VisualStudio.SlowCheetah.Web.targets │ │ │ ├── Microsoft.VisualStudio.SlowCheetah.targets │ │ │ ├── TransformTask.cs │ │ │ └── readme.txt │ │ ├── Exceptions/ │ │ │ └── TransformFailedException.cs │ │ ├── Logging/ │ │ │ ├── ITransformationLogger.cs │ │ │ ├── JsonShimLogger.cs │ │ │ ├── TransformationTaskLogger.cs │ │ │ └── XmlShimLogger.cs │ │ ├── Microsoft.VisualStudio.SlowCheetah.csproj │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Resources/ │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Transformer/ │ │ ├── ITransformer.cs │ │ ├── JsonTransformer.cs │ │ ├── TransformUtilities.cs │ │ ├── TransformerFactory.cs │ │ └── XmlTransformer.cs │ ├── Microsoft.VisualStudio.SlowCheetah.Tests/ │ │ ├── App.config │ │ ├── BaseTest.cs │ │ ├── BuildTests/ │ │ │ ├── ConfigTransformTestsBase.cs │ │ │ ├── ConsoleAppTests.cs │ │ │ ├── TestProjects/ │ │ │ │ ├── ConsoleApp/ │ │ │ │ │ ├── App.Debug.config │ │ │ │ │ ├── App.Release.config │ │ │ │ │ ├── App.config │ │ │ │ │ ├── ConsoleApp.csproj │ │ │ │ │ ├── Other.Debug.config │ │ │ │ │ ├── Other.Release.config │ │ │ │ │ ├── Other.config │ │ │ │ │ ├── Program.cs │ │ │ │ │ └── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Directory.Build.props │ │ │ │ ├── Directory.Build.targets │ │ │ │ └── WebApplication/ │ │ │ │ ├── Other.Debug.config │ │ │ │ ├── Other.Release.config │ │ │ │ ├── Other.config │ │ │ │ ├── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Web.Debug.config │ │ │ │ ├── Web.Release.config │ │ │ │ ├── Web.config │ │ │ │ └── WebApplication.csproj │ │ │ └── WebAppTests.cs │ │ ├── Microsoft.VisualStudio.SlowCheetah.Tests.csproj │ │ ├── TestUtilities.cs │ │ ├── TransformTest.cs │ │ └── example.txt │ ├── Microsoft.VisualStudio.SlowCheetah.VS/ │ │ ├── Directory.Build.targets │ │ ├── Microsoft.VisualStudio.SlowCheetah.VS.csproj │ │ ├── Microsoft.VisualStudio.SlowCheetah.VS.pkgdef │ │ ├── NugetHandler/ │ │ │ ├── PackageHandlers/ │ │ │ │ ├── BackgroundInstallationHandler.cs │ │ │ │ ├── BasePackageHandler.cs │ │ │ │ ├── DialogInstallationHandler.cs │ │ │ │ ├── EmptyHandler.cs │ │ │ │ ├── IPackageHandler.cs │ │ │ │ ├── NuGetUninstaller.cs │ │ │ │ ├── NugetInstaller.cs │ │ │ │ ├── TargetsUninstaller.cs │ │ │ │ └── UserInstallationHandler.cs │ │ │ ├── SlowCheetahNuGetManager.cs │ │ │ └── VsProjectTypes.cs │ │ ├── Options/ │ │ │ ├── AdvancedOptionsDialogPage.cs │ │ │ ├── AdvancedOptionsUserControl.Designer.cs │ │ │ ├── AdvancedOptionsUserControl.cs │ │ │ ├── AdvancedOptionsUserControl.resx │ │ │ ├── BaseOptionsDialogPage.cs │ │ │ ├── OptionsDialogPage.cs │ │ │ ├── OptionsUserControl.Designer.cs │ │ │ ├── OptionsUserControl.cs │ │ │ └── OptionsUserControl.resx │ │ ├── Package/ │ │ │ ├── AddTransformCommand.cs │ │ │ ├── BaseCommand.cs │ │ │ ├── PackageSolutionEvents.cs │ │ │ ├── PreviewTransformCommand.cs │ │ │ └── SlowCheetahPackageLogger.cs │ │ ├── Resources/ │ │ │ ├── Guids.cs │ │ │ ├── PkgCmdID.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── SlowCheetah.vsct │ │ ├── SlowCheetahPackage.cs │ │ ├── TransformationPreviewLogger.cs │ │ ├── Utilities/ │ │ │ ├── PackageUtilities.cs │ │ │ └── ProjectUtilities.cs │ │ ├── VSPackage.Designer.cs │ │ ├── VSPackage.resx │ │ └── source.extension.vsixmanifest │ ├── Microsoft.VisualStudio.SlowCheetah.VS.Tests/ │ │ ├── App.config │ │ ├── Microsoft.VisualStudio.SlowCheetah.VS.Tests.csproj │ │ ├── PackageUtilitiesTest.cs │ │ └── xunit.runner.json │ ├── Microsoft.VisualStudio.SlowCheetah.Vsix/ │ │ └── Microsoft.VisualStudio.SlowCheetah.Vsix.csproj │ ├── OptProf.targets │ ├── SlowCheetah.sln │ └── build/ │ ├── no_authenticode.txt │ └── no_strongname.txt ├── stylecop.json ├── test/ │ ├── .editorconfig │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── Microsoft.VisualStudio.SlowCheetah.Tests/ │ │ ├── App.config │ │ ├── BaseTest.cs │ │ ├── BuildTests/ │ │ │ ├── ConfigTransformTestsBase.cs │ │ │ ├── ConsoleAppTests.cs │ │ │ ├── TestProjects/ │ │ │ │ ├── ConsoleApp/ │ │ │ │ │ ├── App.Debug.config │ │ │ │ │ ├── App.Release.config │ │ │ │ │ ├── App.config │ │ │ │ │ ├── ConsoleApp.csproj │ │ │ │ │ ├── Other.Debug.config │ │ │ │ │ ├── Other.Release.config │ │ │ │ │ ├── Other.config │ │ │ │ │ ├── Program.cs │ │ │ │ │ └── Properties/ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Directory.Build.props │ │ │ │ ├── Directory.Build.targets │ │ │ │ └── WebApplication/ │ │ │ │ ├── Other.Debug.config │ │ │ │ ├── Other.Release.config │ │ │ │ ├── Other.config │ │ │ │ ├── Web.Debug.config │ │ │ │ ├── Web.Release.config │ │ │ │ ├── Web.config │ │ │ │ └── WebApplication.csproj │ │ │ └── WebAppTests.cs │ │ ├── Microsoft.VisualStudio.SlowCheetah.Tests.csproj │ │ ├── TestUtilities.cs │ │ ├── TransformTest.cs │ │ └── example.txt │ ├── Microsoft.VisualStudio.SlowCheetah.VS.Tests/ │ │ ├── App.config │ │ ├── Microsoft.VisualStudio.SlowCheetah.VS.Tests.csproj │ │ └── PackageUtilitiesTest.cs │ └── dirs.proj ├── tools/ │ ├── Check-DotNetRuntime.ps1 │ ├── Check-DotNetSdk.ps1 │ ├── Convert-PDB.ps1 │ ├── Download-NuGetPackage.ps1 │ ├── Get-ArtifactsStagingDirectory.ps1 │ ├── Get-CodeCovTool.ps1 │ ├── Get-ExternalSymbolFiles.ps1 │ ├── Get-LibTemplateBasis.ps1 │ ├── Get-NuGetTool.ps1 │ ├── Get-ProcDump.ps1 │ ├── Get-SymbolFiles.ps1 │ ├── Get-TempToolsPath.ps1 │ ├── Install-DotNetSdk.ps1 │ ├── Install-NuGetCredProvider.ps1 │ ├── Install-NuGetPackage.ps1 │ ├── MergeFrom-Template.ps1 │ ├── Prepare-Legacy-Symbols.ps1 │ ├── Set-EnvVars.ps1 │ ├── artifacts/ │ │ ├── APIScanInputs.ps1 │ │ ├── LocBin.ps1 │ │ ├── VSInsertion.ps1 │ │ ├── Variables.ps1 │ │ ├── _all.ps1 │ │ ├── _stage_all.ps1 │ │ ├── build_logs.ps1 │ │ ├── coverageResults.ps1 │ │ ├── deployables.ps1 │ │ ├── projectAssetsJson.ps1 │ │ ├── symbols.ps1 │ │ ├── testResults.ps1 │ │ └── test_symbols.ps1 │ ├── dotnet-test-cloud.ps1 │ ├── publish-CodeCov.ps1 │ ├── test.runsettings │ └── variables/ │ ├── BusinessGroupName.ps1 │ ├── DotNetSdkVersion.ps1 │ ├── InsertJsonValues.ps1 │ ├── InsertPropsValues.ps1 │ ├── InsertTargetBranch.ps1 │ ├── InsertVersionsValues.ps1 │ ├── LocLanguages.ps1 │ ├── ProfilingInputsDropName.ps1 │ ├── ProfilingInputsPropsName.ps1 │ ├── SymbolsFeatureName.ps1 │ ├── VstsDropNames.ps1 │ ├── _all.ps1 │ └── _define.ps1 └── version.json