Skip to content

Commit a1e4828

Browse files
committed
Version 2.0.0 RC 2
1 parent fc8a0be commit a1e4828

File tree

17 files changed

+28
-20
lines changed

17 files changed

+28
-20
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Change log
22
==========
33

4+
## December 5, 2015 - v2.0.0 RC 2
5+
* Now during minification removes the byte order mark (BOM)
6+
47
## November 20, 2015 - v2.0.0 RC 1
58
* Added support of .NET Core and ASP.NET 5 RC 1
69

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In addition, there are several modules that integrate this library into ASP.NET:
1313
## NuGet Packages
1414

1515
### Core
16-
* [WebMarkupMin: Core](http://nuget.org/packages/WebMarkupMin.Core/2.0.0-rc1) (supports .NET Framework 4.X and .NET Platform 5.4)
16+
* [WebMarkupMin: Core](http://nuget.org/packages/WebMarkupMin.Core/2.0.0-rc2) (supports .NET Framework 4.X and .NET Platform 5.4)
1717

1818
### External JS and CSS minifiers
1919
* [WebMarkupMin: MS Ajax](http://nuget.org/packages/WebMarkupMin.MsAjax/2.0.0-rc1) (supports .NET Framework 4.X)

nuget/WebMarkupMin.AspNet.Common/build-package.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ rmdir lib /Q/S
1010
%net40_msbuild% %project_source_dir%\%project_name%.Net40.csproj /p:Configuration=Release
1111
xcopy %project_source_dir%\bin\Release\%project_name%.dll lib\net40\
1212

13-
%dnx_runtime% --appbase %project_source_dir% %dnx_package_manager% build %project_source_dir% --framework net451 --configuration Release --out %project_artifacts_dir%
13+
%dnx_runtime% --appbase %project_source_dir% %dnx_package_manager% pack %project_source_dir% --framework net451 --configuration Release --out %project_artifacts_dir%
1414
xcopy %project_artifacts_dir%\Release\net451\%project_name%.dll lib\net451\ /E
1515
xcopy %project_artifacts_dir%\Release\net451\%project_name%.xml lib\net451\ /E
1616

17-
%dnx_runtime% --appbase %project_source_dir% %dnx_package_manager% build %project_source_dir% --framework dotnet5.4 --configuration Release --out %project_artifacts_dir%
17+
%dnx_runtime% --appbase %project_source_dir% %dnx_package_manager% pack %project_source_dir% --framework dotnet5.4 --configuration Release --out %project_artifacts_dir%
1818
xcopy %project_artifacts_dir%\Release\dotnet5.4\%project_name%.dll lib\dotnet5.4\ /E
1919
xcopy %project_artifacts_dir%\Release\dotnet5.4\%project_name%.xml lib\dotnet5.4\ /E
2020

nuget/WebMarkupMin.AspNet5/build-package.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ call ../setup.cmd
77

88
rmdir lib /Q/S
99

10-
%dnx_runtime% --appbase %project_source_dir% %dnx_package_manager% build %project_source_dir% --framework dnx451 --configuration Release --out %project_artifacts_dir%
10+
%dnx_runtime% --appbase %project_source_dir% %dnx_package_manager% pack %project_source_dir% --framework dnx451 --configuration Release --out %project_artifacts_dir%
1111
xcopy %project_artifacts_dir%\Release\dnx451\%project_name%.dll lib\dnx451\ /E
1212
xcopy %project_artifacts_dir%\Release\dnx451\%project_name%.xml lib\dnx451\ /E
1313

14-
%dnx_runtime% --appbase %project_source_dir% %dnx_package_manager% build %project_source_dir% --framework dnxcore50 --configuration Release --out %project_artifacts_dir%
14+
%dnx_runtime% --appbase %project_source_dir% %dnx_package_manager% pack %project_source_dir% --framework dnxcore50 --configuration Release --out %project_artifacts_dir%
1515
xcopy %project_artifacts_dir%\Release\dnxcore50\%project_name%.dll lib\dnxcore50\ /E
1616
xcopy %project_artifacts_dir%\Release\dnxcore50\%project_name%.xml lib\dnxcore50\ /E
1717

nuget/WebMarkupMin.Core/WebMarkupMin.Core.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>WebMarkupMin.Core</id>
5-
<version>2.0.0-rc1</version>
5+
<version>2.0.0-rc2</version>
66
<title>Web Markup Minifier: Core</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
@@ -18,7 +18,7 @@ Minification of markup produces by removing extra whitespaces, comments and redu
1818

1919
Also supports minification of views of popular JavaScript template engines: KnockoutJS, Kendo UI MVVM and AngularJS 1.X.</description>
2020
<summary>The Web Markup Minifier (abbreviated WebMarkupMin) is 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.</summary>
21-
<releaseNotes>Added support of .NET Core 5 RC 1.</releaseNotes>
21+
<releaseNotes>Now during minification removes the byte order mark (BOM).</releaseNotes>
2222
<copyright>Copyright (c) 2013-2015 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
2323
<language>en-US</language>
2424
<tags>WebMarkupMin Markup HTML XHTML XML Minification Minifier Minify Performance Optimization Compression</tags>

nuget/WebMarkupMin.Core/build-package.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ rmdir lib /Q/S
1010
%net40_msbuild% %project_source_dir%\%project_name%.Net40.csproj /p:Configuration=Release
1111
xcopy %project_source_dir%\bin\Release\%project_name%.dll lib\net40-client\
1212

13-
%dnx_runtime% --appbase %project_source_dir% %dnx_package_manager% build %project_source_dir% --framework net451 --configuration Release --out %project_artifacts_dir%
13+
%dnx_runtime% --appbase %project_source_dir% %dnx_package_manager% pack %project_source_dir% --framework net451 --configuration Release --out %project_artifacts_dir%
1414
xcopy %project_artifacts_dir%\Release\net451\%project_name%.dll lib\net451\ /E
1515
xcopy %project_artifacts_dir%\Release\net451\%project_name%.xml lib\net451\ /E
1616

17-
%dnx_runtime% --appbase %project_source_dir% %dnx_package_manager% build %project_source_dir% --framework dotnet5.4 --configuration Release --out %project_artifacts_dir%
17+
%dnx_runtime% --appbase %project_source_dir% %dnx_package_manager% pack %project_source_dir% --framework dotnet5.4 --configuration Release --out %project_artifacts_dir%
1818
xcopy %project_artifacts_dir%\Release\dotnet5.4\%project_name%.dll lib\dotnet5.4\ /E
1919
xcopy %project_artifacts_dir%\Release\dotnet5.4\%project_name%.xml lib\dotnet5.4\ /E
2020

nuget/WebMarkupMin.Core/readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for Web Markup Minifier: Core v2.0.0 RC 1
4+
README file for Web Markup Minifier: Core v2.0.0 RC 2
55

66
--------------------------------------------------------------------------------
77

@@ -44,7 +44,7 @@
4444
=============
4545
RELEASE NOTES
4646
=============
47-
Added support of .NET Core 5 RC 1.
47+
Now during minification removes the byte order mark (BOM).
4848

4949
=============
5050
DOCUMENTATION

nuget/WebMarkupMin.MsAjax/build-package.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ rmdir lib /Q/S
1010
%net40_msbuild% %project_source_dir%\%project_name%.Net40.csproj /p:Configuration=Release
1111
xcopy %project_source_dir%\bin\Release\%project_name%.dll lib\net40-client\
1212

13-
%dnx_runtime% --appbase %project_source_dir% %dnx_package_manager% build %project_source_dir% --framework net451 --configuration Release --out %project_artifacts_dir%
13+
%dnx_runtime% --appbase %project_source_dir% %dnx_package_manager% pack %project_source_dir% --framework net451 --configuration Release --out %project_artifacts_dir%
1414
xcopy %project_artifacts_dir%\Release\net451\%project_name%.dll lib\net451\ /E
1515
xcopy %project_artifacts_dir%\Release\net451\%project_name%.xml lib\net451\ /E
1616

nuget/WebMarkupMin.Yui/build-package.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ rmdir lib /Q/S
1010
%net40_msbuild% %project_source_dir%\%project_name%.Net40.csproj /p:Configuration=Release
1111
xcopy %project_source_dir%\bin\Release\%project_name%.dll lib\net40-client\
1212

13-
%dnx_runtime% --appbase %project_source_dir% %dnx_package_manager% build %project_source_dir% --framework net451 --configuration Release --out %project_artifacts_dir%
13+
%dnx_runtime% --appbase %project_source_dir% %dnx_package_manager% pack %project_source_dir% --framework net451 --configuration Release --out %project_artifacts_dir%
1414
xcopy %project_artifacts_dir%\Release\net451\%project_name%.dll lib\net451\ /E
1515
xcopy %project_artifacts_dir%\Release\net451\%project_name%.xml lib\net451\ /E
1616

nuget/setup.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
set net40_msbuild=\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe
22
set dnx_runtime_dir=%USERPROFILE%\.dnx\runtimes\dnx-clr-win-x86.1.0.0-rc1-final\bin
33
set dnx_runtime=%dnx_runtime_dir%\dnx.exe
4-
set dnx_package_manager=%dnx_runtime_dir%\lib\Microsoft.Framework.PackageManager\Microsoft.Framework.PackageManager.dll
4+
set dnx_package_manager=%dnx_runtime_dir%\lib\Microsoft.Dnx.Tooling\Microsoft.Dnx.Tooling.dll

0 commit comments

Comments
 (0)