BundleTransformer.Core 1.9.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package BundleTransformer.Core --version 1.9.1
NuGet\Install-Package BundleTransformer.Core -Version 1.9.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BundleTransformer.Core" Version="1.9.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BundleTransformer.Core --version 1.9.1
#r "nuget: BundleTransformer.Core, 1.9.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BundleTransformer.Core as a Cake Addin
#addin nuget:?package=BundleTransformer.Core&version=1.9.1

// Install BundleTransformer.Core as a Cake Tool
#tool nuget:?package=BundleTransformer.Core&version=1.9.1

Bundle Transformer - a modular extension for System.Web.Optimization (also known as the Microsoft ASP.NET Web Optimization Framework). Classes `StyleTransformer` and `ScriptTransformer`, included in the core of Bundle Transformer and implement interface `IBundleTransform`. They are intended to replace the standard classes `CssMinify` and `JsMinify`.

The main differences of `StyleTransformer` and `ScriptTransformer` classes from a standard implementations: ability to exclude unnecessary assets when adding assets from a directory, does not produce the re-minification of pre-minified assets, support automatic transformation of relative paths to absolute in CSS-code (by using `UrlRewritingCssPostProcessor`), etc. These classes do not produce the minification of code in runtime, but this feature can be added by installing of minifier-modules (now available modules based on Microsoft Ajax Minifier, YUI Compressor for .NET, Google Closure Compiler, Douglas Crockford's JSMin, Dean Edwards' Packer, Mihai Bazon's UglifyJS, Sergey Kryzhanovsky's CSSO (CSS Optimizer), WebGrease and Clean-css). In addition, you can also install translator-modules that implement the translation of code on intermediate languages (LESS, Sass, SCSS, CoffeeScript, TypeScript and Handlebars). Apart from this, in the Bundle Transformer there is a third type of modules - postprocessors. Postprocessors runs after translators and before minifiers. Now available following postprocessors: URL rewriting CSS-postprocessor (included in core) and postprocessor-module based on the Andrey Sitnik's Autoprefixer.

This extension will help your web applications successfully pass a most part of the tests in YSlow.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (23)

Showing the top 5 NuGet packages that depend on BundleTransformer.Core:

Package Downloads
BundleTransformer.Less The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

