Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<UseCodebase>true</UseCodebase>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<DeployExtension Condition="'$(DeployExtension)' == ''">true</DeployExtension>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -56,6 +57,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="GitRangerPackage.cs" />
<Compile Include="source.extension.cs" />
<Compile Include="Commands\BlameCommands.cs" />
<Compile Include="Commands\HistoryCommands.cs" />
<Compile Include="Commands\GraphCommands.cs" />
Expand Down
11 changes: 0 additions & 11 deletions src/CodingWithCalvin.GitRanger/GitRangerPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,17 +136,6 @@ private async Task RegisterCommandsAsync()
}
}

/// <summary>
/// VSIX metadata constants.
/// </summary>
public static class Vsix
{
public const string Name = "Git Ranger";
public const string Description = "A visually exciting Git management extension for Visual Studio";
public const string Version = "1.0.0";
public const string Author = "Calvin A. Allen";
}

/// <summary>
/// Package GUIDs.
/// </summary>
Expand Down
13 changes: 13 additions & 0 deletions src/CodingWithCalvin.GitRanger/source.extension.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
namespace CodingWithCalvin.GitRanger
{
internal static class Vsix
{
public const string Id = "CodingWithCalvin.VS-GitRanger";
public const string Name = "Git Ranger";
public const string Description = "A visually striking Git management extension for Visual Studio with inline blame, gutter annotations, and visual git graph.";
public const string Language = "en-US";
public const string Version = "1.0.0.0";
public const string Author = "Calvin A. Allen";
public const string Tags = "git, blame, history, graph, scm, source control";
}
}