.NET MVC アプリケーションを Microsoft Azure クラウド サービスに移行しています。設定を web.config から Azure の csdef/cscfg に移動する予定です。
私の web.config ファイルには、カスタム構成セクションがほとんどありません。
<configuration>
<configSections>
<section name="myConfig1" type="MyNamespace.MyClassType" />
</configSections>
<myConfig1 someProperty1="someValue1" someProperty2="someValue2" someProperty3="someValue3">
<test1 testproperty=testValue />
<test2 xProperty=xValue />
</myConfig1>
</configuration>
アプリケーションの起動時にこの構成を使用しています (global.asax)。これをcsdef/cscfgに変換したいです。通常、cscfg には構成設定のキーと値のペアがあります。
Azureでカスタム構成をサービス構成に変換する方法を誰かに提案できますか?