Namespace Conflict

0

I installed system.web.helpers and now I need to install system.web.mvc. It turns out that both have a dependency called: system.web.webpages and so the installation of mvc is giving error. See the error below:

Install-Package : Updating 'Microsoft.AspNet.WebPages 2.0.20505.0' to 'Microsoft.AspNet.WebPages 3.2.3' failed. Unable to find a version of 'microsoft-web-helpers' that is 
compatible with 'Microsoft.AspNet.WebPages 3.2.3'.
At line:1 char:1
+ Install-Package Microsoft.AspNet.Mvc -Version 5.2.3
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Install-Package], InvalidOperationException
    + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand

How can I resolve this conflict?

    
asked by anonymous 14.07.2015 / 14:06

0 answers