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....
.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" />...
the solution is: 1- Uninstall SlowCheetah. 2- Install it again using This Link! 3- Referesh Visual Studio ...