Advertisement
Guest User

manifest.xml

a guest
Nov 20th, 2019
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.29 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0" xmlns:ov="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="TaskPaneApp">
  3. <Id>05c2e1c9-3e1d-406e-9a91-e9ac64854143</Id>
  4. <Version>1.0.0.0</Version>
  5. <ProviderName>Contoso</ProviderName>
  6. <DefaultLocale>en-US</DefaultLocale>
  7. <DisplayName DefaultValue="AddinTemplate"/>
  8. <Description DefaultValue="description"/>
  9. <IconUrl DefaultValue="http://localhost:8084/assets/icon-32.png"/>
  10. <HighResolutionIconUrl DefaultValue="http://localhost:8084/assets/icon-80.png"/>
  11. <SupportUrl DefaultValue="https://www.contoso.com/help"/>
  12. <AppDomains>
  13. <AppDomain>contoso.com</AppDomain>
  14. </AppDomains>
  15. <Hosts>
  16. <Host Name="Document"/>
  17. </Hosts>
  18. <DefaultSettings>
  19. <SourceLocation DefaultValue="http://localhost:8084/taskpane.html"/>
  20. </DefaultSettings>
  21. <Permissions>ReadWriteDocument</Permissions>
  22. <VersionOverrides xmlns="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="VersionOverridesV1_0">
  23. <Hosts>
  24. <Host xsi:type="Document">
  25. <DesktopFormFactor>
  26. <!-- <GetStarted>
  27. <Title resid="GetStarted.Title"/>
  28. <Description resid="GetStarted.Description"/>
  29. <LearnMoreUrl resid="GetStarted.LearnMoreUrl"/>
  30. </GetStarted> -->
  31. <FunctionFile resid="Commands.Url" />
  32. <ExtensionPoint xsi:type="PrimaryCommandSurface">
  33. <CustomTab id="Addition">
  34. <Label resid="Addition.Label" />
  35. <Group id="AddinPanel">
  36. <Label resid="AddinPanel.Label" />
  37. <Icon>
  38. <bt:Image size="16" resid="Icon.16x16" />
  39. <bt:Image size="32" resid="Icon.32x32" />
  40. <bt:Image size="80" resid="Icon.80x80" />
  41. </Icon>
  42. <Control xsi:type="Button" id="TaskpaneButton">
  43. <Label resid="TaskpaneButton.Label" />
  44. <Supertip>
  45. <Title resid="TaskpaneButton.Label" />
  46. <Description resid="TaskpaneButton.Tooltip" />
  47. </Supertip>
  48. <Icon>
  49. <bt:Image size="16" resid="Icon.16x16" />
  50. <bt:Image size="32" resid="Icon.32x32" />
  51. <bt:Image size="80" resid="Icon.80x80" />
  52. </Icon>
  53. <Action xsi:type="ShowTaskpane">
  54. <TaskpaneId>ButtonId1</TaskpaneId>
  55. <SourceLocation resid="Taskpane.Url" />
  56. </Action>
  57. </Control>
  58. </Group>
  59. </CustomTab>
  60. </ExtensionPoint>
  61. </DesktopFormFactor>
  62. </Host>
  63. </Hosts>
  64. <Resources>
  65. <bt:Images>
  66. <bt:Image id="Icon.16x16" DefaultValue="http://localhost:8084/assets/icon-16.png"/>
  67. <bt:Image id="Icon.32x32" DefaultValue="http://localhost:8084/assets/icon-32.png"/>
  68. <bt:Image id="Icon.80x80" DefaultValue="http://localhost:8084/assets/icon-80.png"/>
  69. </bt:Images>
  70. <bt:Urls>
  71. <!-- <bt:Url id="GetStarted.LearnMoreUrl" DefaultValue="https://go.microsoft.com/fwlink/?LinkId=276812" /> -->
  72. <bt:Url id="Commands.Url" DefaultValue="http://localhost:8084/commands.html" />
  73. <bt:Url id="Taskpane.Url" DefaultValue="http://localhost:8084/taskpane.html" />
  74. </bt:Urls>
  75. <bt:ShortStrings>
  76. <!-- <bt:String id="GetStarted.Title" DefaultValue="Get started with your sample add-in!" /> -->
  77. <bt:String id="Addition.Label" DefaultValue="AddinPanel" />
  78. <bt:String id="AddinPanel.Label" DefaultValue="AddinPanel" />
  79. <bt:String id="TaskpaneButton.Label" DefaultValue="TaskPane" />
  80. </bt:ShortStrings>
  81. <bt:LongStrings>
  82. <!-- <bt:String id="GetStarted.Description" DefaultValue="Your sample add-in loaded succesfully. Go to the HOME tab and click the 'Show Taskpane' button to get started." /> -->
  83. <bt:String id="TaskpaneButton.Tooltip" DefaultValue="Click to Show a Taskpane" />
  84. </bt:LongStrings>
  85. </Resources>
  86. </VersionOverrides>
  87. </OfficeApp>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement