【发布时间】:2017-09-08 16:35:27
【问题描述】:
我将我的项目 (https://github.com/MarkKhromov/The-Log) 迁移到 .NET Standard 2.0,但我的 appveyor 构建已损坏。我该如何解决这个问题?
我的解决方案包含:
- .NET 标准项目
- 控制台应用程序项目
- 类库(测试)项目
我已经试过写了:
dotnet: 2.0.0
script:
- dotnet restore
- dotnet build
或
- dotnet build TheLog/TheLog.csproj -c Release -f netstandard2.0
- msbuild TheLog.Demos/TheLog.Demos.csproj /p:Configuration=Release
- msbuild TheLog.Tests/TheLog.Tests.csproj /p:Configuration=Debug
- nunit-console TheLog.Tests/TheLog.Tests.csproj
但每次我都有错误
【问题讨论】:
标签: .net-standard appveyor .net-standard-2.0