Skip to content

Commit 38c491f

Browse files
authored
add manifest for Outlook (#5)
1 parent 14b663e commit 38c491f

File tree

1 file changed

+94
-0
lines changed

1 file changed

+94
-0
lines changed

manifest.outlook.xml

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0"
5+
xmlns:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0"
6+
xsi:type="MailApp">
7+
<Id>05c2e1c9-3e1d-406e-9a91-e9ac64854143</Id>
8+
<Version>1.0.0.0</Version>
9+
<ProviderName>Contoso</ProviderName>
10+
<DefaultLocale>en-US</DefaultLocale>
11+
<DisplayName DefaultValue="Contoso Task Pane Add-in"/>
12+
<Description DefaultValue="A template to get started."/>
13+
<IconUrl DefaultValue="https://localhost:3000/assets/icon-32.png"/>
14+
<HighResolutionIconUrl DefaultValue="https://localhost:3000/assets/icon-80.png"/>
15+
<SupportUrl DefaultValue="https://www.contoso.com/help"/>
16+
<AppDomains>
17+
<AppDomain>contoso.com</AppDomain>
18+
</AppDomains>
19+
<Hosts>
20+
<Host Name="Mailbox" />
21+
</Hosts>
22+
<Requirements>
23+
<Sets>
24+
<Set Name="Mailbox" MinVersion="1.1" />
25+
</Sets>
26+
</Requirements>
27+
<FormSettings>
28+
<Form xsi:type="ItemRead">
29+
<DesktopSettings>
30+
<SourceLocation DefaultValue="https://localhost:3000/taskpane.html"/>
31+
<RequestedHeight>250</RequestedHeight>
32+
</DesktopSettings>
33+
</Form>
34+
</FormSettings>
35+
<Permissions>ReadWriteItem</Permissions>
36+
<Rule xsi:type="RuleCollection" Mode="Or">
37+
<Rule xsi:type="ItemIs" ItemType="Message" FormType="Read" />
38+
</Rule>
39+
<DisableEntityHighlighting>false</DisableEntityHighlighting>
40+
<VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides" xsi:type="VersionOverridesV1_0">
41+
<Requirements>
42+
<bt:Sets DefaultMinVersion="1.3">
43+
<bt:Set Name="Mailbox" />
44+
</bt:Sets>
45+
</Requirements>
46+
<Hosts>
47+
<Host xsi:type="MailHost">
48+
<DesktopFormFactor>
49+
<FunctionFile resid="Contoso.Ribbon.Url" />
50+
<ExtensionPoint xsi:type="MessageReadCommandSurface">
51+
<OfficeTab id="TabDefault">
52+
<Group id="msgReadGroup">
53+
<Label resid="Contoso.GroupLabel" />
54+
<Control xsi:type="Button" id="msgReadOpenPaneButton">
55+
<Label resid="Contoso.TaskpaneButton.Label" />
56+
<Supertip>
57+
<Title resid="Contoso.TaskpaneButton.Label" />
58+
<Description resid="Contoso.TaskpaneButton.Tooltip" />
59+
</Supertip>
60+
<Icon>
61+
<bt:Image size="16" resid="Contoso.tpicon_16x16" />
62+
<bt:Image size="32" resid="Contoso.tpicon_32x32" />
63+
<bt:Image size="80" resid="Contoso.tpicon_80x80" />
64+
</Icon>
65+
<Action xsi:type="ShowTaskpane">
66+
<SourceLocation resid="Contoso.Taskpane.Url" />
67+
</Action>
68+
</Control>
69+
</Group>
70+
</OfficeTab>
71+
</ExtensionPoint>
72+
</DesktopFormFactor>
73+
</Host>
74+
</Hosts>
75+
<Resources>
76+
<bt:Images>
77+
<bt:Image id="Contoso.tpicon_16x16" DefaultValue="https://localhost:3000/assets/icon-16.png"/>
78+
<bt:Image id="Contoso.tpicon_32x32" DefaultValue="https://localhost:3000/assets/icon-32.png"/>
79+
<bt:Image id="Contoso.tpicon_80x80" DefaultValue="https://localhost:3000/assets/icon-80.png"/>
80+
</bt:Images>
81+
<bt:Urls>
82+
<bt:Url id="Contoso.Ribbon.Url" DefaultValue="https://localhost:3000/ribbon.html" />
83+
<bt:Url id="Contoso.Taskpane.Url" DefaultValue="https://localhost:3000/taskpane.html" />
84+
</bt:Urls>
85+
<bt:ShortStrings>
86+
<bt:String id="Contoso.GroupLabel" DefaultValue="Contoso Add-in"/>
87+
<bt:String id="Contoso.TaskpaneButton.Label" DefaultValue="Show Taskpane"/>
88+
</bt:ShortStrings>
89+
<bt:LongStrings>
90+
<bt:String id="Contoso.TaskpaneButton.Tooltip" DefaultValue="Opens a pane displaying all available properties."/>
91+
</bt:LongStrings>
92+
</Resources>
93+
</VersionOverrides>
94+
</OfficeApp>

0 commit comments

Comments
 (0)