Skip to content

Commit

Permalink
Added some default file exclude patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
menees committed Feb 20, 2022
1 parent d397bfb commit b048e72
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Menees.VsTools/MainPackage.Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public sealed partial class MainPackage
//
// Note: When the version changes (major, minor, build, or revision), also update:
// - source.extension.vsixmanifest: <Identity Version="*"/>
internal const string Version = VersionYear + ".0.2";
internal const string Version = VersionYear + ".0.3";

internal const string Title = "Menees VS Tools";

Expand Down
6 changes: 5 additions & 1 deletion src/Menees.VsTools/Tasks/Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ internal sealed class Options : OptionsBase

private const string DefaultExcludeFilesPatterns = @".+\.Designer\.\w+$" + "\r\n" +
@"modernizr-\d+\.\d+\.\d+(-vsdoc)?\.js$" + "\r\n" +
@"jquery-\d+\.\d+\.\d+(-vsdoc)?\.js$";
@"jquery-\d+\.\d+\.\d+(-vsdoc)?\.js$" + "\r\n" +
@".+\.min\.js$" + "\r\n" +
@"globalize\..+.js$" + "\r\n" +
@"ace\.js$" + "\r\n" +
@"cldr\.js$";

private const string DefaultExcludeProjectsPatterns = @".+\.(sql|vc|vcx)proj$";
private const string DefaultTodoPrefix = "TODO: ";
Expand Down
2 changes: 1 addition & 1 deletion src/Menees.VsTools/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="Menees VS Tools 2022" Version="2022.0.2" Language="en-US" Publisher="Bill Menees" />
<Identity Id="Menees VS Tools 2022" Version="2022.0.3" Language="en-US" Publisher="Bill Menees" />
<DisplayName>Menees VS Tools 2022</DisplayName>
<Description xml:space="preserve">Provides several new commands such as Sort Lines, Sort Members, Trim, Statistics, ExecuteFile, AddRegion, CollapseAllRegions, ExpandAllRegions, and ToggleFiles.

Expand Down

0 comments on commit b048e72

Please sign in to comment.