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