0
我需要幫助web.config轉換,因爲我試圖做一些沒有記錄。我的web.config有一個空的connectionStrings元素。VS 2010 web.config轉換
在調試中,我希望轉換工具向connectionStrings元素添加一個configSource =「file.local」。但在發行版中,我希望它添加一個connectionString元素。
因此,要總結,我有
<connectionStrings>
</connectionStrings>
,我需要把它轉換爲
<connectionStrings configSource="file.local">
</connectionStrings>
而且到:
<connectionStrings>
<clear/>
<add name="Abc" connectionString="bla bla bla" provider="xxx" />
</connectionStrings>
有人已經這樣做了嗎?
由於提前,
的Fabian