1

我正在尝试部署来宾可执行文件,但该可执行文件位于我的代码目录的子文件夹中,如下所示是我的 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>

但是每当我尝试将它部署在我的本地集群上时,它都会抛出

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

. 但是,如果 exe 直接在这样的代码文件夹下

<Program>python.exe</Program>

然后它工作正常

4

0 回答 0