Skip to content
This repository has been archived by the owner on May 4, 2023. It is now read-only.

Commit

Permalink
Generate new extension Id
Browse files Browse the repository at this point in the history
  • Loading branch information
MalteAtCodiga committed Oct 27, 2022
1 parent e15c713 commit 5df4e2f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Extension/Logging/ExtensionLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private static Version GetExtensionVersion()
return await VS.GetServiceAsync<SVsExtensionManager, IVsExtensionManager>();
});

var codigaExtension = extensionManager.GetInstalledExtension("Codiga.2c544927-3588-41b4-9bfe-e80a0b99df80");
var codigaExtension = extensionManager.GetInstalledExtension("Codiga.7f415e9f-9649-4ced-bbb2-64044b3d0a72");

return codigaExtension.Header.Version;
}
Expand Down
4 changes: 2 additions & 2 deletions src/Extension/source.extension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ namespace Extension
{
internal sealed partial class Vsix
{
public const string Id = "Codiga.2c544927-3588-41b4-9bfe-e80a0b99df80";
public const string Id = "Codiga.7f415e9f-9649-4ced-bbb2-64044b3d0a72";
public const string Name = "Codiga";
public const string Description = @"Code Snippets for 15+ languages and Code Analysis with Custom Rules.";
public const string Language = "en-US";
public const string Version = "1.0";
public const string Version = "0.0.1";
public const string Author = "Codiga";
public const string Tags = "";
}
Expand Down
2 changes: 1 addition & 1 deletion src/Extension/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<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">
<Metadata>
<Identity Id="Codiga.2c544927-3588-41b4-9bfe-e80a0b99df80" Version="0.0.1" Language="en-US" Publisher="Codiga" />
<Identity Id="Codiga.7f415e9f-9649-4ced-bbb2-64044b3d0a72" Version="0.0.1" Language="en-US" Publisher="Codiga" />
<DisplayName>Codiga</DisplayName>
<Description xml:space="preserve">Code Snippets for 15+ languages and Code Analysis with Custom Rules.</Description>
<MoreInfo>https://www.codiga.io/</MoreInfo>
Expand Down

0 comments on commit 5df4e2f

Please sign in to comment.