2012-11-27 38 views
6

我有一个控制台应用程序c#项目,依赖于NHibernate 3.3.2和ShapArch.NHibernate 2.0.4.628已经用NHibernate 3.3.1编译(据我所知 - 我可能是错的,但是当我创建了2.0.4 SharpArch项目时,它通过Nuget下载了NH 3.3.1)。在Visual Studio中显示的dll版本不能反映引用的dll文件/产品版本

为什么Visual Studio在引用的dll是3.3.2.4000时显示NHibernate是版本3.3.1.4000?所有引用的特定版本属性都设置为false。 SharpArch的版本出现在VS 2.0.0.0中,而不是文件/产品版本2.0.4。

在应用程序配置我:

<runtime> 
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> 
    <dependentAssembly> 
     <assemblyIdentity name="NHibernate" publicKeyToken="aa95f207798dfdb4" culture="neutral" /> 
     <bindingRedirect oldVersion="0.0.0.0-3.3.1.4000" newVersion="3.3.2.4000" /> 
    </dependentAssembly> 
    </assemblyBinding> 
</runtime> 

该应用程序失败,并加载:

System.IO.FileLoadException was unhandled 
    Message=Could not load file or assembly 'NHibernate, Version=3.3.2.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) 
    Source=MyApp.ResourcesGenerator 
    FileName=NHibernate, Version=3.3.2.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4 
    FusionLog="" 
    StackTrace: 
     at MyApp.ResourcesGenerator.Program.InitializeNHibernateSession() 
     at SharpArch.NHibernate.NHibernateInitializer.InitializeNHibernateOnce(Action initMethod) in d:\Builds\SharpArch2\Solutions\SharpArch.NHibernate\NHibernateInitializer.cs:line 54 
     at MyApp.ResourcesGenerator.Program.Initialize() in C:\projects\tc\Trunk\Source_LibsUpgrade\Applications\PerformanceManagement\MyApp.ResourcesGenerator\Program.cs:line 149 
     at MyApp.ResourcesGenerator.Program.Main(String[] args) in C:\projects\tc\Trunk\Source_LibsUpgrade\Applications\PerformanceManagement\MyApp.ResourcesGenerator\Program.cs:line 31 
     at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) 
     at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() 
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx) 
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) 
     at System.Threading.ThreadHelper.ThreadStart() 
    InnerException: System.IO.FileLoadException 
     Message=Could not load file or assembly 'NHibernate, Version=3.3.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) 
     FileName=NHibernate, Version=3.3.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4 

我甚至不知道为什么它试图加载3.3.0.4000时尖锐架构已经与3.3.1编译。

回答

11

NHibernate的3.3.2.GA有版本3.3.2.4000 文件,但装配版本仍然是3.3.1.4000。这样做是为了允许升级NHibernate而不需要绑定重定向。所有未来的小版本升级NHibernate也将遵循这种模式。

所以你的解决方案只是删除绑定重定向。

这里令人困惑的部分是Windows资源管理器只显示文件和产品版本,但Visual Studio只显示程序集版本。

+3

希望有人创建一个VS扩展,以显示属性列表中的文件版本。 –

+0

现在,我将始终使用.net反射器,它始终向我显示版本以及dll依赖的dll版本 – costa