June 2017
Intermediate to advanced
360 pages
10h 2m
English
Service Fabric expects the application to be packages in a specific directory structure. Let's take an example to understand this further:
|-- ApplicationPackageRoot |-- GuestService1Pkg |-- Code |-- existingapp.exe |-- Config |-- Settings.xml |-- Data |-- ServiceManifest.xml |-- ApplicationManifest.xml
ApplicationPackageRoot, is the root folder containing the application manifest file - ApplicationManifest.xml. Each sub directory under this folder specifies a service which is part of this application. In the preceding example, GuestService1Pkg is one such service. Every service folder in turn holds the service components. This includes three sub folders holding the code, configuration, and data. The Service folder ...
Read now
Unlock full access