Skip to content

Commit 08f59b8

Browse files
author
Mads Houmann
committedNov 18, 2016
VS2017RC support
1 parent eb90c32 commit 08f59b8

5 files changed

+12
-4
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*.suo
66
*.user
77
*.sln.docstates
8+
.vs/
89

910
# Build results
1011
[Dd]ebug/
@@ -172,3 +173,4 @@ UpgradeLog*.htm
172173

173174
# Microsoft Fakes
174175
FakesAssemblies/
176+
/.vs

‎CommentsPlus.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<MinimumVisualStudioVersion>12.0</MinimumVisualStudioVersion>
4+
<MinimumVisualStudioVersion>15.0</MinimumVisualStudioVersion>
55
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
66
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
77
<FileUpgradeFlags>

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ CommentsPlus
22
============
33

44
Formats code comments in italics, and enables extra formatting for special comments
5+
56
By Mads Houmann
67

78
Based in part on code by Noah Richards and Tomas Restrepo.

‎readme.rtf

56 Bytes
Binary file not shown.

‎source.extension.vsixmanifest

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
33
<Metadata>
4-
<Identity Id="MGH.CommentsPlus.a6539c2f-6785-4586-8028-ad923b47224d" Version="1.6" Language="en-US" Publisher="Mads Houmann" />
4+
<Identity Id="MGH.CommentsPlus.a6539c2f-6785-4586-8028-ad923b47224d" Version="1.6.1" Language="en-US" Publisher="Mads Houmann" />
55
<DisplayName>CommentsPlus</DisplayName>
66
<Description xml:space="preserve">Comments in italics, extra formatting for comments starting with: !, ?, x, e.g., //!</Description>
77
<License>ms-pl.txt</License>
@@ -11,14 +11,19 @@
1111
<Tags>Comments, Formatting, Italics</Tags>
1212
</Metadata>
1313
<Installation>
14-
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[11.0,]" />
14+
<InstallationTarget Version="[14.0,16.0)" Id="Microsoft.VisualStudio.Community" />
15+
<InstallationTarget Version="[11.0,16.0)" Id="Microsoft.VisualStudio.Pro" />
16+
<InstallationTarget Version="[11.0,16.0)" Id="Microsoft.VisualStudio.Enterprise" />
17+
<InstallationTarget Version="[11.0,16.0)" Id="Microsoft.VisualStudio.IntegratedShell" />
1518
<InstallationTarget Version="[11.0,]" Id="Microsoft.VisualStudio.Ultimate" />
1619
<InstallationTarget Version="[11.0,]" Id="Microsoft.VisualStudio.Premium" />
17-
<InstallationTarget Version="[11.0,]" Id="Microsoft.VisualStudio.IntegratedShell" />
1820
</Installation>
1921
<Dependencies>
2022
</Dependencies>
2123
<Assets>
2224
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%|" />
2325
</Assets>
26+
<Prerequisites>
27+
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,16.0)" DisplayName="Visual Studio core editor" />
28+
</Prerequisites>
2429
</PackageManifest>

0 commit comments

Comments
 (0)