Skip to content

Commit 2f9598d

Browse files
committed
Added support of .NET Core 1.0 RTM
1 parent 0f72d3d commit 2f9598d

File tree

6 files changed

+21
-28
lines changed

6 files changed

+21
-28
lines changed

NuGet/DouglasCrockford.JsMin.nuspec

Lines changed: 6 additions & 7 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.0-rc2</version>
5+
<version>1.1.0</version>
66
<title>JSMin for .Net</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
@@ -12,18 +12,17 @@
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>Added support of .NET Core 1.0 RC 2.</releaseNotes>
15+
<releaseNotes>Added support of .NET Core 1.0 RTM.</releaseNotes>
1616
<copyright>Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1717
<language>en-US</language>
1818
<tags>Douglas Crockford JSMin JavaScript JS Minification Minifier Minify</tags>
1919
<dependencies>
2020
<group targetFramework=".NETFramework4.0-Client" />
21-
<group targetFramework=".NETFramework4.5.1" />
2221
<group targetFramework=".NETStandard1.1">
23-
<dependency id="System.IO" version="4.1.0-rc2-24027" />
24-
<dependency id="System.Runtime" version="4.1.0-rc2-24027" />
25-
<dependency id="System.Runtime.InteropServices" version="4.1.0-rc2-24027" />
26-
<dependency id="System.Threading" version="4.0.11-rc2-24027" />
22+
<dependency id="System.IO" version="4.1.0" />
23+
<dependency id="System.Runtime" version="4.1.0" />
24+
<dependency id="System.Runtime.InteropServices" version="4.1.0" />
25+
<dependency id="System.Threading" version="4.0.11" />
2726
</group>
2827
</dependencies>
2928
<references>

NuGet/build-package.cmd

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

14-
%dotnet_cli% build "%project_source_dir%" --framework net451 --configuration Release --no-dependencies --no-incremental
15-
xcopy "%project_bin_dir%\net451\%project_name%.dll" lib\net451\ /E
16-
xcopy "%project_bin_dir%\net451\%project_name%.xml" lib\net451\ /E
17-
1814
%dotnet_cli% build "%project_source_dir%" --framework netstandard1.1 --configuration Release --no-dependencies --no-incremental
1915
xcopy "%project_bin_dir%\netstandard1.1\%project_name%.dll" lib\netstandard1.1\ /E
2016
xcopy "%project_bin_dir%\netstandard1.1\%project_name%.xml" lib\netstandard1.1\ /E

NuGet/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 JSMin for .Net v1.1.0 RC 2
4+
README file for JSMin for .Net v1.1.0
55

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

@@ -17,7 +17,7 @@
1717
=============
1818
RELEASE NOTES
1919
=============
20-
Added support of .NET Core 1.0 RC 2.
20+
Added support of .NET Core 1.0 RTM.
2121

2222
=============
2323
DOCUMENTATION

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"projects": [ "src", "test" ],
33
"sdk": {
4-
"version": "1.0.0-preview1-002702",
4+
"version": "1.0.0-preview2-003121",
55
"runtime": "coreclr",
66
"architecture": "x86"
77
}

src/DouglasCrockford.JsMin/project.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
{
2-
"version": "1.1.0-rc2",
2+
"version": "1.1.0",
33

44
"dependencies": { },
55

66
"frameworks": {
7-
"net451": { },
87
"netstandard1.1": {
98
"dependencies": {
10-
"System.IO": "4.1.0-rc2-24027",
11-
"System.Runtime": "4.1.0-rc2-24027",
12-
"System.Runtime.InteropServices": "4.1.0-rc2-24027",
13-
"System.Threading": "4.0.11-rc2-24027"
9+
"System.IO": "4.1.0",
10+
"System.Runtime": "4.1.0",
11+
"System.Runtime.InteropServices": "4.1.0",
12+
"System.Threading": "4.0.11"
1413
}
1514
}
1615
},

test/DouglasCrockford.JsMin.Test/project.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
11
{
2-
"version": "1.1.0-rc2",
2+
"version": "1.1.0",
33

44
"dependencies": {
5-
"dotnet-test-xunit": "1.0.0-rc2-build10015",
6-
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final",
7-
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
8-
"xunit": "2.1.0",
9-
"DouglasCrockford.JsMin": "1.1.0-rc2"
5+
"dotnet-test-xunit": "2.2.0-preview2-build1029",
6+
"Microsoft.Extensions.PlatformAbstractions": "1.0.0",
7+
"Microsoft.NETCore.Platforms": "1.0.1",
8+
"xunit": "2.2.0-beta2-build3300",
9+
"DouglasCrockford.JsMin": "1.1.0"
1010
},
1111

1212
"testRunner": "xunit",
1313

1414
"frameworks": {
15-
"net451": { },
1615
"netcoreapp1.0": {
1716
"imports": [
1817
"dnxcore50",
1918
"portable-net451+win8"
2019
],
2120
"dependencies": {
2221
"Microsoft.NETCore.App": {
23-
"version": "1.0.0-rc2-3002702",
22+
"version": "1.0.0",
2423
"type": "platform"
2524
}
2625
}

0 commit comments

Comments
 (0)