作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为 dotnet Core 项目构建构建管道。我的构建脚本的一部分执行 dotnet restore
.我这样做:
dotnet restore C:/Projects/MyProj/src/MyProj/MyProj.csproj
dotnet restore D:/a/1/s/src/MyProj/MyProj.csproj
error: Invalid input 'D:/a/1/s/src/MyProj/MyProj.csproj'. The file type was not recognized.
Version : 1.1.0
Build : 928f77c4bc3f49d892459992fb6e1d5542cb5e86
global.json
文件位于
src
之外文件夹:
{
"projects": ["src"],
"sdk": {
"version": "1.1.0"
},
"packages": "packages"
}
Root/
build.cake
build.ps1
global.json
src/
MyProj.sln
MyProj/
MyProj.csproj
*.cs
MyProj.Tests/
MyProj.Tests.csproj
*.cs
最佳答案
由于该项目使用 VS 2017 和“已发布”的 .NET CLI 工具,因此您还需要使用 Hosted VS2017
构建的代理队列,以便构建将在安装了必要工具的代理上运行。
共享运行时主机( dotnet.exe
)的版本相同,不同之处在于还需要安装更新的 CLI(位于 sdk
所在目录的 dotnet.exe
子目录中)。
关于.net - Dotnet 在 VSTS 上还原 MyProj.csproj 显示 "The file type is not recognised",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44117702/
我是一名优秀的程序员,十分优秀!