BundleTransformer.Less contains one translator-adapter - `LessTranslator` (supports the LESS (http://lesscss.org) version 3.9.0). This adapter makes translation of LESS code to CSS code. Also contains the `LessAssetHandler` debugging HTTP handler, which is responsible for text output of translated LESS asset. BundleTransformer.Less does not support loading of plugins. As a JS engine is used the JavaScript Engine Switcher library (https://github.com/Taritsyn/JavaScriptEngineSwitcher). For correct working of this module, you need to install one of the following NuGet packages: JavaScriptEngineSwitcher.Msie (only in the Chakra JsRT modes), JavaScriptEngineSwitcher.V8 or JavaScriptEngineSwitcher.ChakraCore.

BundleTransformer.SassAndScss The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

BundleTransformer.SassAndScss contains one translator-adapter - `SassAndScssTranslator`. This adapter makes translation of Sass and SCSS code to CSS code by using the Dart Sass Host for .NET (https://github.com/Taritsyn/DartSassHost) version 1.0.10 (supports the Dart Sass (https://github.com/sass/dart-sass) version 1.69.7). Also contains the `SassAndScssAssetHandler` debugging HTTP handler, which is responsible for text output of translated Sass or SCSS asset. As a JS engine is used the JavaScript Engine Switcher library (https://github.com/Taritsyn/JavaScriptEngineSwitcher). For correct working of this module, you need to install one of the following NuGet packages: * JavaScriptEngineSwitcher.ChakraCore * JavaScriptEngineSwitcher.Jint * JavaScriptEngineSwitcher.Msie (only in the Chakra “Edge” JsRT mode) * JavaScriptEngineSwitcher.V8 After installing the packages, you will need to register the default JS engine (https://github.com/Taritsyn/JavaScriptEngineSwitcher/wiki/Registration-of-JS-engines).

BundleTransformer.MicrosoftAjax The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

BundleTransformer.MicrosoftAjax contains two minifier-adapters: `MicrosoftAjaxCssMinifier` (for minification of CSS code) and `MicrosoftAjaxJsMinifier` (for minification of JS code). These adapters perform minification by using the Microsoft Ajax Minifier (https://ajaxmin.codeplex.com).

BundleTransformer.Autoprefixer The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

BundleTransformer.Autoprefixer contains one postprocessor-adapter for postprocessing of CSS code - `AutoprefixCssPostProcessor`. This adapter makes actualization of vendor prefixes in CSS code by using the Autoprefixer Host for .NET (https://github.com/Taritsyn/AutoprefixerHost) version 3.0.32 (supports the Andrey Sitnik's Autoprefixer (https://github.com/postcss/autoprefixer) version 10.4.16.1). As a JS engine is used the JavaScript Engine Switcher library (https://github.com/Taritsyn/JavaScriptEngineSwitcher). For correct working of this module, you need to install one of the following NuGet packages: * JavaScriptEngineSwitcher.ChakraCore * JavaScriptEngineSwitcher.Jint * JavaScriptEngineSwitcher.Msie (only in the Chakra JsRT modes) * JavaScriptEngineSwitcher.V8 After installing the packages, you will need to register the default JS engine (https://github.com/Taritsyn/JavaScriptEngineSwitcher/wiki/Registration-of-JS-engines).

BundleTransformer.Yui The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

BundleTransformer.Yui contains two minifier-adapters: `YuiCssMinifier` (for minification of CSS code) and `YuiJsMinifier` (for minification of JS code). These adapters perform minification by using the YUI Compressor for .NET (https://github.com/YUICompressor-NET/YUICompressor.NET).

GitHub repositories (4)

Showing the top 4 popular GitHub repositories that depend on BundleTransformer.Core:

Repository Stars
stride3d/stride
Stride Game Engine (formerly Xenko)
smartstore/SmartStoreNET
Open Source ASP.NET MVC Enterprise eCommerce Shopping Cart Solution
Taritsyn/WebMarkupMin
The Web Markup Minifier (abbreviated WebMarkupMin) - a .NET library that contains a set of markup minifiers. The objective of this project is to improve the performance of web applications by reducing the size of HTML, XHTML and XML code.
levibotelho/LearnAngular
The open source code repository for LearnAngular.
Version Downloads Last updated
1.10.0 1,018,647 12/26/2018
1.10.0-beta1 9,255 12/10/2018
1.9.213 115,460 10/2/2018
1.9.171 390,596 8/29/2017
1.9.171-beta1 2,313 8/25/2017
1.9.160 285,172 6/15/2017
1.9.152 120,613 3/3/2017
1.9.138 122,893 12/10/2016
1.9.92 364,379 3/8/2016
1.9.92-beta1 6,370 3/2/2016
1.9.92-alpha1 13,107 1/19/2016
1.9.89 139,542 12/20/2015
1.9.81 63,922 11/11/2015
1.9.81-beta1 2,547 11/4/2015
1.9.69 242,490 7/22/2015
1.9.52 190,340 3/30/2015
1.9.51 3,347 3/28/2015
1.9.43 118,963 1/31/2015
1.9.40 24,191 1/19/2015
1.9.39 4,019 1/18/2015
1.9.35 95,039 12/21/2014
1.9.34 12,439 12/19/2014
1.9.32 21,801 12/1/2014
1.9.30 59,369 11/24/2014
1.9.25 72,636 10/14/2014
1.9.24 5,293 10/8/2014
1.9.22 31,473 9/23/2014
1.9.13 85,634 8/7/2014
1.9.11 23,130 7/28/2014
1.9.5 16,565 6/30/2014
1.9.3 4,692 6/28/2014
1.9.2 3,379 6/26/2014
1.9.1 11,897 6/25/2014
1.9.0 13,433 6/23/2014
1.9.0-Beta3 6,020 6/21/2014
1.9.0-Beta2 3,981 6/16/2014
1.9.0-Beta1 5,871 6/13/2014
1.8.32 81,866 5/14/2014
1.8.30 18,683 4/28/2014
1.8.29 16,276 4/10/2014
1.8.23 94,747 2/21/2014
1.8.21 19,457 2/10/2014
1.8.20 20,793 2/4/2014
1.8.18 20,045 1/22/2014
1.8.17 32,219 12/7/2013
1.8.12 20,973 11/24/2013
1.8.11 36,949 11/7/2013
1.8.10 17,808 11/4/2013
1.8.9 14,953 10/25/2013
1.8.8 24,984 10/24/2013
1.8.7 11,723 10/16/2013
1.8.2 64,460 9/10/2013
1.8.0 9,359 9/5/2013
1.7.27 24,510 8/26/2013
1.7.24 10,343 8/12/2013
1.7.23 3,886 8/11/2013
1.7.21 10,579 8/4/2013
1.7.20 5,386 8/2/2013
1.7.19 11,975 7/24/2013
1.7.18 6,705 7/20/2013
1.7.16 20,613 7/11/2013
1.7.12-Beta1 10,371 6/4/2013
1.7.11-Beta1 2,716 5/29/2013
1.7.9-Beta1 5,462 5/27/2013
1.7.7-Beta1 5,762 5/3/2013
1.7.3-Beta1 3,902 4/12/2013
1.7.0-Beta1 5,907 3/19/2013
1.6.28 14,210 6/4/2013
1.6.26 12,262 5/28/2013
1.6.25 10,828 5/13/2013
1.6.24 58,199 3/6/2013
1.6.22 6,508 2/26/2013
1.6.21 3,653 2/19/2013
1.6.18 10,580 2/5/2013
1.6.17 6,817 1/23/2013
1.6.14 11,654 1/2/2013
1.6.13 12,004 12/4/2012
1.6.11 9,443 11/22/2012
1.6.10 8,002 11/17/2012
1.6.6 19,726 10/15/2012
1.6.5 7,663 10/11/2012
1.6.1 12,375 9/20/2012
1.6.0 8,771 9/12/2012
1.5.5 7,270 8/29/2012
1.5.0 52,093 8/16/2012
1.4.3-beta3 5,442 8/1/2012
1.4.2-beta3 4,730 6/23/2012
1.4.1-beta3 4,320 6/19/2012
1.4.0-beta2 4,329 6/6/2012
1.3.0-beta 5,137 5/16/2012
1.2.1-beta 4,398 4/8/2012
1.2.0-beta 4,607 4/3/2012
1.1.0-beta 4,310 3/29/2012
1.0.0-beta 3,761 3/25/2012

Added possibility to combine assets before minification. To do this need in `combineFilesBeforeMinification` attribute of configuration elements `configuration/bundleTransformer/core/css` and `configuration/bundleTransformer/core/js` set value equals to `true`.