- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近将我的解决方案升级到 Visual Studio 2013,并在测试库中从 2.6.2 更新了对 NUnit 2.6.3 的引用。在 Visual Studio 中一切正常,但我驱动部署系统的 MSBuild 脚本完全无法运行。
构建文件位于一个构建目录中,该目录包含一个 MSBuild 文件夹,其中包含引用的 MSBuild.Community.Targets 文件,以及一个包含 nunit-console.exe 和各种依赖文件的 NUnit 目录。我也将它们升级到 2.6.3。
我刚收到这个错误...
' System.IO.FileLoadException: Could not load file or assembly 'nunit.framework, Version=2.6.0.12051, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) '
我完全不明白 - 这之前工作正常并且所有代码都引用 2.6.2 所以我不知道 2.6.0 来自哪里或者我到底是如何告诉它寻找 2.6.3 (就在那里!!)
这是我的构建文件(如果有帮助的话)...
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="DeployAndPackage" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- IMPORTS -->
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildProjectDirectory)\MSBuild\MSBuild.Community.Tasks.targets" />
<UsingTask TaskName="TransformXml" AssemblyFile="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.Tasks.dll"/>
<!-- PROPERTIES -->
<PropertyGroup Label="BuildOptions">
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">Any CPU</Platform>
<OutputPath Condition=" '$(OutputPath)' == '' ">bin\</OutputPath>
<ProjectConfiguration Condition=" '$(Configuration)' == '' ">Debug</ProjectConfiguration>
<ProjectConfiguration Condition=" '$(Configuration)' == 'Test' ">Debug</ProjectConfiguration>
<ProjectConfiguration Condition=" '$(Configuration)' == 'Staging' ">Release</ProjectConfiguration>
<ProjectConfiguration Condition=" '$(Configuration)' == 'Live' ">Release</ProjectConfiguration>
</PropertyGroup>
<PropertyGroup Label="DirectoryPaths">
<RootDir>$(MSBuildProjectDirectory)\..\</RootDir>
<TestsDir>$(RootDir)Tests\</TestsDir>
<DatabaseDir>$(RootDir)SiansPlan.Database\</DatabaseDir>
<RelativePackageDir>$(RootDir)pkg\</RelativePackageDir>
<Solution>$(RootDir)SiansPlan.sln</Solution>
<SP_Auth>$(RootDir)SiansPlan.Authentication\SiansPlan.Authentication.csproj</SP_Auth>
<SP_Database>$(DatabaseDir)SiansPlan.Database.sqlproj</SP_Database>
<SP_Entities>$(RootDir)SiansPlan.Entities\SiansPlan.Entities.csproj</SP_Entities>
<SP_Domain>$(RootDir)SiansPlan.Domain\SiansPlan.Domain.csproj</SP_Domain>
<SP_Providers>$(RootDir)SiansPlan.Providers\SiansPlan.Providers.csproj</SP_Providers>
<SP_ApiDir>$(RootDir)SiansPlan.Api\</SP_ApiDir>
<SP_Api>$(SP_ApiDir)SiansPlan.Api.csproj</SP_Api>
<SP_Web>$(RootDir)SiansPlan.Web\SiansPlan.Web.csproj</SP_Web>
<SP_SpaDir>$(RootDir)SiansPlan.Spa\</SP_SpaDir>
<SP_Spa>$(SP_SpaDir)SiansPlan.Spa.csproj</SP_Spa>
<SP_Test_Support>$(TestsDir)SiansPlan.TestSupport\SiansPlan.TestSupport.csproj</SP_Test_Support>
<SP_Entities_Tests>$(TestsDir)SiansPlan.Entities.Tests\SiansPlan.Entities.Tests.csproj</SP_Entities_Tests>
<SP_Auth_Tests>$(TestsDir)SiansPlan.Authentication.Tests\SiansPlan.Authentication.Tests.csproj</SP_Auth_Tests>
<SP_Domain_Tests>$(TestsDir)SiansPlan.Domain.Tests\SiansPlan.Domain.Tests.csproj</SP_Domain_Tests>
<SP_Api_Tests>$(TestsDir)SiansPlan.Api.Tests\SiansPlan.Api.Tests.csproj</SP_Api_Tests>
</PropertyGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>2ae13924-f2dd-48b1-9acb-755e0ee2b0d1</ProjectGuid>
</PropertyGroup>
<!-- BUILD -->
<Target Name="Compile">
<MSBuild Projects="$(SP_Auth)" Targets="Rebuild" Properties="Configuration=$(ProjectConfiguration);Platform=$(Platform);OutputPath=bin\" />
<MSBuild Projects="$(SP_Database)" Targets="Rebuild" Properties="Configuration=$(ProjectConfiguration);Platform=$(Platform);OutputPath=bin\" />
<MSBuild Projects="$(SP_Entities)" Targets="Rebuild" Properties="Configuration=$(ProjectConfiguration);Platform=$(Platform);OutputPath=bin\" />
<MSBuild Projects="$(SP_Domain)" Targets="Rebuild" Properties="Configuration=$(ProjectConfiguration);Platform=$(Platform);OutputPath=bin\" />
<MSBuild Projects="$(SP_Providers)" Targets="Rebuild" Properties="Configuration=$(ProjectConfiguration);Platform=$(Platform);OutputPath=bin\" />
<MSBuild Projects="$(SP_Api)" Targets="Rebuild" Properties="Configuration=$(ProjectConfiguration);Platform=$(Platform);OutputPath=bin\" />
<MSBuild Projects="$(SP_Web)" Targets="Rebuild" Properties="Configuration=$(ProjectConfiguration);Platform=$(Platform);OutputPath=bin\" />
<MSBuild Projects="$(SP_Spa)" Targets="Rebuild" Properties="Configuration=$(ProjectConfiguration);Platform=$(Platform);OutputPath=bin\" />
<MSBuild Projects="$(SP_Test_Support)" Targets="Rebuild" Properties="Configuration=$(ProjectConfiguration);Platform=$(Platform);OutputPath=bin\" />
<MSBuild Projects="$(SP_Entities_Tests)" Targets="Rebuild" Properties="Configuration=$(ProjectConfiguration);Platform=$(Platform);OutputPath=bin\" />
<MSBuild Projects="$(SP_Auth_Tests)" Targets="Rebuild" Properties="Configuration=$(ProjectConfiguration);Platform=$(Platform);OutputPath=bin\" />
<MSBuild Projects="$(SP_Domain_Tests)" Targets="Rebuild" Properties="Configuration=$(ProjectConfiguration);Platform=$(Platform);OutputPath=bin\" />
<MSBuild Projects="$(SP_Api_Tests)" Targets="Rebuild" Properties="Configuration=$(ProjectConfiguration);Platform=$(Platform);OutputPath=bin\" />
</Target>
<!-- TEST -->
<Target Name="RunTests" DependsOnTargets="Compile">
<CreateItem Include="$(RootDir)Tests\*.Tests\bin\*.Tests.dll">
<Output TaskParameter="Include" ItemName="TestAssemblies" />
</CreateItem>
<NUnit Assemblies="@(TestAssemblies)" ToolPath="$(MSBuildProjectDirectory)\NUnit" DisableShadowCopy="true" />
</Target>
<!-- TRANSFORM -->
<Target Name="Transform">
<TransformXml Source="$(SP_ApiDir)\Web.config"
Transform="$(SP_ApiDir)\Web.$(Configuration).config"
Destination="$(SP_ApiDir)\Web.transformed.config"
StackTrace="False" />
<TransformXml Source="$(SP_SpaDir)\Web.config"
Transform="$(SP_SpaDir)\Web.$(Configuration).config"
Destination="$(SP_SpaDir)\Web.transformed.config"
StackTrace="False" />
</Target>
<!-- DEPLOY & PACKAGE -->
<Target Name="DeployAndPackage" DependsOnTargets="RunTests">
<CallTarget Targets="Transform"/>
<ItemGroup>
<SqlFiles Include="$(DatabaseDir)Upgrades\*.sql" />
</ItemGroup>
<RemoveDir Directories="$(RelativePackageDir)" />
<MakeDir Directories="$(RelativePackageDir)" />
<MakeDir Directories="$(RelativePackageDir)sql\" />
<Copy SourceFiles="@(SqlFiles)" DestinationFolder="$(RootDir)pkg\sql" />
</Target>
</Project>
构建的“RunTests”部分的完整输出是...
RunTests:
C:\Development\Clients\SiansPlan\source\build\NUnit\nunit-console.exe /nologo /noshadow C:\Development\Clients\SiansPlan\source\build..\Tests\SiansPlan.Api.Tests\bin\SiansPlan.Api.Tests.dll C:\Development\Clients\SiansPlan\source\build..\Tests\SiansPlan.Api.Tests\bin\SiansPlan.Domain.Tests.dll C:\Development\Clients\SiansPlan\source\build..\Tests\SiansPlan.Authentication.Tests\bin\SiansPlan.Authentication.Tests.dll C:\Development\Clients\SiansPlan\source\build..\Tests\SiansPlan.Domain.Tests\bin\SiansPlan.Domain.Tests.dll C:\Development\Clients\SiansPlan\source\build..\Tests\SiansPlan.Entities.Tests\bin\SiansPlan.Entities.Tests.dll C:\Development\Clients\SiansPlan\source\build..\Tests\SiansPlan.Logging.Tests\bin\SiansPlan.Domain.Tests.dll C:\Development\Clients\SiansPlan\source\build..\Tests\SiansPlan.Logging.Tests\bin\SiansPlan.Logging.Tests.dll ProcessModel: Default DomainUsage: Multiple Execution Runtime: net-4.5 Unhandled Exception: System.IO.FileLoadException: Could not load file or assembly 'nunit.framework, Version=2.6.0.12051, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
File name: 'nunit.framework, Version=2.6.0.12051, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77'
任何想法都将受到欢迎,因为我正站在桌面舞台上。我问过我的小熊、我的橡皮鸭和 Soundwave,坦率地说,它们都没有多大用处!
最佳答案
一个晦涩问题的晦涩答案 - 似乎我有一个旧图书馆闲逛(Domain.Tests in Logging 是一个赠品)导致它倒下。
关于msbuild - 升级后 NUnit 在 MSBuild 中运行失败 - System.IO.FileLoadException : Could not load file or assembly nunit. 框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23141159/
我有一个线程可以像这样初始化: Utility.Log("1"); myThread = new Thread(new ThreadStart(delegate { Utility.Log("
我正在为我的 MVC-4 应用程序设置 API,当我在 Globals.asax.cs 中取消注释这一行时: WebApiConfig.Register(GlobalConfiguration.Con
所以,我知道有很多类似的问题,但在过去的一天里我已经翻阅了很多答案,但没有任何帮助。 我正在开发一个引用大量外部 DLL 的 WPF 应用程序。特别是有一个 DLL,称为 DefinitionInte
我在使用 Enterprise Library 3.1 May 2007 版本时遇到此错误。我们正在开发一个产品,在 Subversion Trunk 目录下有一个公共(public)的 lib 目录
在更新所有 NuGet 包后,我的一个应用程序在启动时开始崩溃并出现 FileLoadException: Could not load file or assembly 'Microsoft.Pra
我有一个 .net 3.5 WinForms 应用程序在我的机器上运行良好,但在另一台机器上它立即崩溃并出现 system.io.fileloadexception。不幸的是,绝对没有关于哪个文件加载
我的问题: 我有一个签名的程序集 A.dll,它的版本为 1.0.0.0 我有另一个引用 A.dll 的程序集(比如说 B.dll)。 一旦两个程序集都加载正常,没有任何问题。 现在如果 A.dll
我正在尝试使用 OpenNURBS 工具包 (see here) 构建应用程序我在调试时收到 FileLoadException 并显示以下消息: Mixed mode assembly is bui
所以我通过 Nuget 安装了 SignalR,它依赖于随后安装的 Microsoft.Owin。每当我运行我的应用程序时,它都会在 Startup.cs 的 app.MapSignalR(); 行中
我正在编写一个应用程序,我想根据用户提供的路径加载一个文件。我检查文件的扩展名,当扩展名与我识别的任何内容都不匹配时,我想抛出异常。 我可以抛出一个IOException。但是,我想可能会有一个更详细
我的 Azure 函数 (.netstandard 2.0) 由于 FileLoadException 而无法运行。通常我会使用 Fuslog 来找出缺少哪个依赖项,但我还没有找到一种方法来 RDP
我在一个使用 Moq 和 AutoFixture.AutoMoq 的特定项目的构建服务器上运行单元测试时遇到问题。这是错误: System.IO.FileLoadException : Could n
我有一个遵循 MVVM 模式的 WPF 应用程序。我们最近签署了该应用程序,现在我在启动时获得了很多第一次机会异常(exception)。我已将问题追溯到以下几点: 在任何 View 中,如果我在初始
我正在开发一个小型演示,从 DLL 文件组装类。 这是我的代码: string path = @"\\192.168.1.3\shareFolder\testzwm.dll"; Assembly as
我正在开发一个从 DLL 文件组装类的小演示。 这是我的代码: string path = @"\\192.168.1.3\shareFolder\testzwm.dll"; Assembly ass
我正在将 Suave 应用程序部署到 Azure Web 应用。应用程序失败并出现以下错误(可在 eventlog.xml 中找到)。 1026
由于跨 protected 网络共享移动和创建许多文件,我有一个需要进行大量模拟的应用程序。我创建了一个简单的静态类,它有一个方法接受用户、域、密码和一个包含您需要在模拟上下文中运行的代码的委托(de
我有一个包含许多 dll 的 .net 3.5 应用程序,我试图在不构建整个应用程序的情况下重建特定的 dll,但是在用新的替换旧的之后,应用程序抛出异常,因为它无法加载新的 dll异常(except
我正在尝试通过 Adam Freeman 的“Pro ASP.NET MVC 5”一书来学习 ASP.NET MVC。不幸的是,所有使用 Ninject 的项目都会抛出相同的错误 An excepti
每次我在我之前创建的 dll 程序集中调用 toJSONString() 方法时,调试器都会在 Visual Studio 的输出窗口中不断给我这个“System.IO.FileLoadExcepti
我是一名优秀的程序员,十分优秀!