A service fabric application is made up of several Microservices. A Microservice is further made up of three parts:
- Code: These are the executable binaries of the Microservice. The binaries are packaged in code package.
- Configuration: These are the settings that can be used by your Microservices at run time. These are packaged into a configuration package.
- Data: Any static data that is used by the Microservice is packaged in data package.
A Service Fabric application is described by a set of versioned manifests, an application manifest, and several service manifests, one each for each of the Microservices that make up the application. Let's explore the components of a Service Fabric application by navigating through the Service Fabric application package.
To package your application, right click on your Service Fabric application project...