我有一个场景,我需要能够在Web / Worker角色之外使用Microsoft.WindowsAzure.ServiceRuntime
。
具体来说,我有以下代码
public static RoleInstanceEndpoint ResolveIP()
{
if (RoleEnvironment.IsAvailable)
{
RoleInstance instance = RoleEnvironment.CurrentRoleInstance;
RoleInstance RelatedWCFInstance = RoleEnvironment.Roles["MyServiceRoleName"]
.Instances
.Where(o => o.UpdateDomain == instance.UpdateDomain)
.FirstOrDefault();
if (RelatedWCFInstance != null)
return RelatedWCFInstance.InstanceEndpoints.Where(o => o.Value.Protocol == "tcp").FirstOrDefault().Value;
}
return null;
}
此代码在RoleEntryPoint.OnStart
事件内运行时成功执行,但是当我尝试在单独的exe中执行此代码时, 通过Azure启动任务触发 像这样
<Startup>
<Task commandLine="StartupMagic.exe" taskType="simple" executionContext="elevated" />
</Startup>
我收到以下错误
The type initializer for 'Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment' threw an exception.
有人可以确认是否可以在Web或辅助角色之外引用此库?如果是的话,就我可能做错了什么提供任何建议?
答案 0 :(得分:1)
检查innerException导致显示以下消息:
“混合模式程序集是针对运行时版本'v2.0.50727'构建的,如果没有其他配置信息,则无法在4.0运行时加载。”
并且Mixed mode assembly is built against version ‘v2.0.50727′ of the runtime中描述的解决方案可以解决此问题。