4

いくつかの外部 DLL を含む Web アプリケーションをコンパイルして実行しようとしています。

アプリケーションはエラーなしでコンパイルされますが、実行すると次のエラーが表示されます。

ファイルまたはアセンブリ 'JsonFx.Json' またはその依存関係の 1 つを読み込めませんでした。不正な形式のプログラムをロードしようとしました。

この問題に対する最も一般的な 2 つの解決策は、IIS サーバーで 32 ビット アプリケーションを有効にすることと、解決策が一部のプロジェクトを 32 ビット モードでコンパイルし、他のプロジェクトを 64 ビット モードでコンパイルしないようにすることです。私はこれらの両方を試しましたが、役に立ちませんでした。

どんな助けでも大歓迎です。

アセンブリ ロード トレース:

Assembly manager loaded from:  C:\Windows\Microsoft.NET\Framework\v4.0.30319\clr.dll
Running under executable  C:\Windows\SysWOW64\inetsrv\w3wp.exe
--- A detailed error log follows. 

=== Pre-bind state information ===
LOG: DisplayName = JsonFx.Json
 (Partial)
WRN: Partial binding information was supplied for an assembly:
WRN: Assembly Name: JsonFx.Json | Domain ID: 34
WRN: A partial bind occurs when only part of the assembly display name is provided.
WRN: This might result in the binder loading an incorrect assembly.
WRN: It is recommended to provide a fully specified textual identity for the assembly,
WRN: that consists of the simple name, version, culture, and public key token.
WRN: See whitepaper http://go.microsoft.com/fwlink/?LinkId=109270 for more information and common solutions to this issue.
LOG: Appbase = file:///C:/workspace/<project name>/source/<project name>/
LOG: Initial PrivatePath = C:\workspace\<project name>\source\<project name>\bin
Calling assembly : (Unknown).
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: C:\workspace\<project name>\source\<Project name>\web.config
LOG: Using host configuration file: C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet.config
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v4.0.30319\config\machine.config.
LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
LOG: Attempting download of new URL file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/Temporary ASP.NET Files/<project name>/b862caa3/ad6832cd/JsonFx.Json.DLL.
LOG: Attempting download of new URL file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/Temporary ASP.NET Files/<project name>/b862caa3/ad6832cd/JsonFx.Json/JsonFx.Json.DLL.
LOG: Attempting download of new URL file:///C:/workspace/<project name>/source/<project>/bin/JsonFx.Json.DLL.
ERR: Failed to complete setup of assembly (hr = 0x8007000b). Probing terminated.
4

2 に答える 2

2

これを Visual Studio の IIS Express で実行していると仮定しています。プロジェクトが 32 ビットではなく 64 ビットにコンパイルするように設定されている場合は、64 ビット IIS Expressを有効にする必要があります。

手順:

  1. 案内する:HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\12.0\WebProjects
  2. 「Use64BitIISExpress」という名前の REG_DWORD 値があることを確認します。そうでない場合は、作成します。
  3. 値を 1 から設定します (デフォルト = 0)。
于 2014-06-10T15:18:45.643 に答える
1

JsonFx.Json.dll を再ダウンロードして問題を修正しました。そもそもなぜ機能するのかはまだ完全にはわかりませんが、そもそも機能しないよりもさらに不快です..

于 2014-06-10T16:40:29.050 に答える