Menu
  • HOME
  • TAGS

Slowcheetah installed but there's no transform option

visual-studio-2013,app-config,slowcheetah

I had to do the following before it worked: Install the package from their site instead of from NuGet Restart VS Then the Add Transform option started showing up in the drop-down menu....

SlowCheetah: How to Inlcude transformed files from a class library referenced in a a second project to that projects output?

.net,transformation,web.config-transform,slowcheetah,config-transformation

I'll post my own solution here, I ended up giving up on SlowCheetah and just doing it directly in a custom transform step in the build file (.csproj). <Target Name="AfterBuild"> <ItemGroup> <!-- Files to transform --> <ConfigurationFile Include="$(OutputPath)\Config\*.config" Exclude="$(OutputPath)\Config\*.*.config" /> <!-- Files to use to transform --> <TransformationFile Include="$(OutputPath)\Config\*.*.config" />...

SlowCheetah not working on c# console application

c#,slowcheetah

the solution is: 1- Uninstall SlowCheetah. 2- Install it again using This Link! 3- Referesh Visual Studio ...