Azure service fabric 部署azure service fabric来宾可执行文件时出现包异常

Azure service fabric 部署azure service fabric来宾可执行文件时出现包异常,azure-service-fabric,guest-executable,Azure Service Fabric,Guest Executable,我试图部署一个来宾可执行文件,但该可执行文件位于代码目录的子文件夹中,如下所示是我的ServiceManifest.xml中的xml片段 <EntryPoint> <ExeHost> <Program>Anaconda\python.exe</Program> <Arguments>InitialFiltering\back_testing_agent_python_c

我试图部署一个来宾可执行文件,但该可执行文件位于代码目录的子文件夹中,如下所示是我的ServiceManifest.xml中的xml片段

   <EntryPoint>
         <ExeHost>
           <Program>Anaconda\python.exe</Program>
           <Arguments>InitialFiltering\back_testing_agent_python_consumer.py</Arguments>
           <WorkingFolder>CodeBase</WorkingFolder>
           <!-- Uncomment to log console output (both stdout and stderr) to one of the
                service's working directories. -->
           <!-- <ConsoleRedirection FileRetentionCount="5" FileMaxSizeInKb="2048"/> -->
         </ExeHost>
   </EntryPoint>

Anaconda\python.exe
InitialFiltering\back\u testing\u agent\u python\u consumer.py
代码基
但每当我尝试在本地集群上部署它时,它就会抛出

Microsoft.VisualStudio.Azure.Fabric.ApplicationProject.ProjectSystem.PackageException

。但是,如果exe直接位于代码文件夹下,则如下所示

python.exe

那就好了