What is NuGetPackageImportStamp for?

What is NuGetPackageImportStamp for?

NuGetPackageImportStamp is a workaround for Visual Studio 2013 and later versions not being able to detect that a NuGet package added or removed an MSBuild import.

This workaround is not required for older versions of Visual Studio. Even in Visual Studio 2013, the property can safely be removed: if you close and re-open the solution, the imported MSBuild targets will be re-loaded by Visual Studio.

NuGet source code reveals that NuGet adds this property when a package adds or removes an MSBuild import. It uses a new GUID each time. Visual Studio 2013 detects that the project has changed and offers its reload. Just adding or removing an MSBuild import is not enough for Visual Studio 2013 to know the project has changed at runtime, which is what NuGet solves by this workaround.

The StyleCop.MSBuild NuGet package includes a custom MSBuild target so adding or removing this NuGet package will cause this property to be added.


UPDATE: Matt Ward's comment is correct and important.

There is still code in NuGet that adds the NuGet package stamp and the code no longer checks for Visual Studio 2013.

Here are my bottom line recommendations:

  • Create your new projects with either Visual Studio or Powershell.
  • When you update an old csproj, and it's not working, compare this old csproj to a new working csproj that you created with either Visual Studio or Powershell. If the new working csproj uses a <NuGetPackageImportStamp> directive, then add it into your old broken csproj and see if that fixes the issues; regardless of which Visual Studio version you're using.
  • If your old csproj still isn't working, consider the <TargetFrameworkProfile> directive. Does it exist in your new working csproj? Consider removing this.

MSB4011 is not suppressable by MSBuildWarningsAsMessages

remove the following section in .csproj file

 <NuGetPackageImportStamp>209d4829</NuGetPackageImportStamp>

发现和这个有关

Microsoft.Bcl.Build.targets" cannot be imported again

如果下载了最新的nuget,那么需要移除NuGetPackageImportStamp。如果没有下载最新的nuget,就可以不用移除

原文地址:https://www.cnblogs.com/chucklu/p/14813611.html