これを手伝ってください。私はAsyncCtpLibraryとC#5ctpコンパイラを使用してコンソールアプリケーションを作成しています。待っているコードを実際に実行するようになったとき、私はこれを手に入れました:
System.BadImageFormatException was unhandled
Message=An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B)
Source=AsyncCtpLibrary
StackTrace:
Server stack trace:
at [...].<Execute>d__1c.MoveNext()
at [...].Execute()
at [...].<Move>d__1d.MoveNext() in[..]:line 266
Exception rethrown at [0]:
at System.Runtime.CompilerServices.AsyncVoidMethodBuilder.<SetException>b__1(Object state)
at System.Threading.QueueUserWorkItemCallback.WaitCallback_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
at System.Threading.ThreadPoolWorkQueue.Dispatch()
at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback()
InnerException:
参照するdllがありませんか?
重要な新しいもの
私の失敗したメソッドは次のようになります。
public async override Task<bool> Execute()
{
//do stuff
await stuff;
//do other stuff
await base.Execute()
//do other stuff
return true;
}
Jon Skeetのアドバイスに従って、間違いを少しずつ再現しようとしましたが、今ではawait base.Execute()行がキラーであることがわかります。その行をコメントアウトすると、すべてが実行されます。そのままにしておくと、メソッドの呼び出しはすぐに失敗します(base.Execute()に到達したときではありません)。だから私はctpコンパイラが何かおかしなことをしていると思います。なんで?私は絶対に何をすべきではありませんか?バグの大きさはどれくらいですか?
古いもの:
編集:
32ビット/ 64ビットの問題に関しては、私のシステムは32ビット(仮想マシン内、気をつけてください)であり、私が知る限り、AsyncCtpLibrary.dllにはアンマネージコードが含まれていません。私のすべてのプロジェクト(クラスライブラリと単一のコンソールアプリ)には、すべて次のような
ビルドタブがあります。
編集:Fusionログビューアも確認しました。AsyncCtpLibraryはエラーなしでロードされます:
*** Assembly Binder Log Entry (6/10/2011 @ 9:04:11 PM) ***
The operation was successful.
Bind result: hr = 0x0. The operation completed successfully.
Assembly manager loaded from: C:\Windows\Microsoft.NET\Framework\v4.0.30319\clr.dll
Running under executable C:\Users\Daver\Documents\Visual Studio 2010\Projects\[...]\bin\Debug\MyApp.exe
--- A detailed error log follows.
=== Pre-bind state information ===
LOG: User = WIN-N74LV38NLV3\Daver
LOG: DisplayName = AsyncCtpLibrary, Version=1.0.4107.18181, Culture=neutral, PublicKeyToken=31bf3856ad364e35
(Fully-specified)
LOG: Appbase = file:///C:/Users/Daver/Documents/Visual Studio 2010/Projects/[...]/bin/Debug/
LOG: Initial PrivatePath = NULL
LOG: Dynamic Base = NULL
LOG: Cache Base = NULL
LOG: AppName = MyApp.exe
Calling assembly : MyLibrary, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null.
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: C:\Users\Daver\Documents\Visual Studio 2010\Projects\[...]\bin\Debug\MyApp.exe.Config
LOG: Using host configuration file:
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v4.0.30319\config\machine.config.
LOG: Post-policy reference: AsyncCtpLibrary, Version=1.0.4107.18181, Culture=neutral, PublicKeyToken=31bf3856ad364e35
LOG: GAC Lookup was unsuccessful.
LOG: Attempting download of new URL file:///C:/Users/Daver/Documents/Visual Studio 2010/Projects/[...]/bin/Debug/AsyncCtpLibrary.DLL.
LOG: Assembly download was successful. Attempting setup of file: C:\Users\Daver\Documents\Visual Studio 2010\Projects\[...]\bin\Debug\AsyncCtpLibrary.dll
LOG: Entering run-from-source setup phase.
LOG: Assembly Name is: AsyncCtpLibrary, Version=1.0.4107.18181, Culture=neutral, PublicKeyToken=31bf3856ad364e35
LOG: Binding succeeds. Returns assembly from C:\Users\Daver\Documents\Visual Studio 2010\Projects\[...]\bin\Debug\AsyncCtpLibrary.dll.
LOG: Assembly is loaded in default load context.
また、コンパイラで生成されたクラスのMoveNext()メソッドのILコードを確認しました。この<Execute>d__1c
メソッドが参照するアセンブリ([assemblyName])は、mscorlib、System.Core、およびAsyncCtpLibraryのみです。
私は自分のdllとAsyncCtpLibraryの両方のマニフェストをチェックしました、私の言いました.corflags 0x00000003 // ILONLY 32BITREQUIRED
、AsyncCtpLibraryは言いました.corflags 0x00000009 // ILONLY
、これが問題になる可能性があるかどうかはわかりません。
助けてください、私はアイデアがありません!