Nota
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare ad accedere o modificare le directory.
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare a modificare le directory.
This element contains information for features that aren't supported in the base manifest.
Note
This article assumes that you're familiar with the overview of the VersionOverrides element, which contains important information about the element's attributes and variations.
Child elements
The following table applies only to version 1.0 of <VersionOverrides> elements and only to content add-ins.
Element | Required | Description |
---|---|---|
<VersionOverrides> | No | Not currently usable in VersionOverrides 1.0 for content add-ins. |
WebApplicationInfo | No | Specifies details about the add-in's registration with secure token issuers, such as Azure Active Directory V2.0. |
Example
The following is a simple example. For more complex examples, see the manifests for the sample add-ins in Office Add-in code samples. The <WebApplicationInfo> element must always be the last child of <VersionOverrides>.
<OfficeApp ... xsi:type="Content">
...
<VersionOverrides xmlns="http://schemas.microsoft.com/office/contentappversionoverrides" xsi:type="VersionOverridesV1_0">
<WebApplicationInfo>
<Id>$application_GUID here$</Id>
<Resource>api://localhost:44355/$application_GUID here$</Resource>
<Scopes>
<Scope>Files.Read.All</Scope>
<Scope>profile</Scope>
</Scopes>
</WebApplicationInfo>
</VersionOverrides>
...
</OfficeApp>