开发者

Different configuaration string for specific build configuration

how can i configure my Visual Studio 2010 C# solution/project so that when i select a Debug configuration - ConnectionString#1 would be used Release - Connection string #2 and "Myconfiguarion1" (which was copied from debug) -> Connection string #3

I got to it work with debug in such a way:

if (ConfigurationManager.ConnectionStrings["ConnectionString1"] != null)
{
    winApplication.ConnectionString = ConfigurationManager.ConnectionStrin开发者_如何学Cgs["ConnectionString1"].ConnectionString;
}

#if DEBUG
if(ConfigurationManager.ConnectionStrings["ConnectionString2"] != null) 
{
    winApplication.ConnectionString = ConfigurationManager.ConnectionStrings["ConnectionString2"].ConnectionString;
}
#endif

but this doesn't work with "MybuildConfiguration"


If you're trying to do this for the web.config file of an ASP.NET project in Visual Studio 2010, it's built-in via XML Transformations for web.config.

Web Deployment: Web.Config Transformations

If you're trying to do this for an app.config file, you can use the same transformations but working with them is a bit of a hack:

Visual Studio App.config XML Transformations

Both boil down to actually using separate config files for the different environments you are going to be running your app in. That allows you to supply different values for any of the keys based on what environment you're running in.


I think you can use conditional compilation constants. To define them, you have to open project property window, select compilation tab, and define a name in the conditional constants field, e.g. CONN1.

This constants get defined only for your active build configuration, so you can define CONN1 for Debug configuration,CONN2 for Release configuration,CONN3 for your custom configuration etc.

then, in your code, you can use:

#ifdef CONN1
//use connection 1
#else
 #ifdef CONN2
  //use connection 2

 #else
  //use connection 3

 #endif
#endif
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