Search code examples
visual-studiovisual-studio-2010visual-studio-2012slowcheetah

Slow Cheetah not working in when building


I have added Cheeatah to simplify managing my configuration.

I can see the changes in the Preview. But when I look at the config when I build I dont see it transforming my config file. I have selected the configuration and click build. Am I missing something


Solution

  • Make sure the configuration file reference in the project file as the TransformOnBuild node with a value of True, below is an example:

    <None Include="App.config">
        <TransformOnBuild>True</TransformOnBuild>
    </None>