﻿<?xml version="1.0" encoding="UTF-8"?>
<!--Created:ce44715c-8c4e-446b-879c-ea9ebe0f09c8-->
<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">

  <!-- Begin Basic Settings: Add-in metadata, used for all versions of Office unless override provided. -->

  <!-- IMPORTANT! Id must be unique for your add-in, if you reuse this manifest ensure that you change this id to a new GUID. -->
  <Id>25cf2445-0a0c-48a4-8af0-3b443eca2b5d</Id>

  <!--Version. Updates from the store only get triggered if there is a version change. -->
  <Version>1.3.0.0</Version>
  <ProviderName>Incorta</ProviderName>
  <DefaultLocale>en-US</DefaultLocale>
  <!-- The display name of your add-in. Used on the store and various places of the Office UI such as the add-ins dialog. -->
  <DisplayName DefaultValue="ExcelWebAddIn" />
  <Description DefaultValue="ExcelWebAddIn"/>

  <!-- Icon for your add-in. Used on installation screens and the add-ins dialog. -->
  <IconUrl DefaultValue="https://localhost:9443/addin/Images/Button32x32.png" />
  
  <!--Begin TaskPane Mode integration. This section is used if there are no VersionOverrides or if the Office client version does not support add-in commands. -->
  <Hosts>
    <Host Name="Workbook" />
  </Hosts>
  <DefaultSettings>
    <SourceLocation DefaultValue="https://localhost:9443/addin/Home.html" />
  </DefaultSettings>
  <!-- End TaskPane Mode integration.  -->

  <Permissions>ReadWriteDocument</Permissions>

  <!-- Begin Add-in Commands Mode integration. -->
  <VersionOverrides xmlns="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="VersionOverridesV1_0">
    
    <!-- The Hosts node is required. -->
    <Hosts>
      <!-- Each host can have a different set of commands. -->
      <!-- Excel host is Workbook, Word host is Document, and PowerPoint host is Presentation. -->
      <!-- Make sure the hosts you override match the hosts declared in the top section of the manifest. -->
      <Host xsi:type="Workbook">
        <!-- Form factor. Currently only DesktopFormFactor is supported. -->
        <DesktopFormFactor>
          <!--"This code enables a customizable message to be displayed when the add-in is loaded successfully upon individual install."-->
          <GetStarted>
            <!-- Title of the Getting Started callout. resid points to a ShortString resource -->
            <Title resid="GetStarted.Title"/>

            <!-- Description of the Getting Started callout. resid points to a LongString resource -->
            <Description resid="GetStarted.Description"/>

            <!-- Point to a url resource which details how the add-in should be used. -->
            <LearnMoreUrl resid="GetStarted.LearnMoreUrl"/>
          </GetStarted>
          <!-- Function file is a HTML page that includes the JavaScript where functions for ExecuteAction will be called. 
            Think of the FunctionFile as the code behind ExecuteFunction. -->
          <!--<FunctionFile resid="DesktopFunctionFile.Url" />-->

          <!-- PrimaryCommandSurface is the main Office Ribbon. -->
          <ExtensionPoint xsi:type="PrimaryCommandSurface">
            <!-- Use OfficeTab to extend an existing Tab. Use CustomTab to create a new tab. -->
            <OfficeTab id="TabHome">
              <!-- Ensure you provide a unique id for the group. Recommendation for any IDs is to namespace using your company name. -->
              <Group id="Group">
                <!-- Label for your group. resid must point to a ShortString resource. -->
                <Label resid="GroupLabel" />
                <!-- Icons. Required sizes 16,32,80, optional 20, 24, 40, 48, 64. Strongly recommended to provide all sizes for great UX. -->
                <!-- Use PNG icons. All URLs on the resources section must use HTTPS. -->
                <Icon>
                  <bt:Image size="16" resid="tpicon_16x16" />
                  <bt:Image size="32" resid="tpicon_32x32" />
                  <bt:Image size="48" resid="tpicon_48x48" />
                  <bt:Image size="64" resid="tpicon_64x64" />
                  <bt:Image size="80" resid="tpicon_80x80" />
                </Icon>

                <!-- Control. It can be of type "Button" or "Menu". -->
                <Control xsi:type="Button" id="TaskpaneButton">
                  <Label resid="TaskpaneButton.Label" />
                  <Supertip>
                    <!-- ToolTip title. resid must point to a ShortString resource. -->
                    <Title resid="TaskpaneButton.Label" />
                    <!-- ToolTip description. resid must point to a LongString resource. -->
                    <Description resid="TaskpaneButton.Tooltip" />
                  </Supertip>
                  <Icon>
                    <bt:Image size="16" resid="tpicon_16x16" />
                    <bt:Image size="32" resid="tpicon_32x32" />
                    <bt:Image size="48" resid="tpicon_48x48" />
                    <bt:Image size="64" resid="tpicon_64x64" />
                    <bt:Image size="80" resid="tpicon_80x80" />
                  </Icon>

                  <!-- This is what happens when the command is triggered (E.g. click on the Ribbon). Supported actions are ExecuteFunction or ShowTaskpane. -->
                  <Action xsi:type="ShowTaskpane">
                    <TaskpaneId>ButtonId</TaskpaneId>
                    <!-- Provide a url resource id for the location that will be displayed on the task pane. -->
                    <SourceLocation resid="Taskpane.Url" />
                  </Action>
                </Control>

                <!--Control. It can be of type "Button" or "Menu" -->
                <!--<Control xsi:type="Button" id="Contoso.FunctionButton">
                  --><!--Label for your button. resid must point to a ShortString resource --><!--
                  <Label resid="Contoso.FunctionButton.Label" />
                  <Supertip>
                    --><!--ToolTip title. resid must point to a ShortString resource --><!--
                    <Title resid="Contoso.FunctionButton.Label" />
                    --><!--ToolTip description. resid must point to a LongString resource --><!--
                    <Description resid="Contoso.FunctionButton.Tooltip" />
                  </Supertip>
                  <Icon>
                    <bt:Image size="16" resid="Contoso.FunctionButton.Icon" />
                    <bt:Image size="32" resid="Contoso.FunctionButton.Icon" />
                    <bt:Image size="80" resid="Contoso.FunctionButton.Icon" />
                  </Icon>
                  --><!--This is what happens when the command is triggered (E.g. click on the Ribbon). Supported actions are ExecuteFuncion or ShowTaskpane--><!--
                  --><!--Look at the FunctionFile.html page for reference on how to implement the function --><!--
                  <Action xsi:type="ExecuteFunction">
                    --><!--Name of the function to call. This function needs to exist in the global DOM namespace of the function file--><!--
                    <FunctionName>refresh</FunctionName>
                  </Action>
                </Control>-->
              </Group>
            </OfficeTab>
          </ExtensionPoint>
        </DesktopFormFactor>
      </Host>
    </Hosts>
    
    <!-- You can use resources across hosts and form factors. -->
    <Resources>
      <bt:Images>
        <bt:Image id="tpicon_16x16" DefaultValue="https://localhost:9443/addin/Images/Button16x16.png" />
        <bt:Image id="tpicon_32x32" DefaultValue="https://localhost:9443/addin/Images/Button32x32.png" />
        <bt:Image id="tpicon_48x48" DefaultValue="https://localhost:9443/addin/Images/Button48x48.png" />
        <bt:Image id="tpicon_64x64" DefaultValue="https://localhost:9443/addin/Images/Button64x64.png" />
        <bt:Image id="tpicon_80x80" DefaultValue="https://localhost:9443/addin/Images/Button80x80.png" />
        <bt:Image id="FunctionButton.Icon" DefaultValue="https://i.imgur.com/qDujiX0.png" />
      </bt:Images>
      <bt:Urls>
        <!--<bt:Url id="DesktopFunctionFile.Url" DefaultValue="https://localhost:9443/addin/Functions/FunctionFile.html" />-->
        <bt:Url id="Taskpane.Url" DefaultValue="https://localhost:9443/addin/Home.html" />
        <bt:Url id="GetStarted.LearnMoreUrl" DefaultValue="https://go.microsoft.com/fwlink/?LinkId=276812" />
      </bt:Urls>
      <!-- ShortStrings max characters==125. -->
      <bt:ShortStrings>
        <!--<bt:String id="FunctionButton.Label" DefaultValue="Refresh" />-->
        <bt:String id="TaskpaneButton.Label" DefaultValue="Incorta" />
        <bt:String id="GroupLabel" DefaultValue="Incorta" />
        <bt:String id="GetStarted.Title" DefaultValue="Get started with Incorta Add-in!" />
      </bt:ShortStrings>
      <!-- LongStrings max characters==250. -->
      <bt:LongStrings>
        <!--<bt:String id="FunctionButton.Tooltip" DefaultValue="Click to Refresh addin from saved data" />-->
        <bt:String id="TaskpaneButton.Tooltip" DefaultValue="Click to Show Incorta Addin Taskpane" />
        <bt:String id="GetStarted.Description" DefaultValue="Incorta Add-in loaded succesfully. Go to the HOME tab and click the 'Incorta' button to get started." />
      </bt:LongStrings>
    </Resources>
  </VersionOverrides>
  <!-- End Add-in Commands Mode integration. -->

</OfficeApp>
