Skip to content

Commit 909b6fe

Browse files
committed
Limit VSIX description to 200 chars, so VSIXPublisher won't redact it
1 parent e7e23bd commit 909b6fe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/XrmTools/source.extension.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ internal sealed partial class Vsix
1010
{
1111
public const string Id = "XrmTools.eba3cd26-ffad-444f-b4ef-771d430bacef";
1212
public const string Name = "Xrm Tools";
13-
public const string Description = @"Xrm Tools is a Visual Studio extension that aims to make Power Platform development feel native within Visual Studio. You will get Intellisense support for your Plugins, generate boiler plate code, typed entities and more right from within Visual Studio. You have full control over code generation using Scriban templates.";
13+
public const string Description = @"Xrm Tools is a Visual Studio extension that makes Power Platform development feel native, with IntelliSense for plugins, boilerplate and typed entity generation, and first-class FetchXML support.";
1414
public const string Language = "en-US";
1515
public const string Version = "1.5.5";
1616
public const string Author = "Reza Niroomand";
17-
public const string Tags = "Power Platform, Dataverse, Power Apps, XRM, Code Generator";
17+
public const string Tags = "Power Platform, Dataverse, Power Apps, XRM";
1818
public const bool IsPreview = false;
1919
}
2020
}

src/XrmTools/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Metadata>
44
<Identity Id="XrmTools.eba3cd26-ffad-444f-b4ef-771d430bacef" Version="1.5.5" Language="en-US" Publisher="Reza Niroomand" />
55
<DisplayName>Xrm Tools</DisplayName>
6-
<Description xml:space="preserve">Xrm Tools is a Visual Studio extension that makes Power Platform development feel native. It adds IntelliSense for plugins, generates boilerplate and typed entities, and makes FetchXML a first-class language inside Visual Studio, with full control over code generation.</Description>
6+
<Description xml:space="preserve">Xrm Tools is a Visual Studio extension that makes Power Platform development feel native, with IntelliSense for plugins, boilerplate and typed entity generation, and first-class FetchXML support.</Description>
77
<MoreInfo>https://github.com/rezanid/xrmtools</MoreInfo>
88
<License>Resources\LICENSE.txt</License>
99
<GettingStartedGuide>Resources\GettingStarted.html</GettingStartedGuide>

0 commit comments

Comments
 (0)