tags:

views:

32

answers:

2

I'm running a build of my solution from a different computer (build machine), and found out that that system is still referencing the Beta version of System.Web.MVC.dll. How can I get it to reference the 1.0 version of the dll?

A: 

I think, you need to specify explicit dll version in config to resolve this issue

Pavel Morshenyuk
A: 

Can you edit the project csproj? In VS, right-click > Unload Project, right-click again > Edit {project}.csproj then find the References section. See what it's referencing.

TheCloudlessSky