Reputation: 533
I need to add a few additional metadata to the Application Manifest file of the Service Fabric Application. Is it supported? If Yes,How?
Thanks in advance,
Upvotes: 0
Views: 77
Reputation: 11470
No you can't. The XSD schema is installed with the SDK, on Windows it's in C:\Program Files\Microsoft SDKs\Service Fabric\schemas\ServiceFabricServiceModel.xsd
.
The schema for ApplicationManifestType
does not have an Extensions
element like ServiceManifest
does.
More info here.
Upvotes: 1