前端之家收集整理的这篇文章主要介绍了
c# – 如何让Mono使用正确的ToolsVersion?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
XBuild Engine Version 12.0
Mono,Version 3.2.8.0
@H_
403_4@我试图在XBuild中构建我的C#
解决方案.它在Windows中构建非常好,但不是在ubuntu中.我收到以下
错误:
warning : Project has unknown ToolsVersion '14.0'. Using the default tools version '4.0' instead.
Target GetFrameworkPaths:
/usr/lib/mono/4.5/Microsoft.Common.targets: warning : TargetFrameworkVersion 'v4.5.2' not supported by this toolset (ToolsVersion: 4.0).
error CS0246: The type or namespace name 'RedditSharp' could not be found. Are you missing an assembly reference?
error CS0246: The type or namespace name `IReadOnlyCollection' could not be found. Are you missing an assembly reference?
@H_
403_4@和类似.我已经将RedditSharp.dll
添加到GAC,所以我不知道为什么它找不到它,我当然不知道为什么它找不到IReadOnlyCollection.我怀疑这一切都是因为我不能使用ToolsVersion 14.0.
@H_
403_4@有没有人知道在Linux上构建C#?我究竟做错了什么?
14表示MSBuild 14,它是Visual Stu
dio 2015的一部分.通常,Mono xbuild在一段时间后才
支持最新的Visual Stu
dio版本.所以你要么等到更新,要么hack xbuild,如果你喜欢.
@H_
403_4@另一个
解决方法是将您的项目转换为MSBuild版本12
原文链接:https://www.f2er.com/csharp/92218.html