2012-04-24 49 views
22

我可以創建.config文件並將其包含到web.config中嗎? 我該怎麼做?我可以創建.config文件並將其包含到web.config中嗎?

UPD。 如果你想單獨的配置文件,例如,移動的appSettings到另一個文件接下來必須做到:在web.config中

<appSettings configSource="myAppSettings.config" /> 

在myAppSettings.config:

+1

是否有可能做的部分?我的意思是一些設置屬於web.config而其他一些配置文件? – 2016-11-10 06:24:58

回答

22

這是不完全清楚你想要做什麼,但所有配置部分可以存儲在一個單獨的文件中,並使用configSource屬性在主文件.config中引用。

查看this博客文章的詳細信息。

+0

非常感謝!現在一切都按原樣進行。 – 2012-04-25 17:32:47

17

這是多CONFIGS整合到一個web.config中

代碼在web.config中的方式:

<appSettings configSource="config\appSettings.config"/> 
<nlog configSource="config\nlog.config"/> 
<applicationSettings> 
     <MyApp.UI.Properties.Settings configSource="config\Settings.APGUI.config"/> 
     <MyApp.BusinessServices.Properties.Settings configSource="config\Settings.Business.config"/> 
     <MyApp.Auditing.Properties.Settings configSource="config\Settings.Auditing.config"/> 
</applicationSettings> 

更多:Managing complex Web.Config files between deployment environments

相關問題