我有一个在Visual Studio 2015 Update 2上编写的示例类库 - 使用C#6.0。所以我想用http://travis-ci.org/设置我的github存储库。使用目标框架.NET 4.6。我在build log中收到以下错误。
此工具集不支持TargetFrameworkVersion'v4.6'(ToolsVersion:4.0)。 System.ValueType'未定义或导入
CSC:错误CS0518:未定义或导入预定义类型System.Attribute
CSC:错误CS0518:未定义或导入预定义类型System.Int32
CSC:错误CS0518:未定义或导入预定义类型System.UInt32
...
将目标框架版本添加到4.5后,构建状态失败link Build #5
有没有办法用.NET 4.6运行它?
我的.travis.yml.
是:
language: csharp
solution: SWapi-CSharp.sln
install:
- nuget restore SWapi-CSharp.sln
script:
- xbuild /p:Configuration=Release SWapi-CSharp.sln /p:TargetFrameworkVersion="v4.5"