-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
33 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 8 additions & 10 deletions
18
NuGet/JSMin.NET.nuspec → NuGet/DouglasCrockford.JsMin.nuspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,24 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>JSMin.NET</id> | ||
<id>DouglasCrockford.JsMin</id> | ||
<version>1.0.0</version> | ||
<title>JSMin for .Net</title> | ||
<title>JSMin.NET</title> | ||
<authors>Andrey Taritsyn</authors> | ||
<owners>Andrey Taritsyn</owners> | ||
<licenseUrl>http://github.com/Taritsyn/JSMin.NET/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>http://github.com/Taritsyn/JSMin.NET</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>A .NET port of the Douglas Crockford's JSMin (http://github.com/douglascrockford/JSMin).</description> | ||
<summary>A .NET port of the Douglas Crockford's JSMin.</summary> | ||
<requireLicenseAcceptance>true</requireLicenseAcceptance> | ||
<description>JSMin.NET is a .NET port of the Douglas Crockford's JSMin (http://github.com/douglascrockford/JSMin).</description> | ||
<summary>JSMin.NET is a .NET port of the Douglas Crockford's JSMin.</summary> | ||
<copyright>Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright> | ||
<language>en-US</language> | ||
<tags>Douglas Crockford JSMin JavaScript JS Minification Minifier Minify</tags> | ||
<dependencies> | ||
<group targetFramework=".NETFramework4.0-Client" /> | ||
</dependencies> | ||
<references> | ||
<reference file="DouglasCrockford.JsMin.dll" /> | ||
</references> | ||
</metadata> | ||
<files> | ||
<file src="..\src\DouglasCrockford.JsMin\bin\Release\DouglasCrockford.JsMin.dll" target="lib\net40-client" /> | ||
<file src="readme.txt" /> | ||
<file src="license.txt" /> | ||
</files> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,13 @@ | ||
\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe ..\src\DouglasCrockford.JsMin\DouglasCrockford.JsMin.csproj /p:Configuration=Release | ||
..\.nuget\nuget.exe pack JSMin.NET.nuspec | ||
set net40_msbuild=\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe | ||
set nuget_package_manager=..\.nuget\nuget.exe | ||
|
||
set project_name=DouglasCrockford.JsMin | ||
set project_source_dir=..\src\%project_name% | ||
|
||
rmdir lib /Q/S | ||
|
||
%net40_msbuild% %project_source_dir%\%project_name%.Net40.csproj /p:Configuration=Release | ||
xcopy %project_source_dir%\bin\Release\%project_name%.dll lib\net40-client\ | ||
copy ..\LICENSE license.txt /Y | ||
|
||
%nuget_package_manager% pack %project_name%.nuspec |
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters