Skip to content

Commit 6b5ea73

Browse files
author
Drew Guarnera
committed
Change plugin name to "iTrace VS Plugin"
1 parent 8a33de5 commit 6b5ea73

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

iTraceVS/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("iTraceVS Plugin")]
8+
[assembly: AssemblyTitle("iTrace VS Plugin")]
99
[assembly: AssemblyDescription("")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("iTraceVS Plugin")]
12+
[assembly: AssemblyProduct("iTrace VS Plugin")]
1313
[assembly: AssemblyCopyright("")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]

iTraceVS/iTraceVS.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<OutputType>Library</OutputType>
4444
<AppDesignerFolder>Properties</AppDesignerFolder>
4545
<RootNamespace>iTraceVS</RootNamespace>
46-
<AssemblyName>iTraceVS Plugin</AssemblyName>
46+
<AssemblyName>iTrace VS Plugin</AssemblyName>
4747
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
4848
<GeneratePkgDefFile>true</GeneratePkgDefFile>
4949
<IncludeAssemblyInVSIXContainer>true</IncludeAssemblyInVSIXContainer>

iTraceVS/itrace_window.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class itrace_window : ToolWindowPane
2323
/// </summary>
2424
public itrace_window() : base(null)
2525
{
26-
this.Caption = "iTraceVS Plugin";
26+
this.Caption = "iTrace VS Plugin";
2727

2828
// This is the user control hosted by the tool window; Note that, even if this class implements IDisposable,
2929
// we are not calling Dispose on this object. This is because ToolWindowPane calls Dispose on

iTraceVS/itrace_windowControl.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
Name="MyToolWindow">
1111
<Grid MaxWidth="300">
1212
<StackPanel Orientation="Vertical" HorizontalAlignment="Left">
13-
<TextBlock HorizontalAlignment="Left" Height="45" Width="209" FontSize="30" Margin="10,5,10,5" Text="iTraceVS Plugin"/>
13+
<TextBlock HorizontalAlignment="Left" Height="45" Width="209" FontSize="30" Margin="10,5,10,5" Text="iTrace VS Plugin"/>
1414
<Button HorizontalAlignment="Left" Content="Connect to Core" Click="attemptConnection" Height="45" Width="120" x:Name="button1" Margin="10,5,5,5"/>
1515
<!--<CheckBox HorizontalAlignment="Left" Content="Highlight Tokens" Checked="Highlight_Checked" Unchecked="Highlight_Unchecked" Name="highlightBox" Height="20" FontSize="15" Width="145" Margin="10,5,5,5"/>-->
1616
</StackPanel>

iTraceVS/itrace_windowPackage.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ namespace iTraceVS
1010
public class OptionPageGrid : DialogPage {
1111
public static int portNum = 8008;
1212

13-
[Category("iTraceVS Plugin Settings")]
14-
[DisplayName("iTraceVS Plugin Port Number")]
15-
[Description("Designate which localhost port the iTraceVS Plugin should use.")]
13+
[Category("iTrace VS Plugin Settings")]
14+
[DisplayName("iTrace VS Plugin Port Number")]
15+
[Description("Designate which localhost port the iTrace VS Plugin should use.")]
1616
public int portNumber {
1717
get { return portNum; }
1818
set { portNum = value; }
@@ -40,7 +40,7 @@ public int portNumber {
4040
[ProvideMenuResource("Menus.ctmenu", 1)]
4141
[ProvideToolWindow(typeof(itrace_window))]
4242
[Guid(itrace_windowPackage.PackageGuidString)]
43-
[ProvideOptionPage(typeof(OptionPageGrid), "iTraceVS Plugin", "iTraceVS Plugin Settings", 0, 0, true)]
43+
[ProvideOptionPage(typeof(OptionPageGrid), "iTrace VS Plugin", "iTrace VS Plugin Settings", 0, 0, true)]
4444
[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1650:ElementDocumentationMustBeSpelledCorrectly", Justification = "pkgdef, VS and vsixmanifest are valid VS terms")]
4545
public sealed class itrace_windowPackage : Package
4646
{

iTraceVS/itrace_windowPackage.vsct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<Parent guid="guidSHLMainMenu" id="IDG_VS_WNDO_OTRWNDWS1"/>
4747
<Icon guid="guidImages" id="logoIcon" />
4848
<Strings>
49-
<ButtonText>iTraceVS Plugin</ButtonText>
49+
<ButtonText>iTrace VS Plugin</ButtonText>
5050
</Strings>
5151
</Button>
5252
</Buttons>

iTraceVS/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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>
44
<Identity Id="iTraceVS.ccbd6a77-f3a9-494c-a410-0bbc37e10dd6" Version="0.1.0" Language="en-US" Publisher="iTrace" />
5-
<DisplayName>iTraceVS Plugin</DisplayName>
5+
<DisplayName>iTrace VS Plugin</DisplayName>
66
<Description>iTrace Visual Studio Plugin</Description>
77
</Metadata>
88
<Installation>

0 commit comments

Comments
 (0)