Guest User

Untitled

a guest
Jan 23rd, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.81 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <OfficeApp
  3. xmlns="http://schemas.microsoft.com/office/appforoffice/1.1"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0"
  6. xmlns:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0"
  7.  
  8. <!-- Begin Basic Settings: Add-in metadata, used for all versions of Office unless override provided. -->
  9.  
  10. <!-- IMPORTANT! Id must be unique for your add-in, if you reuse this manifest ensure that you change this id to a new GUID. -->
  11. <Id>c64ded7d-29e6-4083-8afa-351c7a630668</Id>
  12.  
  13. <!--Version. Updates from the store only get triggered if there is a version change. -->
  14. <Version>1.0.0.0</Version>
  15. <ProviderName>An Tran</ProviderName>
  16. <DefaultLocale>en-US</DefaultLocale>
  17. <!-- The display name of your add-in. Used on the store and various places of the Office UI such as the add-ins dialog. -->
  18. <DisplayName DefaultValue="MyMeetings" />
  19. <Description DefaultValue="Find a room"/>
  20.  
  21. <!-- Icon for your add-in. Used on installation screens and the add-ins dialog. -->
  22. <IconUrl DefaultValue="https://localhost:3000/assets/icon-32.png" />
  23. <HighResolutionIconUrl DefaultValue="https://localhost:3000/assets/hi-res-icon.png"/>
  24. <SupportUrl DefaultValue="https://contoso.com/support " />
  25.  
  26. <!-- Domains that will be allowed when navigating. For example, if you use ShowTaskpane and then have an href link, navigation will only be allowed if the domain is on this list. -->
  27. <AppDomains>
  28. <AppDomain>AppDomain1</AppDomain>
  29. <AppDomain>AppDomain2</AppDomain>
  30. <AppDomain>AppDomain3</AppDomain>
  31. </AppDomains>
  32.  
  33. <Hosts>
  34. <Host Name="Mailbox" />
  35. </Hosts>
  36. <Requirements>
  37. <Sets>
  38. <Set Name="Mailbox" MinVersion="1.1" />
  39. </Sets>
  40. </Requirements>
  41. <FormSettings>
  42. <Form xsi:type="ItemRead">
  43. <DesktopSettings>
  44. <SourceLocation DefaultValue="https://localhost:3000/index.html"/>
  45. <RequestedHeight>250</RequestedHeight>
  46. </DesktopSettings>
  47. </Form>
  48. <Form xsi:type="ItemEdit">
  49. <DesktopSettings>
  50. <SourceLocation DefaultValue="https://localhost:3000/index.html"/>
  51. </DesktopSettings>
  52. </Form>
  53. </FormSettings>
  54.  
  55. <Permissions>ReadWriteItem</Permissions>
  56.  
  57. <Rule xsi:type="RuleCollection" Mode="Or">
  58. <Rule xsi:type="ItemIs" ItemType="Appointment" FormType="Edit" />
  59. <Rule xsi:type="ItemIs" ItemType="Appointment" FormType="Read" />
  60. </Rule>
  61. <!-- <DisableEntityHighlighting>false</DisableEntityHighlighting> -->
  62.  
  63. <VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides" xsi:type="VersionOverridesV1_0">
  64. <!-- <VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides/1.1" xsi:type="VersionOverridesV1_1"> -->
  65.  
  66. <Hosts>
  67. <Host xsi:type="MailHost">
  68.  
  69. <DesktopFormFactor>
  70. <!-- Location of the Functions that UI-less buttons can trigger (ExecuteFunction Actions). -->
  71. <FunctionFile resid="functionFile" />
  72.  
  73. <ExtensionPoint xsi:type="AppointmentOrganizerCommandSurface">
  74. <OfficeTab id="TabDefault">
  75. <Group id="apptComposeDemoGroup">
  76. <Label resid="groupLabel" />
  77. <!-- Function (UI-less) button -->
  78. <Control xsi:type="Button" id="apptComposeFunctionButton">
  79. <Label resid="funcComposeButtonLabel" />
  80. <Supertip>
  81. <Title resid="funcComposeSuperTipTitle" />
  82. <Description resid="funcComposeSuperTipDescription" />
  83. </Supertip>
  84. <Icon>
  85. <bt:Image size="16" resid="icon16" />
  86. <bt:Image size="32" resid="icon32" />
  87. <bt:Image size="80" resid="icon80" />
  88. </Icon>
  89. <Action xsi:type="ExecuteFunction">
  90. <FunctionName>run</FunctionName>
  91. </Action>
  92. </Control>
  93. </Group>
  94. </OfficeTab>
  95. </ExtensionPoint>
  96. <!-- Go to http://aka.ms/ExtensionPointsCommands to learn how to add more Extension Points: MessageRead, AppointmentOrganizer, AppointmentAttendee -->
  97. </DesktopFormFactor>
  98. </Host>
  99. </Hosts>
  100.  
  101. <Resources>
  102. <bt:Images>
  103. <bt:Image id="icon16" DefaultValue="https://localhost:3000/assets/icon-16.png"/>
  104. <bt:Image id="icon32" DefaultValue="https://localhost:3000/assets/icon-32.png"/>
  105. <bt:Image id="icon80" DefaultValue="https://localhost:3000/assets/icon-80.png"/>
  106. </bt:Images>
  107. <bt:Urls>
  108. <bt:Url id="functionFile" DefaultValue="https://localhost:3000/function-file/function-file.html"/>
  109. <bt:Url id="messageReadTaskPaneUrl" DefaultValue="https://localhost:3000/function-file/function-file.html"/>
  110. </bt:Urls>
  111. <bt:ShortStrings>
  112. <bt:String id="groupLabel" DefaultValue="MyMeetings Group"/>
  113. <bt:String id="customTabLabel" DefaultValue="My Add-in Tab"/>
  114. <bt:String id="funcComposeSuperTipTitle" DefaultValue="Find a room!"/>
  115. <bt:String id="funcComposeButtonLabel" DefaultValue="MyMeetings!"/>
  116. </bt:ShortStrings>
  117. <bt:LongStrings>
  118. <bt:String id="funcComposeSuperTipDescription" DefaultValue="Find a most suitable room with MyMeetings."/>
  119. </bt:LongStrings>
  120. </Resources>
  121.  
  122. <!-- <WebApplicationInfo>
  123. <Id>{c64ded7d-29e6-4083-8afa-351c7a630668}</Id>
  124. <Resource>api://localhost:3000/{c64ded7d-29e6-4083-8afa-351c7a630668}</Resource>
  125. <Scopes>
  126. <Scope>files.read.all</Scope>
  127. <Scope>profile</Scope>
  128. </Scopes>
  129. </WebApplicationInfo> -->
  130. </VersionOverrides>
  131.  
  132. </OfficeApp>
Add Comment
Please, Sign In to add comment