Skip to content

Commit

Permalink
Version 2.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Taritsyn committed Nov 14, 2024
1 parent 70cd2fd commit 8b14d18
Show file tree
Hide file tree
Showing 35 changed files with 90 additions and 57 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
Change log
==========

## v2.18.0 - November 14, 2024
* In WebMarkupMin.NUglify added support for the NUglify version 1.21.10
* In ASP.NET Core extensions:
* Services required by WebMarkupMin are now conditionally registered using the `TryAdd` methods
* Added a `AspNetCoreLogger` class, which is a wrapper around the standard ASP.NET Core logger
* Created the WebMarkupMin.AspNetCoreLatest module, that contains middleware for the ASP.NET Core 8 and 9
* 3 packages have been deprecated:
* WebMarkupMin.AspNetCore5 package replaced by the WebMarkupMin.AspNetCore3 package
* WebMarkupMin.AspNetCore7 package replaced by the WebMarkupMin.AspNetCore6 package
* WebMarkupMin.AspNetCore8 package replaced by the WebMarkupMin.AspNetCoreLatest package
* In GZip, Deflate and Brotli compression settings for .NET 9 was added one new property - `AlternativeLevel`
* In WebMarkupMin.AspNetCore6 added support for the ASP.NET Core 6.0.36
* In WebMarkupMin.AspNet.Brotli:
* Added support for .NET 9
* Removed a .NET 6 and .NET 7 targets
* In compression settings was changed a default value of the `Level` property from `5` to `4`

## v2.18.0 RC 1 - November 11, 2024
* In ASP.NET Core extensions:
* Services required by WebMarkupMin are now conditionally registered using the `TryAdd` methods
Expand Down
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The above mentioned minifiers produce only the most simple minifications of CSS

