UNPKG

1.27 kBMarkdownView Raw
1# Office-Addin-Manifest
2
3Provides the ability to view and modify the manifest for Office Add-ins.
4
5For more information, see the [documentation](
6https://docs.microsoft.com/en-us/office/dev/add-ins/develop/add-in-manifests).
7
8## Command-Line Interface
9* [info](#info)
10* [modify](#modify)
11
12#
13
14### info
15Display the information in the Office Add-in manifest.
16
17Syntax:
18
19`office addin-manifest info <manifest> [options]`
20
21`manifest`: path to manifest file.
22
23#
24
25### modify
26Modify values in the Office Add-in manifest file.
27
28Syntax:
29
30`office addin-manifest modify <manifest> [options]`
31
32`manifest`: path to manifest file.
33
34Options:
35
36`-g [guid]`<br>
37`--guid [guid]`
38
39Update the unique id for the Office Add-in. If the guid is not provided, a random guid is used.
40
41This value is the `<Id>` element of `<OfficeApp>`.
42
43For more info, see [OfficeApp documentation](https://docs.microsoft.com/en-us/office/dev/add-ins/reference/manifest/officeapp)
44
45`-d <name>`<br>
46`--displayName <name>`
47
48Update the display name for the Office Add-in.
49
50This value is the `<DisplayName>` element of `<OfficeApp>`.
51
52For more info, see [OfficeApp documentation](https://docs.microsoft.com/en-us/office/dev/add-ins/reference/manifest/officeapp).
53
54#