Skip to content

Commit 9f7f356

Browse files
committed
Move files around and fix license
1 parent 0881e9d commit 9f7f356

File tree

6 files changed

+11
-4
lines changed

6 files changed

+11
-4
lines changed

src/CodingWithCalvin.SuperClean.Vsix/CodingWithCalvin.SuperClean.Vsix.csproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,18 @@
9797
</ItemGroup>
9898
<ItemGroup>
9999
<Content Include="Resources\icon.png">
100+
<Link>../resources/icon.png</Link>
100101
<IncludeInVSIX>true</IncludeInVSIX>
101102
</Content>
102103
<Content Include="Resources\logo.png">
103-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
104+
<Link>../resources/logo.png</Link>
104105
<IncludeInVSIX>true</IncludeInVSIX>
105106
</Content>
107+
<Content Include="Resources\LICENSE">
108+
<Link>../../LICENSE</Link>
109+
<IncludeInVSIX>true</IncludeInVSIX>
110+
</Content>
111+
106112
</ItemGroup>
107113
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
108114
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />

src/CodingWithCalvin.SuperClean.Vsix/source.extension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ internal sealed partial class Vsix
1212
public const string Description = @"Adds a 'Super Clean' option to the right click menu of the Solution and Project nodes of the Solution Explorer, to fully clear out the bin and obj folders for either all projects in the solution, or the specific project selected.";
1313
public const string Language = "en-US";
1414
public const string Version = "1.1";
15-
public const string Author = "Coding with Calvin";
15+
public const string Author = "Coding With Calvin";
1616
public const string Tags = "bin,debug,folder,output";
1717
}
1818
}

src/CodingWithCalvin.SuperClean.Vsix/source.extension.vsixmanifest

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
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="VS-SuperClean" Version="1.1" Language="en-US" Publisher="Coding with Calvin" />
4+
<Identity Id="VS-SuperClean" Version="1.1" Language="en-US" Publisher="Coding With Calvin" />
55
<DisplayName>Super Clean</DisplayName>
66
<Description xml:space="preserve">Adds a 'Super Clean' option to the right click menu of the Solution and Project nodes of the Solution Explorer, to clear out the bin and obj folders for all, or selected, projects in the solution.</Description>
77
<MoreInfo>https://github.com/codingwithcalvin/vs-superclean</MoreInfo>
8+
<License>Resources\LICENSE</License>
89
<Icon>Resources\logo.png</Icon>
10+
<PreviewImage>Resources\logo.png</PreviewImage>
911
<Tags>bin,debug,folder,output</Tags>
1012
</Metadata>
1113
<Installation>

src/resources/tes.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)