Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions Whut.AttachTo/AttachTo.vsct
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
If you do not want an image next to your command, remove the Icon node or set it to <Icon guid="guidOfficeIcon" id="msotcidNoIcon" /> -->
<Button guid="guidAttachToCmdSet" id="cmdidWhutAttachToIIS" priority="0x0100" type="Button">
<Parent guid="guidAttachToCmdSet" id="WhutAttachToMenuGroup" />
<Icon guid="guidImages" id="bmpPic1" />
<Icon guid="guidImages" id="imgIIS" />
<CommandFlag>DynamicVisibility</CommandFlag>
<Strings>
<CommandName>cmdidWhutAttachToIIS</CommandName>
Expand All @@ -67,7 +67,7 @@

<Button guid="guidAttachToCmdSet" id="cmdidWhutAttachToIISExpress" priority="0x0100" type="Button">
<Parent guid="guidAttachToCmdSet" id="WhutAttachToMenuGroup" />
<Icon guid="guidImages" id="bmpPic1" />
<Icon guid="guidImages" id="imgIISExpress" />
<CommandFlag>DynamicVisibility</CommandFlag>
<Strings>
<CommandName>cmdidWhutAttachToIISExpress</CommandName>
Expand All @@ -77,7 +77,7 @@

<Button guid="guidAttachToCmdSet" id="cmdidWhutAttachToNUnit" priority="0x0100" type="Button">
<Parent guid="guidAttachToCmdSet" id="WhutAttachToMenuGroup" />
<Icon guid="guidImages" id="bmpPic1" />
<Icon guid="guidImages" id="imgNUnit" />
<CommandFlag>DynamicVisibility</CommandFlag>
<Strings>
<CommandName>cmdidWhutAttachToNUnit</CommandName>
Expand All @@ -93,7 +93,7 @@
bitmap strip containing the bitmaps and then there are the numeric ids of the elements used
inside a button definition. An important aspect of this declaration is that the element id
must be the actual index (1-based) of the bitmap inside the bitmap strip. -->
<Bitmap guid="guidImages" href="Resources\Images_32bit.bmp" usedList="bmpPic1, bmpPic2, bmpPicSearch, bmpPicX, bmpPicArrows"/>
<Bitmap guid="guidImages" href="Resources\Images.png" usedList="imgIIS, imgIISExpress, imgNUnit"/>
</Bitmaps>
</Commands>

Expand All @@ -110,11 +110,9 @@
</GuidSymbol>

<GuidSymbol name="guidImages" value="{7cecfc21-6262-422a-93dd-223db26a763c}" >
<IDSymbol name="bmpPic1" value="1" />
<IDSymbol name="bmpPic2" value="2" />
<IDSymbol name="bmpPicSearch" value="3" />
<IDSymbol name="bmpPicX" value="4" />
<IDSymbol name="bmpPicArrows" value="5" />
<IDSymbol name="imgIIS" value="1" />
<IDSymbol name="imgIISExpress" value="2" />
<IDSymbol name="imgNUnit" value="3" />
</GuidSymbol>
</Symbols>
</CommandTable>
Binary file added Whut.AttachTo/Resources/Images.pdn
Binary file not shown.
Binary file added Whut.AttachTo/Resources/Images.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed Whut.AttachTo/Resources/Images_32bit.bmp
Binary file not shown.
Binary file modified Whut.AttachTo/Resources/Package.ico
Binary file not shown.
Binary file added Whut.AttachTo/Resources/Package.pdn
Binary file not shown.
16 changes: 9 additions & 7 deletions Whut.AttachTo/Whut.AttachTo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="Resources\Images.pdn" />
<None Include="Resources\Package.pdn" />
<None Include="source.extension.vsixmanifest">
<SubType>Designer</SubType>
</None>
Expand All @@ -148,19 +150,19 @@
</VSCTCompile>
</ItemGroup>
<ItemGroup>
<None Include="Resources\Images_32bit.bmp" />
</ItemGroup>
<ItemGroup>
<Content Include="icon.png">
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Content Include="preview.png">
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Resource Include="Resources\Images.png" />
<Content Include="Resources\Package.ico" />
<Content Include="..\license.txt">
<Link>license.txt</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Content Include="preview.jpg">
<IncludeInVSIX>true</IncludeInVSIX>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<PropertyGroup>
<UseCodebase>true</UseCodebase>
Expand Down
Binary file added Whut.AttachTo/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed Whut.AttachTo/preview.jpg
Binary file not shown.
Binary file added Whut.AttachTo/preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion Whut.AttachTo/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
<MoreInfoUrl>https://github.com/whut/AttachTo</MoreInfoUrl>
<License>license.txt</License>
<GettingStartedGuide>http://visualstudiogallery.msdn.microsoft.com/d0265ab0-df51-4100-8e10-1f84403c4cd0</GettingStartedGuide>
<PreviewImage>preview.jpg</PreviewImage>
<PreviewImage>preview.png</PreviewImage>
<Icon>icon.png</Icon>
<InstalledByMsi>false</InstalledByMsi>
<SupportedProducts>
<VisualStudio Version="10.0">
Expand Down