UAP 文件扩展名

UAP file extensions

我的 package.appxmanifest 编辑器无法在新的 VS 2015 RC 的设计器中打开,所以我不得不用老式的方式编辑它。如何将文件扩展名添加到 windows 通用应用程序 (windows 10),例如 8.1 应用程序中的这个应用程序:

<Extensions>

<Extension Category="windows.fileTypeAssociation">

<FileTypeAssociation Name="mp3">

<DisplayName>mp3</DisplayName>

<SupportedFileTypes>

<FileType>.mp3</FileType>

<FileType>.wma</FileType>

<FileType>.wav</FileType>

</SupportedFileTypes>

</FileTypeAssociation>

</Extension>

</Extensions>

您可以像这样添加文件扩展名:

 <Applications>
<Application Id="App"
  Executable="$targetnametoken$.exe"
  EntryPoint="MultipleWindows.App">
  <Extensions><uap:Extension Category="windows.fileTypeAssociation">
      <uap:FileTypeAssociation Name="jpsmv">
        <uap:SupportedFileTypes>
        <uap:FileType>.jpsMV</uap:FileType>  
        </uap:SupportedFileTypes>
        </uap:FileTypeAssociation>  
    </uap:Extension>
    </Extensions>        
  <uap:VisualElements

参考:https://msdn.microsoft.com/en-us/library/windows/apps/dn934796.aspx