欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

docker build 错误 /usr/share/dotnet/sdk/2.1.801/Microsoft.Common.CurrentVersion.targets(2106,5): warning MSB3245: Could not resolve this reference

程序员文章站 2022-04-09 20:08:52
docker dotnet Restore 的时候报错, 一度怀疑是linux的dotnet core sdk没有装好, 卸了装, 装了卸, 试了好几遍还是无效(Microsoft.Common.CurrentVersion.targets 这个文件的确又是存在的), 找度娘也没找到解决方案, /u ......
docker dotnet restore 的时候报错, 一度怀疑是linux的dotnet core sdk没有装好,
卸了装, 装了卸, 试了好几遍还是无效(microsoft.common.currentversion.targets 这个文件的确又是存在的),
找度娘也没找到解决方案, 
/usr/share/dotnet/sdk/2.1.801/microsoft.common.currentversion.targets(2106,5): warning msb3245: could not resolve this reference. could not locate the assembly "system.componentmodel.annotations". check to make sure the assembly exists on disk. if this reference is required by your code, you may get compilation errors. [xxxxxxx.csproj]
docker build 错误 /usr/share/dotnet/sdk/2.1.801/Microsoft.Common.CurrentVersion.targets(2106,5): warning MSB3245: Could not resolve this reference

 就一直在vs中瞎点, 当打开xxxx.csproj时发现, 我靠, 居然引用是绝对路径, 

这个路径在windows中基本上一致, 不会有问题, 但突然一想, linux哪有c盘啊, 

后边把system.componentmodel.annotations的引用换成成nuget中引用就可以了

docker build 错误 /usr/share/dotnet/sdk/2.1.801/Microsoft.Common.CurrentVersion.targets(2106,5): warning MSB3245: Could not resolve this reference