这必须是一个错误:
Update-Package Newtonsoft.Json -Reinstall -Version 6.0.0.0
错误:
Update-Package : Parameter set cannot be resolved using the specified named parameters.
At line:1 char:1
+ Update-Package Newtonsoft.Json -Reinstall -Version 6.0.0.0
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Update-Package], ParameterBindingException
+ FullyQualifiedErrorId : AmbiguousParameterSet,NuGet.PackageManagement.PowerShellCmdlets.UpdatePackageCommand
答案 0 :(得分:7)
检查版本。也许它应该是6.0.1
?
Update-Package Newtonsoft.Json -Reinstall -Version 6.0.1
编辑:由于您已包含“重新安装”,因此不需要版本
Update-Package -Reinstall Newtonsoft.Json
编辑:安装特定版本(请忽略-Version
默认为最新版本)
Install-Package Newtonsoft.Json -Version 6.0.1
编辑:更新到特定版本
Update-Package Newtonsoft.Json -Version 6.0.1