Opening project in Visual Studio fails due to nuge

2019-01-21 07:26发布

So I downloaded Twitterizer from http://www.twitterizer.net/downloads/

I try to open it in Visual Studio and get all these nuget errors:

The imported project "C:\Twitterizer\.nuget\nuget.targets" was not found. 
Confirm that the path in the <Import> declaration is correct, and that the file 
exists on disk.

What is going on. How do I deal with this?

7条回答
一纸荒年 Trace。
2楼-- · 2019-01-21 07:42
  1. Install Nuget.
  2. Right click on the solution and select "Enable NuGet Package Restore".
  3. Click Ok on the warning.
  4. Close and re-open the solution.

Should now be hunky-dory.

查看更多
我只想做你的唯一
3楼-- · 2019-01-21 07:42

When i get the nuget.targets not found error i use the package manager to uninstall-package one of the packages in the project and then reinstall it using install-package. It seems like it regenerates the nugets.target file then.

查看更多
欢心
4楼-- · 2019-01-21 07:42

I know I'm late to the party but here is a really good tutorial on how to fix this issue. I used this to fix my project.

Close down Visual Studio If the solution you are trying to migrate is open in Visual Studio, then changes may be lost. Visual Studio may overwrite/ignore your changes in some cases and the NuGet extension will also try to re-enable Package Restore when it sees some projects in the solution are missing it.

If you are using TFS Remove the NuGet.exe and NuGet.targets files from the solution's .nuget folder. Make sure the files themselves are also removed from the solution workspace. Retain the NuGet.Config file to continue to bypass adding packages to source control. Edit each project file (e.g., .csproj, .vbproj) in the solution and remove any references to the NuGet.targets file. Open the project file(s) in the editor of your choice and remove the following settings:

true ... ...

<PropertyGroup>
    <ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download

them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. If you are not using TFS Remove the .nuget folder from your solution. Make sure the folder itself is also removed from the solution workspace. Edit each project file (e.g., .csproj, .vbproj) in the solution and remove any references to the NuGet.targets file. Open the project file(s) in the editor of your choice and remove the following settings:

true ... ...

<PropertyGroup>
    <ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download

them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. Migration Script Many users have requested a migration tool to disable the MSBuild-based package restore and convert to Automatic Package Restore. The NuGet team has decided not to provide a supported tool for this because of the high probability of edge cases that would be unhandled. However, Owen Johnson has authored a PowerShell script that can work in many cases. It's available on GitHub and can be used at your own risk. In other words, be sure to commit to source control before running it, just in case it doesn't work in your scenario.

Nuget.target Fix

查看更多
beautiful°
5楼-- · 2019-01-21 07:51

Just ran into the same problem, but in my case the issue was a space in the folder name:

Nuget was telling me it couldn't find "C:\git\My Path" but I was able to navigate to "C:\git\My%20Path". Removing the space in the foldername "fixed" the issue.

查看更多
走好不送
6楼-- · 2019-01-21 07:53

An alternative is to edit the .csproj file with a texteditor and remove or comment out the segment.

查看更多
淡お忘
7楼-- · 2019-01-21 07:53

Easiest solution when you get this error in order to restore the missing NuGet.targets in Visual Studio Solution Explorer is to:

  1. Right click on the solution file
  2. From the context menu click "Enable Nuget Package Restore..." option

this will download the missing files in the ".nuget" folder :)

The above assumes you already have Nuget installed - if not follow the accepted answer above!

UPDATE: Please note for Visual Studio versions beyond 2013 the option is called "Restore NuGet Packages"

查看更多
登录 后发表回答