Permalink
Please sign in to comment.
Showing
with
57 additions
and 20 deletions.
- 0 { → .github}/CONTRIBUTING.md
- +18 −0 .github/ISSUE_TEMPLATE.md
- +0 −1 BundlerMinifier.sln
- BIN art/build-menu.png
- BIN art/contextmenu-bundleonbuild.png
- BIN art/contextmenu-createbundle.png
- BIN art/contextmenu-minify.png
- BIN art/task-runner-bindings.png
- BIN art/task-runner-explorer.png
- BIN logo.png
- +2 −2 src/BundlerMinifierVsix/BundleService.cs
- +2 −2 src/BundlerMinifierVsix/BundlerMinifierPackage.cs
- +12 −3 src/BundlerMinifierVsix/BundlerMinifierVsix.csproj
- +1 −1 src/BundlerMinifierVsix/Commands/BundleOnBuild.cs
- +1 −1 src/BundlerMinifierVsix/Commands/RemoveBundle.cs
- +0 −1 src/BundlerMinifierVsix/Constants.cs
- +5 −5 src/BundlerMinifierVsix/Properties/AssemblyInfo.cs
- BIN src/BundlerMinifierVsix/Resources/Package.ico
- BIN src/BundlerMinifierVsix/Resources/icon.png
- BIN src/BundlerMinifierVsix/Resources/logo.png
- BIN src/BundlerMinifierVsix/Resources/preview.png
- +1 −1 src/BundlerMinifierVsix/TaskRunner/WebCompilerTaskRunner.cs
- +12 −0 src/BundlerMinifierVsix/source.extension.cs
- BIN src/BundlerMinifierVsix/source.extension.ico
- +3 −3 src/BundlerMinifierVsix/{VSPackage.resx → source.extension.resx}
File renamed without changes.
| @@ -0,0 +1,18 @@ | ||
| +### Installed product versions | ||
| +- Visual Studio: [example 2015 Professional] | ||
| +- This extension: [example 1.1.21] | ||
| + | ||
| +### Description | ||
| +Replace this text with a short description | ||
| + | ||
| +### Steps to recreate | ||
| +1. Replace this | ||
| +2. text with | ||
| +3. the steps | ||
| +4. to recreate | ||
| + | ||
| +### Current behavior | ||
| +Explain what it's doing and why it's wrong | ||
| + | ||
| +### Expected behavior | ||
| +Explain what it should be doing after it's fixed. |
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
| @@ -0,0 +1,12 @@ | ||
| +namespace BundlerMinifierVsix | ||
| +{ | ||
| + static class Vsix | ||
| + { | ||
| + public const string Id = "a0ae318b-4f07-4f71-93cb-f21d3f03c6d3"; | ||
| + public const string Name = "Bundler & Minifier"; | ||
| + public const string Description = "Adds support for bundling and minifying JavaScript, CSS and HTML files in any project."; | ||
| + public const string Version = "1.8"; | ||
| + public const string Author = "Mads Kristensen"; | ||
| + public const string Tags = "bundle, bundling, minify, minification, js, css, html"; | ||
| + } | ||
| +} |
Binary file not shown.
0 comments on commit
499d187