File tree Expand file tree Collapse file tree 8 files changed +30
-27
lines changed
src/DouglasCrockford.JsMin
test/DouglasCrockford.JsMin.Test Expand file tree Collapse file tree 8 files changed +30
-27
lines changed Original file line number Diff line number Diff line change 1
1
JsMinifier.cs
2
2
2013-09-16
3
3
4
- Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru
4
+ Copyright (c) 2013-2017 Andrey Taritsyn - http://www.taritsyn.ru
5
5
6
6
jsmin.c
7
7
2013-03-29
Original file line number Diff line number Diff line change 2
2
<package xmlns =" http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd" >
3
3
<metadata >
4
4
<id >DouglasCrockford.JsMin</id >
5
- <version >1.1.1 </version >
5
+ <version >1.1.2 </version >
6
6
<title >JSMin for .Net</title >
7
7
<authors >Andrey Taritsyn</authors >
8
8
<owners >Andrey Taritsyn</owners >
12
12
<requireLicenseAcceptance >true</requireLicenseAcceptance >
13
13
<description >JSMin.NET is a .NET port of the Douglas Crockford's JSMin (http://github.com/douglascrockford/JSMin).</description >
14
14
<summary >JSMin.NET is a .NET port of the Douglas Crockford's JSMin.</summary >
15
- <releaseNotes >Optimized memory usage.</releaseNotes >
16
- <copyright >Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright >
15
+ <releaseNotes >1. Added support of .NET Core 1.0.3;
16
+ 2. `JsMinificationException` class was made serializable.</releaseNotes >
17
+ <copyright >Copyright (c) 2013-2017 Andrey Taritsyn - http://www.taritsyn.ru</copyright >
17
18
<language >en-US</language >
18
19
<tags >Douglas Crockford JSMin JavaScript JS Minification Minifier Minify</tags >
19
20
<dependencies >
Original file line number Diff line number Diff line change @@ -3,17 +3,19 @@ set nuget_package_manager=..\.nuget\nuget.exe
3
3
set dotnet_cli = " %ProgramFiles% \dotnet\dotnet.exe"
4
4
5
5
set project_name = DouglasCrockford.JsMin
6
- set project_source_dir = ..\src\%project_name%
7
- set project_bin_dir = %project_source_dir% \bin\Release
6
+ set net4_project_source_dir = ..\src\%project_name% .Net4
7
+ set net4_project_bin_dir = %net4_project_source_dir% \bin\Release
8
+ set dotnet_project_source_dir = ..\src\%project_name%
9
+ set dotnet_project_bin_dir = %dotnet_project_source_dir% \bin\Release
8
10
9
11
rmdir lib /Q/S
10
12
11
- %net40_msbuild% " %project_source_dir % \%project_name% .Net40.csproj" /p:Configuration=Release
12
- xcopy %project_bin_dir % \%project_name% .dll lib\net40-client\
13
+ %net40_msbuild% " %net4_project_source_dir % \%project_name% .Net40.csproj" /p:Configuration=Release
14
+ xcopy %net4_project_bin_dir % \%project_name% .dll lib\net40-client\
13
15
14
- %dotnet_cli% build " %project_source_dir % " --framework netstandard1.1 --configuration Release --no-dependencies --no-incremental
15
- xcopy " %project_bin_dir % \netstandard1.1\%project_name% .dll" lib\netstandard1.1\ /E
16
- xcopy " %project_bin_dir % \netstandard1.1\%project_name% .xml" lib\netstandard1.1\ /E
16
+ %dotnet_cli% build " %dotnet_project_source_dir % " --framework netstandard1.1 --configuration Release --no-dependencies --no-incremental
17
+ xcopy " %dotnet_project_bin_dir % \netstandard1.1\%project_name% .dll" lib\netstandard1.1\ /E
18
+ xcopy " %dotnet_project_bin_dir % \netstandard1.1\%project_name% .xml" lib\netstandard1.1\ /E
17
19
18
20
copy ..\LICENSE license.txt /Y
19
21
Original file line number Diff line number Diff line change 1
1
2
2
3
- ----------------------------------------------------------------------
4
- README file for JSMin for .Net v1.1.1
3
+ --------------------------------------------------------------------------------
4
+ README file for JSMin for .Net v1.1.2
5
5
6
- ----------------------------------------------------------------------
6
+ --------------------------------------------------------------------------------
7
7
8
- Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru
8
+ Copyright (c) 2013-2017 Andrey Taritsyn - http://www.taritsyn.ru
9
9
10
10
11
11
===========
17
17
=============
18
18
RELEASE NOTES
19
19
=============
20
- Optimized memory usage.
20
+ 1. Added support of .NET Core 1.0.3;
21
+ 2. `JsMinificationException` class was made serializable.
21
22
22
23
=============
23
24
DOCUMENTATION
24
25
=============
25
- See more information on GitHub -
26
- http://github.com/Taritsyn/JSMin.NET
26
+ See more information on GitHub - http://github.com/Taritsyn/JSMin.NET
Original file line number Diff line number Diff line change 6
6
[ assembly: AssemblyConfiguration ( "" ) ]
7
7
[ assembly: AssemblyCompany ( "" ) ]
8
8
[ assembly: AssemblyProduct ( "JSMin for .Net" ) ]
9
- [ assembly: AssemblyCopyright ( "Copyright © 2013-2016 Andrey Taritsyn" ) ]
9
+ [ assembly: AssemblyCopyright ( "Copyright © 2013-2017 Andrey Taritsyn" ) ]
10
10
[ assembly: AssemblyTrademark ( "" ) ]
11
11
[ assembly: AssemblyCulture ( "" ) ]
12
12
13
13
[ assembly: ComVisible ( false ) ]
14
14
[ assembly: Guid ( "0d7b205c-e3d6-4756-9977-29a71052536b" ) ]
15
15
16
- [ assembly: AssemblyVersion ( "1.1.1 .0" ) ]
17
- [ assembly: AssemblyFileVersion ( "1.1.1 .0" ) ]
16
+ [ assembly: AssemblyVersion ( "1.1.2 .0" ) ]
17
+ [ assembly: AssemblyFileVersion ( "1.1.2 .0" ) ]
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 1.1.1 " ,
2
+ "version" : " 1.1.2 " ,
3
3
4
4
"dependencies" : {},
5
5
Original file line number Diff line number Diff line change 6
6
[ assembly: AssemblyConfiguration ( "" ) ]
7
7
[ assembly: AssemblyCompany ( "" ) ]
8
8
[ assembly: AssemblyProduct ( "JSMin for .Net: Tests" ) ]
9
- [ assembly: AssemblyCopyright ( "Copyright © 2013-2016 Andrey Taritsyn" ) ]
9
+ [ assembly: AssemblyCopyright ( "Copyright © 2013-2017 Andrey Taritsyn" ) ]
10
10
[ assembly: AssemblyTrademark ( "" ) ]
11
11
[ assembly: AssemblyCulture ( "" ) ]
12
12
13
13
[ assembly: ComVisible ( false ) ]
14
14
[ assembly: Guid ( "72947ee4-f2b3-42e9-a84b-9a4a5254e974" ) ]
15
15
16
- [ assembly: AssemblyVersion ( "1.1.1 .0" ) ]
17
- [ assembly: AssemblyFileVersion ( "1.1.1 .0" ) ]
16
+ [ assembly: AssemblyVersion ( "1.1.2 .0" ) ]
17
+ [ assembly: AssemblyFileVersion ( "1.1.2 .0" ) ]
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 1.1.1 " ,
2
+ "version" : " 1.1.2 " ,
3
3
4
4
"dependencies" : {
5
5
"dotnet-test-xunit" : " 2.2.0-preview2-build1029" ,
6
6
"Microsoft.Extensions.PlatformAbstractions" : " 1.0.0" ,
7
7
"Microsoft.NETCore.Platforms" : " 1.0.2" ,
8
8
"xunit" : " 2.2.0-beta4-build3444" ,
9
- "DouglasCrockford.JsMin" : " 1.1.1 "
9
+ "DouglasCrockford.JsMin" : " 1.1.2 "
10
10
},
11
11
12
12
"testRunner" : " xunit" ,
You can’t perform that action at this time.
0 commit comments