1
嘗試使用dnx451構建.xproj,因爲框架在本地正常工作,但在Visual Studio聯機構建中無法正常工作。VSTS上的dnx451構建無法解決依賴關係
登錄:
Microsoft .NET Development Utility Clr-x86-1.0.0-rc1-16231
Building DnxLibTests for DNX,Version=v4.5.1
Using Project dependency DnxLibTests 1.0.0
Source: C:\a\1\s\DnxLibTests\project.json
Unable to resolve dependency Microsoft.Dnx.Compilation.Abstractions 1.0.0-rc1-final
project.json
{
"version": "1.0.0-*",
"description": "DnxLibTests Class Library",
"authors": [ "" ],
"tags": [ "" ],
"projectUrl": "",
"licenseUrl": "",
"dependencies": {
"xunit": "2.1.0",
"xunit.runner.dnx": "2.1.0-rc1-build204"
},
"commands": {
"test": "xunit.runner.dnx"
},
"frameworks": {
"dnx451": { }
}
}
你讓我朝着正確的方向發展,實際上我已經在使用PreBuild.ps1腳本,但沒有檢查Restore命令的路徑,因爲它是類庫中的還原而不是asp的src。它工作的網絡。 這是到PreBuild.ps1的[鏈接] https://msdn.microsoft.com/en-us/Library/vs/alm/Build/azure/deploy-aspnet5 – msr