Our build requires "Microsoft.Web.Mvc.Build.dll" which is not strongly named and cannot be installed to GAC. Where should I put it so NCrunch would find it?
Currently it throws error:
NCrunch: If you are experiencing problems in getting this project to build, have a look at
http://www.ncrunch.net/d...ng_project-build-issues
The "Microsoft.Web.Mvc.Build.CreateAreaManifest" task could not be loaded from the assembly C:\Users\alex\AppData\Local\NCrunch\11376\85\Tools\MVC2-BuildTask\bin\Release\Microsoft.Web.Mvc.Build.dll. Could not load file or assembly 'file:///C:\Users\alex\AppData\Local\NCrunch\11376\85\Tools\MVC2-BuildTask\bin\Release\Microsoft.Web.Mvc.Build.dll' or one of its dependencies. The system cannot find the file specified. Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.
Visual Studio 2015,
Windows 10,
NCrunch 2.23.0.2
The "missing" dll is referenced via "UsingTasks" in the csproj file as
<UsingTask TaskName="Microsoft.Web.Mvc.Build.CreateAreaManifest" AssemblyFile="$(SolutionDir)Tools\MVC2-BuildTask\bin\Release\Microsoft.Web.Mvc.Build.dll" />
<UsingTask TaskName="Microsoft.Web.Mvc.Build.CopyAreaManifests" AssemblyFile="$(SolutionDir)Tools\MVC2-BuildTask\bin\Release\Microsoft.Web.Mvc.Build.dll" />
Both MSBuild and VisualStudio can load using this reference just fine...