I need to add MVVM Light toolkit to an existing project. I run the nuget command. My project is in version 4.5 of the Framework. I got this error
Attempting to resolve dependency 'MvvmLightLibs (≥ 5.0.2.0)'.
Install-Package : 'MvvmLightLibs' already has a dependency defined for 'CommonServiceLocator'.
At line:1 char:16
+ Install-Package <<<< MvvmLight
+ CategoryInfo : NotSpecified: (:) [Install-Package], InvalidOperationException
+ FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPa
ckageCommand
I installed through extensions and updates, and it was installed, but when I tried to create a new mvvm project using the visual exploration wizard, such a dependency error occurs.
How to solve this problem.
source
share