Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The workload manifest (WorkloadManifest.xml) is the workload-level configuration for your workload. It tells Fabric who your workload is and how to reach your front end so the host can bootstrap it securely. It complements, but doesn't replace, the product and item definitions:
- Product metadata (for discovery and publishing) lives in Product.json.
- Item types and their behaviors live in the item manifests and JSON files.
What the workload manifest defines
- Workload identity:
WorkloadName([Organization].[WorkloadId]) andVersion(semantic version) - Hosting model:
HostingType(useFERemote) - Front-end Microsoft Entra app:
AADFEApp>AppId - Front-end endpoints:
ServiceEndpointentries withName(for example,Frontend),Url(localhost in dev; production domain must be a subdomain of your verified Entra domain), andIsEndpointResolutionService. See General Publishing Requirements for domain restrictions. - Optional sandbox relaxation:
EnableSandboxRelaxationonly when special iFrame capabilities are required (for example, initiating file downloads)
Best practices
- Keep versions consistent across your app and manifest
- Declare the minimum permissions needed (principle of least privilege)
- Validate the manifest as part of CI
Structure
Key elements in the Manifest and what they mean:
- Root element with a schema version (for example,
SchemaVersion="2.0.0"). Workloadnode with attributes such as:WorkloadName— unique identifier in the form[Organization].[WorkloadId](for example,Org.MyWorkload). If you don’t intend to publish to other tenants, you can useOrg.[WorkloadId]. For publishing across tenants, register a full WorkloadName with Fabric.HostingType— indicates workload hosting; useFERemote.
Versionnode — semantic version of your workload package.RemoteServiceConfiguration>CloudServiceConfigurationcontaining:Cloud(for example,Public).AADFEApp>AppId— contains the frontend Microsoft Entra application ID.EnableSandboxRelaxation— set it totrueif you require special iFrame capabilities (for example, initiating file downloads). Keepfalseby default for security.Endpoints>ServiceEndpointentries with:Name(for example,Frontend).Url— where the frontend is hosted. Usehttps://localhost:portfor development. In production, the domain must be a subdomain of your verified Entra domain. See General Publishing Requirements for complete domain restrictions.IsEndpointResolutionService.
Build output and placeholders
In the Starter-Kit, populates the placeholders every time the Manifest is created based on the configuration in the environment file. The final finalized manifest is created in the build/Manifest directory. Using placeholders and populating them from the environments allows you to build different environments without changing the files or the scripts. The build output is used by:
- DevGateway: Register your local development instance with Fabric so your app can load inside the Fabric portal during development.
- DevServer: Which is providing the information to the Fabric
- Admin Portal: for test and production, upload the manifest package through the Fabric Admin Portal as part of publishing. See Publish your workload.