Azure Service Fabric missing DLL on production server: FabricCommon.dll

前端 未结 5 1278
太阳男子
太阳男子 2020-12-31 14:09

I have created an actor service, which runs on a development cluster. An ASP.NET application (hosted separately via IIS), connects to the cluster and uses the actors. This w

5条回答
  •  天涯浪人
    2020-12-31 14:35

    Add the following Service Fabric bin path to your PATH environment variable:

    set PATH=%PATH%;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code 
    

    Also set execution policy to unrestricted:

    Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Force -Scope CurrentUser 
    

提交回复
热议问题