-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtextBox.xml
More file actions
33 lines (28 loc) · 1.13 KB
/
textBox.xml
File metadata and controls
33 lines (28 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<!--
Addins minimally require:
* AppDomain (can be anything)
* SourceLocation (MUST BE A VALID URL which doesn't return http error code. Can be a file:/// url also)
* ProviderName (can be anything)
* DefaultLocale (can be anything)
* DisplayNam (can be anything)
* Description (can be anything)
* Permissions (can be anything)
* ID? (Untested: Should be unique)
-->
<OfficeApp
xmlns="http://schemas.microsoft.com/office/appforoffice/1.1"
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xsi:type="ContentApp">
<Id>c6890c26-5bbb-40ed-a321-37f07909a2f0</Id>
<Version>1.0</Version>
<ProviderName>Test-TextBox</ProviderName>
<DefaultLocale>en-GB</DefaultLocale>
<DisplayName DefaultValue="Test-TextBox" />
<Description DefaultValue="Test-TextBox"/>
<AppDomains><AppDomain>https://sancarn.github.io</AppDomain></AppDomains>
<DefaultSettings>
<SourceLocation DefaultValue="http://sancarn.github.io/msoAddinTests/textBox/textBox.html" />
</DefaultSettings>
<Permissions>ReadWriteDocument</Permissions>
</OfficeApp>