在我的Visual Studio 2015更新3中,我将解决方案文件夹复制到另一台Windows机器时遇到以下错误。
错误此项目引用此计算机上缺少的NuGet包。使用NuGet Package Restore下载它们。有关更多信息,请参阅http://go.microsoft.com/fwlink/?LinkID=322105。丢失的文件是.. \ packages \ Microsoft.Net.Compilers.1.0.0 \ build ** Microsoft.Net.Compilers.props。**
我验证了NuGet Package Manager的项目,标记为"缺少"旁边有一个绿色勾号,包括Microsoft.Net.Compilers。
答案 0 :(得分:7)
通过从.csproj文件中删除下面提到的代码段来解决问题
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<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}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
</Target>