System.BadImageFormatException: 64-битный проект MVC 2 - с пошаговой инструкцией по воспроизведению ошибки - PullRequest
3 голосов
/ 12 марта 2011

Я хочу создать 64-битное веб-приложение ASP.NET MVC 2 и связать его с библиотекой 64-битных классов. Но при этом я получаю "System.BadImageFormatException" -Exception

Каждый проект / решение, которое я добавляю, - это .Net 4.0:

  1. Я создаю новое пустое решение под названием «MySolution»
  2. Я добавляю к этому решению новый проект (веб-приложение ASP.NET MVC 2), который называется «MyMvcApplication», без теста, чтобы упростить его (Visual Studio просит создать его)

До этого момента «MyMvcApplication» работал так, как должен. Даже при установке на x64.

  1. Я добавляю новый проект для решения (Библиотека классов), который называется «MyClassLibrary»
  2. Я установил «MyMvcApplication» как стартовый проект (он должен быть уже, но только для полного списка того, что я делаю).
  3. Я захожу в меню Build / Configuration Manager, создаю новую платформу «x64», копируя из «Любого процессора». Затем я установил оба проекта на x64.
  4. Теперь у меня есть Debug | x64, а для «MyClassLibrary» и «MyMvcApplication» помечена платформа для x64 и «Build box».
  5. Я добавляю ссылку из «MyMvcApplication» в «MyClassLibrary» (добавьте ссылку, попал на вкладку «Проекты» и выберите «MyClassLibrary»).

Я запускаю «MyMvcApplication» и получаю следующую ошибку:

Could not load file or assembly 'MyClassLibrary' or one of its dependencies.
An attempt was made to load a program with an incorrect format. 
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information about
the error and where it originated in the code. 

Exception Details: System.BadImageFormatException: Could not load file or assembly
'MyClassLibrary' or one of its dependencies. An attempt was made to load a program
with an incorrect format.

Source Error: 
An unhandled exception was generated during the execution of the current web request.
Information regarding the origin and location of the exception can be identified
using the exception stack trace below. 


Assembly Load Trace: The following information can be helpful to determine why the assembly 'MyClassLibrary' could not be loaded.

=== Pre-bind state information ===
LOG: User = Dev\Chris
LOG: DisplayName = MyClassLibrary
 (Partial)
WRN: Partial binding information was supplied for an assembly:
WRN: Assembly Name: MyClassLibrary | Domain ID: 2
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:/Test/MySolution/MyMvcApplication/
LOG: Initial PrivatePath = c:\Test\MySolution\MyMvcApplication\bin
Calling assembly : (Unknown).
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: c:\Test\MySolution\MyMvcApplication\web.config
LOG: Using host configuration file: 
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/root/f962adb4/1764faec/MyClassLibrary.DLL.
LOG: Attempting download of new URL file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/Temporary ASP.NET Files/root/f962adb4/1764faec/MyClassLibrary/MyClassLibrary.DLL.
LOG: Attempting download of new URL file:///c:/Test/MySolution/MyMvcApplication/bin/MyClassLibrary.DLL.
ERR: Failed to complete setup of assembly (hr = 0x8007000b). Probing terminated.

EDIT:

запуск "corflags c: \ Test \ MySolution \ MyMvcApplication \ bin \ MyClassLibrary.DLL", как предложено от bobbymcr в командной строке visual studio, которую я получаю:

Version   : v4.0.30319
CLR Header: 2.5
PE        : PE32+
CorFlags  : 1
ILONLY    : 1
32BIT     : 0
Signed    : 0

Но я не знаю, что делать с этой информацией: - (

EDIT2:

При переключении всех проектов на x86 и запуске веб-приложения ASP.NET MVC 2 я получаю следующую ошибку:

Parser Error 
Description: An error occurred during the parsing of a resource required to service this
request. Please review the following specific parse error details and modify your
source file appropriately. 

Parser Error Message: Could not load type 'MyMvcApplication.MvcApplication'.

Source Error: 

Line 1:  <%@ Application Codebehind="Global.asax.cs"
Inherits="MyMvcApplication.MvcApplication" Language="C#" %>


Source File: /global.asax    Line: 1

Поэтому я получаю сообщение об ошибке, независимо от того, переключаюсь ли я на x86 или x64.

Что я могу сделать?

1 Ответ

4 голосов
/ 30 августа 2012

Дело в том, что x64 битное приложение может загружать как x86, так и x64 сборки. Но приложение x86 может загружать ТОЛЬКО сборки x86. Casini (Visual Studio Development Server) - приложение x86, поэтому оно не поддерживает запуск x64 веб-приложений. Веб-приложения x64 необходимо размещать только в IIS, которые поддерживают как x86, так и x64.

Также убедитесь, что целевой платформой для вашей библиотеки классов является «.NET Framework 4.0», но не «.Net 4.0 Профиль клиента».

Пожалуйста, отметьте это сообщение как Ответ, если оно решит проблему.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...