Bump up version of the vsix
Add an icon to the vsix Change minimum requirement of the vsix to VS RTM Fixes #1064 Fixes #1056
This commit is contained in:
parent
2fc88fe9c1
commit
ff197e6fed
|
|
@ -81,6 +81,9 @@
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
<IncludeInVSIX>true</IncludeInVSIX>
|
<IncludeInVSIX>true</IncludeInVSIX>
|
||||||
</Content>
|
</Content>
|
||||||
|
<Content Include="WebConfiguration.png">
|
||||||
|
<IncludeInVSIX>true</IncludeInVSIX>
|
||||||
|
</Content>
|
||||||
<None Include="source.extension.vsixmanifest">
|
<None Include="source.extension.vsixmanifest">
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</None>
|
</None>
|
||||||
|
|
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 7.0 KiB |
|
|
@ -1,12 +1,14 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
|
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
|
||||||
<Metadata>
|
<Metadata>
|
||||||
<Identity Id="Microsoft.VisualStudio.RazorExtension" Version="0.1" Language="en-US" Publisher="Microsoft" />
|
<Identity Id="Microsoft.VisualStudio.RazorExtension" Version="0.3" Language="en-US" Publisher="Microsoft" />
|
||||||
<DisplayName>Microsoft.VisualStudio.RazorExtension</DisplayName>
|
<DisplayName>Razor Language Services</DisplayName>
|
||||||
<Description xml:space="preserve">Language services for ASP.NET Core Razor</Description>
|
<Description xml:space="preserve">Language services for ASP.NET Core Razor</Description>
|
||||||
|
<Icon>WebConfiguration.png</Icon>
|
||||||
|
<PreviewIcon>WebConfiguration.png</PreviewIcon>
|
||||||
</Metadata>
|
</Metadata>
|
||||||
<Installation>
|
<Installation>
|
||||||
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0]" />
|
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0.26228.04,)" />
|
||||||
</Installation>
|
</Installation>
|
||||||
<Dependencies>
|
<Dependencies>
|
||||||
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.6,)" />
|
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.6,)" />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue