【问题标题】:Office 2013 Apps publishing not listed in apps from "Shared Folder"Office 2013 应用程序发布未在“共享文件夹”的应用程序中列出
【发布时间】:2014-06-25 13:13:30
【问题描述】:

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

 <?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>

然后我在受信任的应用程序目录中添加了条目,

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

请指导我这里有什么问题。

【问题讨论】:

    标签: ms-office office-2013


    【解决方案1】:

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

    <?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>
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2013-09-16
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2022-01-07
      • 1970-01-01
      • 2013-02-20
      相关资源
      最近更新 更多