Skip to content

Commit

Permalink
add file type icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Oren Novotny committed Feb 1, 2017
1 parent 4fbc62f commit d776ff7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 2 additions & 0 deletions PackageExplorer.Package/PackageExplorer.Package.jsproj
Expand Up @@ -139,6 +139,8 @@
<Link>win32\Resources\fxAssemblies.txt</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="images\nuspec.png" />
<Content Include="images\package.png" />
<Content Include="images\Square150x150Logo.scale-200.png" />
<Content Include="images\Square310x310Logo.scale-200.png" />
<Content Include="images\Square44x44Logo.scale-200.png" />
Expand Down
Binary file added PackageExplorer.Package/images/nuspec.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PackageExplorer.Package/images/package.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 8 additions & 6 deletions PackageExplorer.Package/package.appxmanifest
Expand Up @@ -25,18 +25,20 @@
</uap:VisualElements>
<Extensions>
<uap:Extension Category="windows.fileTypeAssociation">
<uap:FileTypeAssociation Name="spec">
<uap:DisplayName>NuGet spec file</uap:DisplayName>
<uap:FileTypeAssociation Name="package">
<uap:DisplayName>NuGet package file</uap:DisplayName>
<uap:Logo>images\Square150x150Logo.png</uap:Logo>
<uap:SupportedFileTypes>
<uap:FileType>.nuspec</uap:FileType>
<uap:FileType>.nupkg</uap:FileType>
</uap:SupportedFileTypes>
</uap:FileTypeAssociation>
</uap:Extension>
<uap:Extension Category="windows.fileTypeAssociation">
<uap:FileTypeAssociation Name="package">
<uap:DisplayName>NuGet package file</uap:DisplayName>
<uap:FileTypeAssociation Name="spec">
<uap:DisplayName>NuGet spec file</uap:DisplayName>
<uap:Logo>images\nuspec.png</uap:Logo>
<uap:SupportedFileTypes>
<uap:FileType>.nupkg</uap:FileType>
<uap:FileType>.nuspec</uap:FileType>
</uap:SupportedFileTypes>
</uap:FileTypeAssociation>
</uap:Extension>
Expand Down

0 comments on commit d776ff7

Please sign in to comment.