Which config transform is applied when running in Visual Studio?
We have a web config and a series of config transforms that set the connection string value for Dev/Test/Live environments. These transforms work fine when the site is published.
To avoid confusion, I replaced the default value with set_in_transform ala ...
<connectionStrings>
<add name="LLPG.Connection"
connectionString="set_in_transform"/>
</connectionStrings>
However if we just run the site in Visual Studio, the set_in_transform value isn't been set.
Is a config transform actually run when you run in Visual Studio?