Skip to content

Commit

Permalink
Version 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Taritsyn committed Mar 25, 2017
1 parent b231f3f commit 1da056f
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion NuGet/DouglasCrockford.JsMin.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>DouglasCrockford.JsMin</id>
<version>1.1.2</version>
<version>1.1.3</version>
<title>JSMin for .Net</title>
<authors>Andrey Taritsyn</authors>
<owners>Andrey Taritsyn</owners>
Expand Down
7 changes: 4 additions & 3 deletions NuGet/build-package.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ rmdir lib /Q/S
%net40_msbuild% "%net4_project_source_dir%\%project_name%.Net40.csproj" /p:Configuration=Release
xcopy %net4_project_bin_dir%\%project_name%.dll lib\net40-client\

%dotnet_cli% build "%dotnet_project_source_dir%" --framework netstandard1.1 --configuration Release --no-dependencies --no-incremental
xcopy "%dotnet_project_bin_dir%\netstandard1.1\%project_name%.dll" lib\netstandard1.1\ /E
xcopy "%dotnet_project_bin_dir%\netstandard1.1\%project_name%.xml" lib\netstandard1.1\ /E
%dotnet_cli% restore "%dotnet_project_source_dir%"
%dotnet_cli% build "%dotnet_project_source_dir%" --framework netstandard1.0 --configuration Release --no-dependencies --no-incremental
xcopy "%dotnet_project_bin_dir%\netstandard1.0\%project_name%.dll" lib\netstandard1.0\ /E
xcopy "%dotnet_project_bin_dir%\netstandard1.0\%project_name%.xml" lib\netstandard1.0\ /E

copy ..\LICENSE license.txt /Y

Expand Down
2 changes: 1 addition & 1 deletion NuGet/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for JSMin for .Net v1.1.2
README file for JSMin for .Net v1.1.3

--------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/DouglasCrockford.JsMin/DouglasCrockford.JsMin.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<VersionPrefix>1.1.2</VersionPrefix>
<VersionPrefix>1.1.3</VersionPrefix>
<TargetFramework>netstandard1.0</TargetFramework>
<NetStandardImplicitPackageVersion>1.6.0</NetStandardImplicitPackageVersion>
<OutputType>Library</OutputType>
Expand Down
4 changes: 2 additions & 2 deletions src/DouglasCrockford.JsMin/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
[assembly: Guid("0d7b205c-e3d6-4756-9977-29a71052536b")]
#endif

[assembly: AssemblyVersion("1.1.2.0")]
[assembly: AssemblyFileVersion("1.1.2.0")]
[assembly: AssemblyVersion("1.1.3.0")]
[assembly: AssemblyFileVersion("1.1.3.0")]
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<VersionPrefix>1.1.2</VersionPrefix>
<VersionPrefix>1.1.3</VersionPrefix>
<TargetFramework>netcoreapp1.0</TargetFramework>
<RuntimeFrameworkVersion>1.0.4</RuntimeFrameworkVersion>
<OutputType>Library</OutputType>
Expand Down
4 changes: 2 additions & 2 deletions test/DouglasCrockford.JsMin.Test/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
[assembly: Guid("72947ee4-f2b3-42e9-a84b-9a4a5254e974")]
#endif

[assembly: AssemblyVersion("1.1.2.0")]
[assembly: AssemblyFileVersion("1.1.2.0")]
[assembly: AssemblyVersion("1.1.3.0")]
[assembly: AssemblyFileVersion("1.1.3.0")]

0 comments on commit 1da056f

Please sign in to comment.