Create a deployment package for Service Fabric that includes all the artifacts needed to run developed workflows at runtime

How do I create a deployment package for Service Fabric that includes all the artifacts needed to run developed workflows at runtime?

+4
source share
2 answers

Another option is to package the working environment application by creating a solution in release mode (for example). This section can be added to the file .sfprojto achieve the goal:

<Target Name="ReleaseAfterBuild" AfterTargets="AfterBuild" Condition=" '$(Configuration)' == 'Release' ">
   <MSBuild Projects="$(ProjectPath)" Targets="Package" />
</Target> 
+4
source

To create a Service Fabric application package, you need to run the Package target in the sfproj file.

msbuild app.sfproj /t:Package

"pkg" sfproj .

+2

All Articles