Also supports minification of views of popular JavaScript template engines: [KnockoutJS](https://knockoutjs.com/), [Kendo UI MVVM](https://www.telerik.com/kendo-ui) and [AngularJS](https://angularjs.org/) 1.X.

In addition, there are several modules that integrate this library into ASP.NET: WebMarkupMin.AspNet4.HttpModules (for ASP.NET 4.X and ASP.NET Web Pages), WebMarkupMin.AspNet4.Mvc (for ASP.NET MVC 3, 4 or 5), WebMarkupMin.AspNet4.WebForms (for ASP.NET Web Forms 4.X), WebMarkupMin.AspNetCore1 (for ASP.NET Core 1.X), WebMarkupMin.AspNetCore2 (for ASP.NET Core 2.X), WebMarkupMin.AspNetCore3 (for ASP.NET Core 3.1+), WebMarkupMin.AspNetCore5 (for ASP.NET Core 5.X), WebMarkupMin.AspNetCore6 (for ASP.NET Core 6), WebMarkupMin.AspNetCore7 (for ASP.NET Core 7) and WebMarkupMin.AspNetCore8 (for ASP.NET Core 8).
In addition, there are several modules that integrate this library into ASP.NET: WebMarkupMin.AspNet4.HttpModules (for ASP.NET 4.X and ASP.NET Web Pages), WebMarkupMin.AspNet4.Mvc (for ASP.NET MVC 3, 4 or 5), WebMarkupMin.AspNet4.WebForms (for ASP.NET Web Forms 4.X), WebMarkupMin.AspNetCore1 (for ASP.NET Core 1.X), WebMarkupMin.AspNetCore2 (for ASP.NET Core 2.X), WebMarkupMin.AspNetCore3 (for ASP.NET Core 3.1 and 5), WebMarkupMin.AspNetCore6 (for ASP.NET Core 6 and 7) and WebMarkupMin.AspNetCoreLatest (for ASP.NET Core 8 and 9).

You can try WebMarkupMin in action and experiment with different minification settings live on the [WebMarkupMin Online](https://webmarkupmin.bsite.net/) site.

Expand All @@ -35,12 +35,10 @@ You can try WebMarkupMin in action and experiment with different minification se
* [WebMarkupMin: ASP.NET 4.X Web Forms](http://nuget.org/packages/WebMarkupMin.AspNet4.WebForms/) (supports .NET Framework 4.0 and .NET Framework 4.5)
* [WebMarkupMin: ASP.NET Core 1.X](http://nuget.org/packages/WebMarkupMin.AspNetCore1/) (supports .NET Framework 4.5.1 and .NET Standard 1.3)
* [WebMarkupMin: ASP.NET Core 2.X](http://nuget.org/packages/WebMarkupMin.AspNetCore2/) (supports .NET Standard 2.0)
* [WebMarkupMin: ASP.NET Core 3.X](http://nuget.org/packages/WebMarkupMin.AspNetCore3/) (supports .NET Core App 3.1)
* [WebMarkupMin: ASP.NET Core 5.X](http://nuget.org/packages/WebMarkupMin.AspNetCore5/) (supports .NET 5.0)
* [WebMarkupMin: ASP.NET Core 6](http://nuget.org/packages/WebMarkupMin.AspNetCore6/) (supports .NET 6)
* [WebMarkupMin: ASP.NET Core 7](http://nuget.org/packages/WebMarkupMin.AspNetCore7/) (supports .NET 7)
* [WebMarkupMin: ASP.NET Core 8](http://nuget.org/packages/WebMarkupMin.AspNetCore8/) (supports .NET 8)
* [WebMarkupMin: Brotli for ASP.NET](http://nuget.org/packages/WebMarkupMin.AspNet.Brotli/) (supports .NET Framework 4.0, .NET Framework 4.5, .NET Standard 1.3, .NET Standard 2.0, .NET Standard 2.1, .NET 6 and .NET 7)
* [WebMarkupMin: ASP.NET Core 3.1+](http://nuget.org/packages/WebMarkupMin.AspNetCore3/) (supports .NET Core App 3.1)
* [WebMarkupMin: ASP.NET Core 6+](http://nuget.org/packages/WebMarkupMin.AspNetCore6/) (supports .NET 6)
* [WebMarkupMin: ASP.NET Core Latest](https://www.nuget.org/packages/WebMarkupMin.AspNetCoreLatest/) (supports .NET 8 and .NET 9)
* [WebMarkupMin: Brotli for ASP.NET](http://nuget.org/packages/WebMarkupMin.AspNet.Brotli/) (supports .NET Framework 4.0, .NET Framework 4.5, .NET Standard 1.3, .NET Standard 2.0, .NET Standard 2.1 and .NET 9)

### Unofficial modules
* [Syku.WebMarkupMin.Config](https://www.nuget.org/packages/Syku.WebMarkupMin.Config/) (supports .NET Standard 2.0) by Michał Sykutera
Expand Down
28 changes: 28 additions & 0 deletions samples/SharedData/text-content/change-log.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
<p>An overview of new features and fixes:</p>

<h3>2.18.0 - November 14, 2024</h3>
<ul>
<li>In WebMarkupMin.NUglify added support for the NUglify version 1.21.10</li>
<li>In ASP.NET Core extensions:
<ul>
<li>Services required by WebMarkupMin are now conditionally registered using the <code>TryAdd</code> methods</li>
<li>Added a <code>AspNetCoreLogger</code> class, which is a wrapper around the standard ASP.NET Core logger</li>
<li>Created the WebMarkupMin.AspNetCoreLatest module, that contains middleware for the ASP.NET Core 8 and 9</li>
<li>3 packages have been deprecated:
<ul>
<li>WebMarkupMin.AspNetCore5 package replaced by the WebMarkupMin.AspNetCore3 package</li>
<li>WebMarkupMin.AspNetCore7 package replaced by the WebMarkupMin.AspNetCore6 package</li>
<li>WebMarkupMin.AspNetCore8 package replaced by the WebMarkupMin.AspNetCoreLatest package</li>
</ul>
</li>
<li>In GZip, Deflate and Brotli compression settings for .NET 9 was added one new property - <code>AlternativeLevel</code></li>
</ul>
</li>
<li>In WebMarkupMin.AspNetCore6 added support for the ASP.NET Core 6.0.36</li>
<li>In WebMarkupMin.AspNet.Brotli:
<ul>
<li>Added support for .NET 9</li>
<li>Removed a .NET 6 and .NET 7 targets</li>
<li>In compression settings was changed a default value of the <code>Level</code> property from <code>5</code> to <code>4</code></li>
</ul>
</li>
</ul>

<h3>2.18.0 RC 1 - November 11, 2024</h3>
<ul>
<li>In ASP.NET Core extensions:
Expand Down
2 changes: 1 addition & 1 deletion samples/SharedData/text-content/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
WebMarkupMin.Core contains built-in JavaScript minifier based on the Douglas Crockford's <a href="https://github.com/douglascrockford/JSMin" target="_blank">JSMin</a> and built-in CSS minifier based on the Mads Kristensen's <a href="https://madskristensen.net/blog/efficient-stylesheet-minification-in-c" target="_blank">Efficient stylesheet minifier</a>.
The above mentioned minifiers produce only the most simple minifications of CSS and JavaScript code, but you can always install additional modules that support the more powerful algorithms of minification: WebMarkupMin.MsAjax (contains minifier-adapters for the <a href="https://github.com/microsoft/ajaxmin" target="_blank">Microsoft Ajax Minifier</a>), WebMarkupMin.Yui (contains minifier-adapters for <a href="https://github.com/YUICompressor-NET/YUICompressor.NET" target="_blank">YUI Compressor for .NET</a>) and WebMarkupMin.NUglify (contains minifier-adapters for the <a href="https://github.com/trullock/NUglify" target="_blank">NUglify</a>).</p>
<p>Also supports minification of views of popular JavaScript template engines: <a href="http://knockoutjs.com/" target="_blank">KnockoutJS</a>, <a href="https://www.telerik.com/kendo-ui" target="_blank">Kendo UI MVVM</a> and <a href="https://angularjs.org/" target="_blank">AngularJS</a> 1.X.</p>
<p>In addition, there are several modules that integrate this library into ASP.NET: WebMarkupMin.AspNet4.HttpModules (for ASP.NET 4.X and ASP.NET Web Pages), WebMarkupMin.AspNet4.Mvc (for ASP.NET MVC 3, 4 or 5), WebMarkupMin.AspNet4.WebForms (for ASP.NET Web Forms 4.X), WebMarkupMin.AspNetCore1 (for ASP.NET Core 1.X), WebMarkupMin.AspNetCore2 (for ASP.NET Core 2.X), WebMarkupMin.AspNetCore3 (for ASP.NET Core 3.1+), WebMarkupMin.AspNetCore5 (for ASP.NET Core 5.X), WebMarkupMin.AspNetCore6 (for ASP.NET Core 6) and WebMarkupMin.AspNetCore7 (for ASP.NET Core 7).</p>
<p>In addition, there are several modules that integrate this library into ASP.NET: WebMarkupMin.AspNet4.HttpModules (for ASP.NET 4.X and ASP.NET Web Pages), WebMarkupMin.AspNet4.Mvc (for ASP.NET MVC 3, 4 or 5), WebMarkupMin.AspNet4.WebForms (for ASP.NET Web Forms 4.X), WebMarkupMin.AspNetCore1 (for ASP.NET Core 1.X), WebMarkupMin.AspNetCore2 (for ASP.NET Core 2.X), WebMarkupMin.AspNetCore3 (for ASP.NET Core 3.1 and 5), WebMarkupMin.AspNetCore6 (for ASP.NET Core 6 and 7) and WebMarkupMin.AspNetCoreLatest (for ASP.NET Core 8 and 9).</p>
<p>You can try WebMarkupMin in action and experiment with different minification settings live on the <a href="https://webmarkupmin.bsite.net/" target="_blank">WebMarkupMin Online</a> site.</p>
<p>WebMarkupMin was created and is maintained by Andrey Taritsyn.</p>
6 changes: 3 additions & 3 deletions samples/WebMarkupMin.Sample.AspNetCore1.Mvc1/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ public void ConfigureServices(IServiceCollection services)
{
services.AddSingleton(Configuration);

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

// Add WebMarkupMin services to the services container.
services.AddWebMarkupMin(options =>
{
Expand Down Expand Up @@ -122,9 +125,6 @@ public void ConfigureServices(IServiceCollection services)
})
;

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

// Add framework services.
services.AddMvc(options =>
{
Expand Down
6 changes: 3 additions & 3 deletions samples/WebMarkupMin.Sample.AspNetCore1Full.Mvc1/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ public void ConfigureServices(IServiceCollection services)
{
services.AddSingleton(Configuration);

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

// Add WebMarkupMin services to the services container.
services.AddWebMarkupMin(options =>
{
Expand Down Expand Up @@ -124,9 +127,6 @@ public void ConfigureServices(IServiceCollection services)
})
;

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

// Add framework services.
var manager = new ApplicationPartManager();
manager.ApplicationParts.Add(new AssemblyPart(typeof(Startup).Assembly));
Expand Down
6 changes: 3 additions & 3 deletions samples/WebMarkupMin.Sample.AspNetCore21.Mvc21/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ public void ConfigureServices(IServiceCollection services)
{
services.AddSingleton(Configuration);

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

// Add response caching service.
services.AddResponseCaching();

Expand Down Expand Up @@ -126,9 +129,6 @@ public void ConfigureServices(IServiceCollection services)
})
;

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

services.Configure<CookiePolicyOptions>(options =>
{
// This lambda determines whether user consent for non-essential cookies is needed for a given request.
Expand Down
6 changes: 3 additions & 3 deletions samples/WebMarkupMin.Sample.AspNetCore31.Mvc31/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ public void ConfigureServices(IServiceCollection services)
// Add response caching service.
services.AddResponseCaching();

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

// Add WebMarkupMin services to the services container.
services.AddWebMarkupMin(options =>
{
Expand Down Expand Up @@ -73,9 +76,6 @@ public void ConfigureServices(IServiceCollection services)
})
;

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

services.AddControllersWithViews();
}

Expand Down
6 changes: 3 additions & 3 deletions samples/WebMarkupMin.Sample.AspNetCore5.Mvc5/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ public void ConfigureServices(IServiceCollection services)
// Add response caching service.
services.AddResponseCaching();

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

// Add WebMarkupMin services to the services container.
services.AddWebMarkupMin(options =>
{
Expand Down Expand Up @@ -73,9 +76,6 @@ public void ConfigureServices(IServiceCollection services)
})
;

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

services.AddControllersWithViews();
}

Expand Down
6 changes: 3 additions & 3 deletions samples/WebMarkupMin.Sample.AspNetCore6.Mvc6/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
// Add response caching service.
services.AddResponseCaching();

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

// Add WebMarkupMin services to the services container.
services.AddWebMarkupMin(options =>
{
Expand Down Expand Up @@ -53,9 +56,6 @@
})
;

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

services.AddControllersWithViews();

#endregion
Expand Down
6 changes: 3 additions & 3 deletions samples/WebMarkupMin.Sample.AspNetCore7.Mvc7/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
// Add response caching service.
services.AddResponseCaching();

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

// Add WebMarkupMin services to the services container.
services.AddWebMarkupMin(options =>
{
Expand Down Expand Up @@ -53,9 +56,6 @@
})
;

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

services.AddControllersWithViews();

#endregion
Expand Down
6 changes: 3 additions & 3 deletions samples/WebMarkupMin.Sample.AspNetCore8.Mvc8/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
// Add response caching service.
services.AddResponseCaching();

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

// Add WebMarkupMin services to the services container.
services.AddWebMarkupMin(options =>
{
Expand Down Expand Up @@ -53,9 +56,6 @@
})
;

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

services.AddControllersWithViews();

#endregion
Expand Down
6 changes: 3 additions & 3 deletions samples/WebMarkupMin.Sample.AspNetCore9.Mvc9/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
// Add response caching service.
services.AddResponseCaching();

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

// Add WebMarkupMin services to the services container.
services.AddWebMarkupMin(options =>
{
Expand Down Expand Up @@ -53,9 +56,6 @@
})
;

// Override the default logger for WebMarkupMin.
services.AddSingleton<IWmmLogger, WmmAspNetCoreLogger>();

services.AddControllersWithViews();

#endregion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<Product>Web Markup Minifier: Brotli for ASP.NET</Product>
<VersionPrefix>2.18.0</VersionPrefix>
<VersionSuffix>rc1</VersionSuffix>
<TargetFrameworks>net40;net45;netstandard1.3;netstandard2.0;netstandard2.1;net9.0</TargetFrameworks>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
2 changes: 1 addition & 1 deletion src/WebMarkupMin.AspNet.Brotli/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Web Markup Minifier: Brotli for ASP.NET v2.18.0 RC 1
README file for Web Markup Minifier: Brotli for ASP.NET v2.18.0

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<Product>Web Markup Minifier: ASP.NET Common</Product>
<VersionPrefix>2.18.0</VersionPrefix>
<VersionSuffix>rc1</VersionSuffix>
<TargetFrameworks>net40;net45;netstandard1.3;netstandard2.0;netstandard2.1;net9.0</TargetFrameworks>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion>
<OutputType>Library</OutputType>
Expand Down
2 changes: 1 addition & 1 deletion src/WebMarkupMin.AspNet.Common/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Web Markup Minifier: ASP.NET Common v2.18.0 RC 1
README file for Web Markup Minifier: ASP.NET Common v2.18.0

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<Product>Web Markup Minifier: ASP.NET Core 1.X</Product>
<VersionPrefix>2.18.0</VersionPrefix>
<VersionSuffix>rc1</VersionSuffix>
<TargetFrameworks>net451;netstandard1.3</TargetFrameworks>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion>
<OutputType>Library</OutputType>
Expand Down
2 changes: 1 addition & 1 deletion src/WebMarkupMin.AspNetCore1/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Web Markup Minifier: ASP.NET Core 1.X v2.18.0 RC 1
README file for Web Markup Minifier: ASP.NET Core 1.X v2.18.0

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<Product>Web Markup Minifier: ASP.NET Core 2.X</Product>
<VersionPrefix>2.18.0</VersionPrefix>
<VersionSuffix>rc1</VersionSuffix>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputType>Library</OutputType>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
Expand Down
2 changes: 1 addition & 1 deletion src/WebMarkupMin.AspNetCore2/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Web Markup Minifier: ASP.NET Core 2.X v2.18.0 RC 1
README file for Web Markup Minifier: ASP.NET Core 2.X v2.18.0

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<Product>Web Markup Minifier: ASP.NET Core 3.1+</Product>
<VersionPrefix>2.18.0</VersionPrefix>
<VersionSuffix>rc1</VersionSuffix>
<TargetFramework>netcoreapp3.1</TargetFramework>
<OutputType>Library</OutputType>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
Expand Down
2 changes: 1 addition & 1 deletion src/WebMarkupMin.AspNetCore3/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Web Markup Minifier: ASP.NET Core 3.1+ v2.18.0 RC 1
README file for Web Markup Minifier: ASP.NET Core 3.1+ v2.18.0

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<Product>Web Markup Minifier: ASP.NET Core 5</Product>
<VersionPrefix>2.18.0</VersionPrefix>
<VersionSuffix>rc1</VersionSuffix>
<TargetFramework>net5.0</TargetFramework>
<OutputType>Library</OutputType>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
Expand Down
2 changes: 1 addition & 1 deletion src/WebMarkupMin.AspNetCore5/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Web Markup Minifier: ASP.NET Core 5 v2.18.0 RC 1
README file for Web Markup Minifier: ASP.NET Core 5 v2.18.0

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<Product>Web Markup Minifier: ASP.NET Core 6+</Product>
<VersionPrefix>2.18.0</VersionPrefix>
<VersionSuffix>rc1</VersionSuffix>
<TargetFramework>net6.0</TargetFramework>
<OutputType>Library</OutputType>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
Expand Down
2 changes: 1 addition & 1 deletion src/WebMarkupMin.AspNetCore6/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Web Markup Minifier: ASP.NET Core 6+ v2.18.0 RC 1
README file for Web Markup Minifier: ASP.NET Core 6+ v2.18.0

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<Product>Web Markup Minifier: ASP.NET Core 7</Product>
<VersionPrefix>2.18.0</VersionPrefix>
<VersionSuffix>rc1</VersionSuffix>
<TargetFramework>net7.0</TargetFramework>
<OutputType>Library</OutputType>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
Expand Down
Loading

0 comments on commit 8b14d18

Please sign in to comment.