0

wasabi 'AutoScaling' 機能を使用する Windows azure プロジェクトを作成すると、以下の例外が発生し、app.config ファイルも構成しました。

例外:

「ファイルまたはアセンブリ 'Microsoft.WindowsAzure.StorageClient, Version=1.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' またはその依存関係の 1 つを読み込めませんでした。見つかったアセンブリのマニフェスト定義がアセンブリ参照と一致しません。(HRESULT からの例外) : 0x80131040)」

オートスケーラー objAutoScaler= EnterpriseLibraryContainer.Current.GetInstance(); // ここで例外が発生しました

何か助けてください。

4

1 に答える 1

1

まだこの問題があるかどうかはわかりませんが、プロジェクトでこれらのアセンブリを参照していますか?

Microsoft.WindowsAzure.StorageClient

Microsoft.WindowsAzure.ServiceRuntime

また、Azure SDK のバージョン 1.7 を使用している場合は、 app.config に次のセクションを追加する必要があります。

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  <dependentAssembly>
    <assemblyIdentity name="Microsoft.WindowsAzure.ServiceRuntime" publicKeyToken="31BF3856AD364E35" culture="neutral"/>
    <bindingRedirect oldVersion="0.0.0.0-1.7.0.0" newVersion="1.7.0.0"/>
  </dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  <dependentAssembly>
    <assemblyIdentity name="Microsoft.WindowsAzure.StorageClient" publicKeyToken="31BF3856AD364E35" culture="neutral"/>
    <bindingRedirect oldVersion="0.0.0.0-1.7.0.0" newVersion="1.7.0.0"/>
  </dependentAssembly>
</assemblyBinding>

于 2012-11-02T14:49:20.667 に答える