Office 2013 Apps发布未列在“共享文件夹”中的应用程序中

时间:2014-06-25 13:13:31

标签: ms-office office-2013

我正在尝试通过在网络共享上发布来创建Office 2013应用。为此我创建了以下Manifest文件,

 <?xml version="1.0" encoding="utf-8"?>
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.0"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:ver="http://schemas.microsoft.com/office/appforoffice/1.0"
xsi:type="ContentApp">
  <Id>df5b5660-84ce-11e1-b0c4-0800200c9a66</Id>
  <AlternateId>en-US\WA123456789</AlternateId>
  <Version>1.0.0.0</Version>
  <ProviderName>Microsoft</ProviderName>
  <DefaultLocale>en-US</DefaultLocale>
  <DisplayName DefaultValue="Sample content app" />
  <Description DefaultValue="Describe the features of this app." />

  <Hosts>
     <Host Name="Presentation" />
     <Host Name="Excel" />
  </Hosts>
  <DefaultSettings>
    <SourceLocation DefaultValue="https://www.bing.com" />
    <RequestedWidth>400</RequestedWidth> 
    <RequestedHeight>400</RequestedHeight>
  </DefaultSettings>
  <AllowSnapshot>true</AllowSnapshot>
</OfficeApp>

之后我在Trusted Apps目录中添加了条目

TrustedCatalogSettings

但是我无法在列表中看到我的应用,

AppsListing

请指导我在这里做错了什么。

1 个答案:

答案 0 :(得分:0)

我发现微软已经发布了一个需要更新版本清单的服务包,下面是工作清单......

<?xml version="1.0" encoding="utf-8"?>
<OfficeApp 
  xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  xsi:type="ContentApp">
  <Id>01eac144-e55a-45a7-b6e3-f1cc60ab0126</Id>
  <AlternateId>en-US\WA123456789</AlternateId>
  <Version>1.0.0.0</Version>
  <ProviderName>Microsoft</ProviderName>
  <DefaultLocale>en-US</DefaultLocale>
  <DisplayName DefaultValue="Sample content app" />
  <Description DefaultValue="Describe the features of this app." />
  <IconUrl DefaultValue="https://contoso.com/ENUSIcon.png" />
  <Hosts>
    <Host Name="Workbook" />
    <Host Name="Presentation" />
  </Hosts>
  <DefaultSettings>
    <SourceLocation DefaultValue="https://www.bing.com" />
    <RequestedWidth>400</RequestedWidth> 
    <RequestedHeight>400</RequestedHeight>
  </DefaultSettings>
  <AllowSnapshot>true</AllowSnapshot>
</OfficeApp>