Skip to content

Commit 1da056f

Browse files
committed
Version 1.1.3
1 parent b231f3f commit 1da056f

File tree

7 files changed

+12
-11
lines changed

7 files changed

+12
-11
lines changed

NuGet/DouglasCrockford.JsMin.nuspec

Lines changed: 1 addition & 1 deletion
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.2</version>
5+
<version>1.1.3</version>
66
<title>JSMin for .Net</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>

NuGet/build-package.cmd

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ rmdir lib /Q/S
1313
%net40_msbuild% "%net4_project_source_dir%\%project_name%.Net40.csproj" /p:Configuration=Release
1414
xcopy %net4_project_bin_dir%\%project_name%.dll lib\net40-client\
1515

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
16+
%dotnet_cli% restore "%dotnet_project_source_dir%"
17+
%dotnet_cli% build "%dotnet_project_source_dir%" --framework netstandard1.0 --configuration Release --no-dependencies --no-incremental
18+
xcopy "%dotnet_project_bin_dir%\netstandard1.0\%project_name%.dll" lib\netstandard1.0\ /E
19+
xcopy "%dotnet_project_bin_dir%\netstandard1.0\%project_name%.xml" lib\netstandard1.0\ /E
1920

2021
copy ..\LICENSE license.txt /Y
2122

NuGet/readme.txt

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

22

33
--------------------------------------------------------------------------------
4-
README file for JSMin for .Net v1.1.2
4+
README file for JSMin for .Net v1.1.3
55

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

src/DouglasCrockford.JsMin/DouglasCrockford.JsMin.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>1.1.2</VersionPrefix>
4+
<VersionPrefix>1.1.3</VersionPrefix>
55
<TargetFramework>netstandard1.0</TargetFramework>
66
<NetStandardImplicitPackageVersion>1.6.0</NetStandardImplicitPackageVersion>
77
<OutputType>Library</OutputType>

src/DouglasCrockford.JsMin/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
[assembly: Guid("0d7b205c-e3d6-4756-9977-29a71052536b")]
1818
#endif
1919

20-
[assembly: AssemblyVersion("1.1.2.0")]
21-
[assembly: AssemblyFileVersion("1.1.2.0")]
20+
[assembly: AssemblyVersion("1.1.3.0")]
21+
[assembly: AssemblyFileVersion("1.1.3.0")]

test/DouglasCrockford.JsMin.Test/DouglasCrockford.JsMin.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>1.1.2</VersionPrefix>
4+
<VersionPrefix>1.1.3</VersionPrefix>
55
<TargetFramework>netcoreapp1.0</TargetFramework>
66
<RuntimeFrameworkVersion>1.0.4</RuntimeFrameworkVersion>
77
<OutputType>Library</OutputType>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
[assembly: Guid("72947ee4-f2b3-42e9-a84b-9a4a5254e974")]
1818
#endif
1919

20-
[assembly: AssemblyVersion("1.1.2.0")]
21-
[assembly: AssemblyFileVersion("1.1.2.0")]
20+
[assembly: AssemblyVersion("1.1.3.0")]
21+
[assembly: AssemblyFileVersion("1.1.3.0")]

0 commit comments

Comments
 (0)