构建错误:在本地系统中运行worker角色时

时间:2017-02-06 15:30:57

标签: azure azureservicebus azure-worker-roles

我是Azure Worker Role的新手,我创建了一个新的Azure Cloud Service项目,并添加了一个辅助角色。其中我有一个线程,可以调用samplesll来创建EventHub监听器。

我发现如下错误。

Severity    Code    Description Project File    Line    Suppression State
Error       The process cannot access the file 'D:\Azure\roles\simpleWorkerRole\approot\sampledll.dll' because it is being used by another process. simpleWorkerRole.WorkerRole C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\Windows Azure Tools\2.9\Microsoft.WindowsAzure.targets  1057

1 个答案:

答案 0 :(得分:0)

  

该进程无法访问文件' D:\ Azure \ roles \ simpleWorkerRole \ approot \ sampledll.dll'因为它正被另一个进程使用。

错误消息表明另一个进程正在使用sampledll.dll,您可以尝试使用Process Monitor tool查找正在使用(或锁定)sampledll.dll的进程,然后您可以手动结束进程重建解决方案。