一、条件编译的基本知识
Msdn关于条件编译的说明:
可以使用条件编译选择特定的代码节进行编译,而排除其他代码节。例如,可能需要编写调试语句来比较同一编程任务的不同方法的速度,或者可能需要本地化用于多种语言的应用程序。条件编译语句被设计为在编译时(而不是在运行时)运行。
条件编译指令有以下四种:#if、#elif、#else、#endif
条件编译符号有两种可能的状态:已定义的或未定义的。
条件编译符号可以使用&&(且)、||(或)、!(非)等运算符
示例一:
#if DEBUG
...
#elif Other
...
#else
...
#endif
示例二
#if (Debug && !Mytest)
Console.WriteLine("Debug is defined");
#elif (!Debug && Mytest)
Console.WriteLine("Mytest is defined");
#elif (Debug && Mytest)
Console.WriteLine("Debug and Mytest are defined");
#else
Console.WriteLine("Debug and Mytest are not defined");
console.ReadLine();
#endif
如果在NKFW配置中引用Areas.NKFW项目,在JXC配置中引用Areas.JXC项目,可以增加Condition属性,具体修改如下:
<ProjectReference Include="..\Areas.JXC\Areas.JXC.csproj" Condition="'$(Configuration)|$(Platform)' == 'JXC|AnyCPU'">
<Project>{5636E56E-09CB-4F8D-803B-8DCAF1B5C174}</Project>
<Name>Areas.JXC</Name>
</ProjectReference>
<ProjectReference Include="..\Areas.NKFW\Areas.NKFW.csproj" Condition="'$(Configuration)|$(Platform)' == 'NKFW|AnyCPU'">
<Project>{D54C97B1-9D07-4AC4-94AB-88886AB3FC74}</Project>
<Name>Areas.NKFW</Name>
</ProjectReference>
此外,在配置管理器中设置:NKFW不编译Areas.JXC,JXC中不编译Areas.NKFW
<connectionStrings>
<add
name="MyDB2"
connectionString="Data Source=.;Initial Catalog=NKFWOA;Persist Security Info=True;User ID=sa;Password=123456;MultipleActiveResultSets=true"
xdt:Transform="SetAttributes"
xdt:Locator="Match(name)"
/>
...
</connectionStrings>
第一项表示替换MyDB2的connectionString为新值
此设置仅作用于发布,在VS调试时是无效的,调试时可以使用条件编译找到相应的连接串
Msdn关于条件编译的说明:
可以使用条件编译选择特定的代码节进行编译,而排除其他代码节。例如,可能需要编写调试语句来比较同一编程任务的不同方法的速度,或者可能需要本地化用于多种语言的应用程序。条件编译语句被设计为在编译时(而不是在运行时)运行。
条件编译指令有以下四种:#if、#elif、#else、#endif
条件编译符号有两种可能的状态:已定义的或未定义的。
条件编译符号可以使用&&(且)、||(或)、!(非)等运算符
示例一:
#if DEBUG
...
#elif Other
...
#else
...
#endif
示例二
#if (Debug && !Mytest)
Console.WriteLine("Debug is defined");
#elif (!Debug && Mytest)
Console.WriteLine("Mytest is defined");
#elif (Debug && Mytest)
Console.WriteLine("Debug and Mytest are defined");
#else
Console.WriteLine("Debug and Mytest are not defined");
console.ReadLine();
#endif
二、在Visual Studio .NET 2010上增加配置
打开“配置管理器”,可以增加配置
三、在项目引用中使用配置
在界面上没有找到相应的操作入口,经查阅网上资料,可以通过手工修改csproj文件实现如果在NKFW配置中引用Areas.NKFW项目,在JXC配置中引用Areas.JXC项目,可以增加Condition属性,具体修改如下:
<ProjectReference Include="..\Areas.JXC\Areas.JXC.csproj" Condition="'$(Configuration)|$(Platform)' == 'JXC|AnyCPU'">
<Project>{5636E56E-09CB-4F8D-803B-8DCAF1B5C174}</Project>
<Name>Areas.JXC</Name>
</ProjectReference>
<ProjectReference Include="..\Areas.NKFW\Areas.NKFW.csproj" Condition="'$(Configuration)|$(Platform)' == 'NKFW|AnyCPU'">
<Project>{D54C97B1-9D07-4AC4-94AB-88886AB3FC74}</Project>
<Name>Areas.NKFW</Name>
</ProjectReference>
此外,在配置管理器中设置:NKFW不编译Areas.JXC,JXC中不编译Areas.NKFW
四、asp.net项目部署时根据配置生成不同的web.config
解决方案资源管理器的web.config右键菜单点“添加配置转换”<connectionStrings>
<add
name="MyDB2"
connectionString="Data Source=.;Initial Catalog=NKFWOA;Persist Security Info=True;User ID=sa;Password=123456;MultipleActiveResultSets=true"
xdt:Transform="SetAttributes"
xdt:Locator="Match(name)"
/>
...
</connectionStrings>
第一项表示替换MyDB2的connectionString为新值
此设置仅作用于发布,在VS调试时是无效的,调试时可以使用条件编译找到相应的连接串