3

该错误仅发生在一台机器上。

尝试

错误的路径

我认为任何来源的路径都可能是错误的,所以我打开NuGet.Config检查,3条路径都正确,那里!

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageRestore>
    <add key="enabled" value="True" />
  </packageRestore>
  <packageSources>
    <add key="NuGet official package source" value="https://nuget.org/api/v2/" />
    <add key="Nightly ASP.NET Web Stack" value="http://www.myget.org/F/aspnetwebstacknightly/" />
    <add key="Bind Solution" value="W:\Cloud\Dropbox\Bind Defaults\Nuget Repository" />
  </packageSources>
  <disabledPackageSources />
  <activePackageSource>
    <add key="NuGet official package source" value="https://nuget.org/api/v2/" />
  </activePackageSource>
</configuration>

Nuget.exe 不存在

检查.nuget文件夹,.exe 在目录中!检查窗口路径,有!

我尝试手动运行命令,它运行成功!

nuget install packages.config -source "" -NonInteractive -RequireConsent -solutionDir "W:\C lients\creditoimobiliariobb\sistema\src\CreditoImobiliarioBB\ "

完整错误:

错误 1 ​​系统找不到指定的路径。CreditoImobiliarioBB.Domain

错误 2 命令 ""W:\Clients\creditoimobiliariobb\sistema\src\CreditoImobiliarioBB.nuget\NuGet.exe" 安装 "W:\Clients\creditoimobiliariobb\sistema\src\CreditoImobiliarioBB\CreditoImobiliarioBB.Model\packages.config" -source "" -NonInteractive -RequireConsent -solutionDir "W:\Clients\creditoimobiliariobb\sistema\src\CreditoImobiliarioBB\ " " 退出,代码为 -1。CreditoImobiliarioBB.Domain

注意事项

只有具有本地包(Source is key="Bind Solution" value="W:\Cloud\Dropbox\Bind Defaults\Nuget Repository")的项目才会遇到麻烦。最近,包的位置移到了另一个目录(在本例中为W:\Cloud\Dropbox\Bind Defaults\Nuget Repository)。

4

2 回答 2

5

我最近遇到了类似的问题,我通过这样做解决了它:

  1. 将 Visual Studio 更新到最新版本。(扩展和更新 - 产品更新)
  2. 将 Nugget 更新到最新版本。(扩展和更新 - Visual Studio 库)
  3. 清除包缓存。(选项 - 包管理器)
  4. 重建解决方案。

希望能帮助到你。

于 2014-01-29T14:42:58.700 回答
1

我在使用 NuGet.exe 和 WG.exe for WebGrease 时遇到了类似的问题。我意识到打开病毒防护后,.exe 文件无法正常关闭。一旦我禁用了我的病毒防护,我就能得到我需要的一切(公司正在使用 McAfee)。

于 2014-11-14T16:20:58.497 回答