文書化されていないことをしようとしているので、web.config変換のヘルプが必要です。私のweb.configには空のconnectionStrings要素があります。
デバッグでは、変換ツールでconfigSource="file.local"をconnectionStrings要素に追加したいと思います。しかし、リリースでは、connectionString要素を追加したいと思います。
要約すると、私は
<connectionStrings>
</connectionStrings>
そして私はそれをに変換する必要があります
<connectionStrings configSource="file.local">
</connectionStrings>
そして:
<connectionStrings>
<clear/>
<add name="Abc" connectionString="bla bla bla" provider="xxx" />
</connectionStrings>
誰かがこれをまだやったことがありますか?
前もって感謝します、
ファビアン