开发者

Visual C# Express : Build on 64 bit, deploy on 32 bit?

Using Vis开发者_开发问答ual C# Express On a 64 bit system (OS and machine):

I am able to set the target build platform to 32 bit platform and build my application. It runs fine on the 64 bit system. However when I run the same executable on the 32 bit system I get an error of the form "Unhandled Exception: System.IO.FileNotFoundException: The specified module could not be found. (Exception from HRESULT: 0x8007007E)"

In general is this expected to not work, or do I have a dependency problem as the error implies?

Thanks,

RM


Should work. But seems that your app is missing a DLL. Check your app with DependencyWalker on the target machine.


Sounds like you have a library which is not 32bit. The missing library has already been covered by the other posters, so I will say that you have a library which is a 64bit only library and when the type loader is checking to make sure it matches the signature is wrong and hence its not getting loaded.

If you could post a sample project (hello world) that exhibits the same problem (without importing 3rd party libraries) we might be able to troubleshoot further.

In your build project, make sure all libraries being built are 32bit and make sure that you are moving them all to the target machine. I prefer to wipe out the target directory and then place the files in, rather than overwrite.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