.net 实战 根据configuration选项生成不同的conf…
2018-06-22 07:44:02来源:未知 阅读 ()
项目开发过程中都会遇到的问题,开发环境的配置肯定是和生产环境不一样的,
一直都是重复手动拷贝,但是配置太多拷贝的弊端就显现出来了,
为了解决这个问题可以有几种方案:
1.Web.config Transformation
Transformation的相关知识点可以参考下面的文章,
这个东西有个不好的地方,就是只有在publish的时候才执行,在开发调试期间是不起作用的,
所以一般应用在网站发布期间
https://msdn.microsoft.com/en-us/library/dd465326(v=vs.110).aspx
http://www.cnblogs.com/worksguo/archive/2009/08/29/1556307.html
2.MSBuild 在BuildBefore事件中应用XslTransformation
示例代码: https://github.com/xlb378917466/MSBuild_BuildBefore
知识点学习:http://www.cnblogs.com/shanyou/p/3452938.html
这个功能很强大,这里使用了BuildBefore事件,这样在开发调试期间就可以获取到修改之后的配置,
<Target Name="BeforeBuild">
<XslTransformation Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" XslInputPath="Debug.xslt" XmlInputPaths="WebTemplate.config" OutputPaths="Web.config" />
<XslTransformation Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" XslInputPath="Release.xslt" XmlInputPaths="WebTemplate.config" OutputPaths="Web.config" />
</Target>
这里定义了两个xslt文件用来输出最终的web.config文件,当然你要自己定义一个原始的输入文件WebTemplate.config,
这个例子简单的APPSetting中的值根据实际的Configuration进行修改
<appSettings> <add key="Mode" value="Release" /> </appSettings>
Debug.Xslt
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output indent="yes" /> <xsl:template match="@*|node()"> <xsl:copy> <xsl:apply-templates select="@*|node()" /> </xsl:copy> </xsl:template> <xsl:template match="/configuration/appSettings/add[@key='Mode']"> <add key="Mode" value="Debug"/> </xsl:template> </xsl:stylesheet>
Release.Xslt
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output indent="yes" /> <xsl:template match="@*|node()"> <xsl:copy> <xsl:apply-templates select="@*|node()" /> </xsl:copy> </xsl:template> <xsl:template match="/configuration/appSettings/add[@key='Mode']"> <add key="Mode" value="Release"/> </xsl:template> </xsl:stylesheet>
3.通过Symbols(条件编译)来使用C#代码控制
参考之前的一篇文章:条件编译
这种做法一般是在加载其他XML之类的配置时才用得到,至少我是这个时候用的
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- asp.net源程序编译为dll文件并调用的实现过程 2020-03-29
- Asp.net MVC SignalR来做实时Web聊天实例代码 2020-03-29
- ASP.NET MVC中jQuery与angularjs混合应用传参并绑定数据 2020-03-29
- Asp.Net中WebForm的生命周期 2020-03-29
- ASP.NET使用Ajax返回Json对象的方法 2020-03-23
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash