我们如何查看安装在 VSTS 构建服务器上的程序集
How do we see the assemblies installed on VSTS build server
我在 visual studio 在线服务器上收到此错误。我想看看为什么它失败了?我如何查看 visual studio 构建代理上安装的内容?
错误
2017-06-20T15:11:00.0341044Z ##[error] System.Exception : Non
matching response code: InternalServerError - {"message":"An error has
occurred.","exceptionMessage":"Could not load type
'Microsoft.ServiceFabric.Data.Collections.IReliableConcurrentQueue`1'
from assembly 'Microsoft.ServiceFabric.Data.Interfaces,
Version=5.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35'.","exceptionType":"System.TypeLoadException","stackTrace":"
at Infrastructure.ExceptionHandling.ExceptionHelper.ThrowIfUnhandled()
in
d:\a\s\Infrastructure\Infrastructure.ExceptionHandling\ExceptionHelper.cs:line
45\r\n at
xxxx.WebApi.Controllers.yyyyTypesController.d__8.MoveNext()
in
d:\a\s\Orchestration\xxxxGenius\xxxxx.WebApi\Controllers\yyyyTypesController.cs:line
142\r\n--- End of stack trace from previous location where exception
was thrown ---\r\n at
System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task
task)\r\n at
我应该点击哪里?
构建告诉您它失败的原因:找不到程序集 Microsoft.ServiceFabric.Data.Interfaces
。
托管代理上加载的软件是 well documented。如果托管代理没有您需要的东西,并且您不能将其安装为 NuGet/NPM 软件包,那么您将必须设置自己的代理,其中包含所需的软件。
我在 visual studio 在线服务器上收到此错误。我想看看为什么它失败了?我如何查看 visual studio 构建代理上安装的内容?
错误
2017-06-20T15:11:00.0341044Z ##[error] System.Exception : Non matching response code: InternalServerError - {"message":"An error has occurred.","exceptionMessage":"Could not load type 'Microsoft.ServiceFabric.Data.Collections.IReliableConcurrentQueue`1' from assembly 'Microsoft.ServiceFabric.Data.Interfaces, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.","exceptionType":"System.TypeLoadException","stackTrace":" at Infrastructure.ExceptionHandling.ExceptionHelper.ThrowIfUnhandled() in d:\a\s\Infrastructure\Infrastructure.ExceptionHandling\ExceptionHelper.cs:line 45\r\n at xxxx.WebApi.Controllers.yyyyTypesController.d__8.MoveNext() in d:\a\s\Orchestration\xxxxGenius\xxxxx.WebApi\Controllers\yyyyTypesController.cs:line 142\r\n--- End of stack trace from previous location where exception was thrown ---\r\n at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)\r\n at
我应该点击哪里?
构建告诉您它失败的原因:找不到程序集 Microsoft.ServiceFabric.Data.Interfaces
。
托管代理上加载的软件是 well documented。如果托管代理没有您需要的东西,并且您不能将其安装为 NuGet/NPM 软件包,那么您将必须设置自己的代理,其中包含所需的软件。