Skip to content

Commit 537da00

Browse files
committed
Version 1.1.2
1 parent 52348b3 commit 537da00

File tree

8 files changed

+30
-27
lines changed

8 files changed

+30
-27
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
JsMinifier.cs
22
2013-09-16
33

4-
Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru
4+
Copyright (c) 2013-2017 Andrey Taritsyn - http://www.taritsyn.ru
55

66
jsmin.c
77
2013-03-29

NuGet/DouglasCrockford.JsMin.nuspec

Lines changed: 4 additions & 3 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>DouglasCrockford.JsMin</id>
5-
<version>1.1.1</version>
5+
<version>1.1.2</version>
66
<title>JSMin for .Net</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
@@ -12,8 +12,9 @@
1212
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1313
<description>JSMin.NET is a .NET port of the Douglas Crockford's JSMin (http://github.com/douglascrockford/JSMin).</description>
1414
<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>
1718
<language>en-US</language>
1819
<tags>Douglas Crockford JSMin JavaScript JS Minification Minifier Minify</tags>
1920
<dependencies>

NuGet/build-package.cmd

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,19 @@ set nuget_package_manager=..\.nuget\nuget.exe
33
set dotnet_cli="%ProgramFiles%\dotnet\dotnet.exe"
44

55
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
810

911
rmdir lib /Q/S
1012

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\
1315

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
1719

1820
copy ..\LICENSE license.txt /Y
1921

NuGet/readme.txt

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

22

3-
----------------------------------------------------------------------
4-
README file for JSMin for .Net v1.1.1
3+
--------------------------------------------------------------------------------
4+
README file for JSMin for .Net v1.1.2
55

6-
----------------------------------------------------------------------
6+
--------------------------------------------------------------------------------
77

8-
Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru
8+
Copyright (c) 2013-2017 Andrey Taritsyn - http://www.taritsyn.ru
99

1010

1111
===========
@@ -17,10 +17,10 @@
1717
=============
1818
RELEASE NOTES
1919
=============
20-
Optimized memory usage.
20+
1. Added support of .NET Core 1.0.3;
21+
2. `JsMinificationException` class was made serializable.
2122

2223
=============
2324
DOCUMENTATION
2425
=============
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

src/DouglasCrockford.JsMin/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
[assembly: AssemblyConfiguration("")]
77
[assembly: AssemblyCompany("")]
88
[assembly: AssemblyProduct("JSMin for .Net")]
9-
[assembly: AssemblyCopyright("Copyright © 2013-2016 Andrey Taritsyn")]
9+
[assembly: AssemblyCopyright("Copyright © 2013-2017 Andrey Taritsyn")]
1010
[assembly: AssemblyTrademark("")]
1111
[assembly: AssemblyCulture("")]
1212

1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("0d7b205c-e3d6-4756-9977-29a71052536b")]
1515

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")]

src/DouglasCrockford.JsMin/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.1",
2+
"version": "1.1.2",
33

44
"dependencies": {},
55

test/DouglasCrockford.JsMin.Test/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
[assembly: AssemblyConfiguration("")]
77
[assembly: AssemblyCompany("")]
88
[assembly: AssemblyProduct("JSMin for .Net: Tests")]
9-
[assembly: AssemblyCopyright("Copyright © 2013-2016 Andrey Taritsyn")]
9+
[assembly: AssemblyCopyright("Copyright © 2013-2017 Andrey Taritsyn")]
1010
[assembly: AssemblyTrademark("")]
1111
[assembly: AssemblyCulture("")]
1212

1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("72947ee4-f2b3-42e9-a84b-9a4a5254e974")]
1515

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")]

test/DouglasCrockford.JsMin.Test/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"version": "1.1.1",
2+
"version": "1.1.2",
33

44
"dependencies": {
55
"dotnet-test-xunit": "2.2.0-preview2-build1029",
66
"Microsoft.Extensions.PlatformAbstractions": "1.0.0",
77
"Microsoft.NETCore.Platforms": "1.0.2",
88
"xunit": "2.2.0-beta4-build3444",
9-
"DouglasCrockford.JsMin": "1.1.1"
9+
"DouglasCrockford.JsMin": "1.1.2"
1010
},
1111

1212
"testRunner": "xunit",

0 commit comments

Comments
 (0)