У меня есть приложение ASP.NET site / WPF / Windows phone, которое использует три связанных проекта.В проекте данных (Myproject.DAL) я использую ссылки на System.Data.SQLite
и ICSharpCode.SharpZipLib
.Последний, похоже, скомпилирован для версии 2.0 в VS, хотя я скачал версию 4.0 (возможно, мое неправильное толкование).
Когда я пытаюсь загрузить ASP.NETНа 4 сайте я получаю сообщение об ошибке:
Could not load file or assembly 'ChickenPing.DAL' or one of its dependencies. An attempt was made to load a program with an incorrect format.
Я помню, что в прошлом эта проблема была вызвана библиотекой System.Data.SQLite, которая является двоичным файлом x86.Я обновил, и это определенно не причина.Все проекты настроены для работы под .NET 4 x86.Можно ли как-то отследить истинную причину этого?Я предполагаю, что где-то должна быть проблемная DLL, но MSBuild, похоже, не сообщает о каких-либо проблемах.
Несмотря на включение ведения журнала Fusion, единственная загадочная ошибка, которую я получаю:
=== Pre-bind state information ===
LOG: User = IIS APPPOOL\CP
LOG: DisplayName = ChickenPing.DAL
(Partial)
WRN: Partial binding information was supplied for an assembly:
WRN: Assembly Name: ChickenPing.DAL | Domain ID: 9
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:/Users/echilon/Documents/CP/
LOG: Initial PrivatePath = C:\Users\echilon\Documents\CP\bin
Calling assembly : (Unknown).
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: C:\Users\echilon\Documents\CP\web.config
LOG: Using host configuration file: C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet.config
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework64\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/Framework64/v4.0.30319/Temporary ASP.NET Files/root/7bfa5a6e/c6574e91/ChickenPing.DAL.DLL.
LOG: Attempting download of new URL file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/Temporary ASP.NET Files/root/7bfa5a6e/c6574e91/ChickenPing.DAL/ChickenPing.DAL.DLL.
LOG: Attempting download of new URL file:///C:/Users/echilon/Documents/CP/bin/ChickenPing.DAL.DLL.
ERR: Failed to complete setup of assembly (hr = 0x8007000b). Probing terminated.
Что на самом деле не дает большого понимания.