-
-
Notifications
You must be signed in to change notification settings - Fork 252
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
1 parent
7668891
commit c84643a
Showing
51 changed files
with
58,842 additions
and
6 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
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
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
Binary file not shown.
Binary file not shown.
16 changes: 16 additions & 0 deletions
16
packages/AjaxMin.5.2.5021.15814/AjaxMin.5.2.5021.15814.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>AjaxMin</id> | ||
<version>5.2.5021.15814</version> | ||
<title>Microsoft Ajax Minifier</title> | ||
<authors>Microsoft Corporation, Ron Logan</authors> | ||
<owners>Microsoft Corporation, Ron Logan</owners> | ||
<licenseUrl>http://ajaxmin.codeplex.com/license</licenseUrl> | ||
<projectUrl>http://ajaxmin.codeplex.com/</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>JavaScript and CSS minification Library for use in .NET applications that want to provide minification or parsing functionality.</description> | ||
<copyright>Copyright 2013 by Microsoft Corp. All rights reserved.</copyright> | ||
<tags>JavaScript CSS minification crunch parser ast ajaxmin</tags> | ||
</metadata> | ||
</package> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
38 changes: 38 additions & 0 deletions
38
packages/AjaxMin.5.2.5021.15814/tools/net35/AjaxMin.targets
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!-- | ||
<UsingTask AssemblyFile="AjaxMinTask.dll" TaskName="AjaxMin" /> | ||
<UsingTask AssemblyFile="AjaxMinTask.dll" TaskName="AjaxMinBundleTask" />--> | ||
<UsingTask AssemblyFile="AjaxMinTask.dll" TaskName="AjaxMinManifestTask" /> | ||
<UsingTask AssemblyFile="AjaxMinTask.dll" TaskName="AjaxMinManifestCleanTask" /> | ||
|
||
<PropertyGroup> | ||
<!-- if the project has a Content folder, we want that to be the root output; otherwise just dump everything relative to the project root --> | ||
<AjaxMinOutputFolder Condition="$(AjaxMinOutputFolder)=='' and Exists('$(ProjectDir)Content\')">$(ProjectDir)Content\</AjaxMinOutputFolder> | ||
<AjaxMinOutputFolder Condition="$(AjaxMinOutputFolder)==''">$(ProjectDir)</AjaxMinOutputFolder> | ||
|
||
<!-- default is to NOT treat warnings as errors --> | ||
<AjaxMinTreatWarningsAsErrors Condition="$(AjaxMinTreatWarningsAsErrors)==''">false</AjaxMinTreatWarningsAsErrors> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<AjaxMinManifests Include="**/*.ajaxmin"/> | ||
</ItemGroup> | ||
|
||
<!-- target to clean output for all ajaxmin manifest files in the project --> | ||
<Target Name="CleanAjaxMinManifests" AfterTargets="Clean" Inputs="@AjaxMinManifests" Outputs="@(AjaxMinManifests->'%(FullPath).cleantrigger')"> | ||
<Message Text="Cleaning AjaxMin Manifests" Importance="high" /> | ||
<AjaxMinManifestCleanTask OutputFolder="$(AjaxMinOutputFolder)" Manifests="@(AjaxMinManifests)" /> | ||
</Target> | ||
|
||
<!-- target to build all ajaxmin manifest files in the project --> | ||
<Target Name="BuildAjaxMinManifests" AfterTargets="Build" Inputs="@AjaxMinManifests" Outputs="@(AjaxMinManifests->'%(FullPath).buildtrigger')"> | ||
<Message Text="Processing AjaxMin Manifests" Importance="high" /> | ||
<AjaxMinManifestTask ProjectDefaultSwitches="-define:$(DefineConstants) $(AjaxMinProjectDefaultSwitches)" | ||
Configuration="$(Configuration)" | ||
TreatWarningsAsErrors="$(AjaxMinTreatWarningsAsErrors)" | ||
InputFolder="$(ProjectDir)" | ||
OutputFolder="$(AjaxMinOutputFolder)" | ||
Manifests="@(AjaxMinManifests)" /> | ||
</Target> | ||
</Project> |
Binary file not shown.
Binary file not shown.
38 changes: 38 additions & 0 deletions
38
packages/AjaxMin.5.2.5021.15814/tools/net40/AjaxMin.targets
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!-- | ||
<UsingTask AssemblyFile="AjaxMinTask.dll" TaskName="AjaxMin" /> | ||
<UsingTask AssemblyFile="AjaxMinTask.dll" TaskName="AjaxMinBundleTask" />--> | ||
<UsingTask AssemblyFile="AjaxMinTask.dll" TaskName="AjaxMinManifestTask" /> | ||
<UsingTask AssemblyFile="AjaxMinTask.dll" TaskName="AjaxMinManifestCleanTask" /> | ||
|
||
<PropertyGroup> | ||
<!-- if the project has a Content folder, we want that to be the root output; otherwise just dump everything relative to the project root --> | ||
<AjaxMinOutputFolder Condition="$(AjaxMinOutputFolder)=='' and Exists('$(ProjectDir)Content\')">$(ProjectDir)Content\</AjaxMinOutputFolder> | ||
<AjaxMinOutputFolder Condition="$(AjaxMinOutputFolder)==''">$(ProjectDir)</AjaxMinOutputFolder> | ||
|
||
<!-- default is to NOT treat warnings as errors --> | ||
<AjaxMinTreatWarningsAsErrors Condition="$(AjaxMinTreatWarningsAsErrors)==''">false</AjaxMinTreatWarningsAsErrors> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<AjaxMinManifests Include="**/*.ajaxmin"/> | ||
</ItemGroup> | ||
|
||
<!-- target to clean output for all ajaxmin manifest files in the project --> | ||
<Target Name="CleanAjaxMinManifests" AfterTargets="Clean" Inputs="@AjaxMinManifests" Outputs="@(AjaxMinManifests->'%(FullPath).cleantrigger')"> | ||
<Message Text="Cleaning AjaxMin Manifests" Importance="high" /> | ||
<AjaxMinManifestCleanTask OutputFolder="$(AjaxMinOutputFolder)" Manifests="@(AjaxMinManifests)" /> | ||
</Target> | ||
|
||
<!-- target to build all ajaxmin manifest files in the project --> | ||
<Target Name="BuildAjaxMinManifests" AfterTargets="Build" Inputs="@AjaxMinManifests" Outputs="@(AjaxMinManifests->'%(FullPath).buildtrigger')"> | ||
<Message Text="Processing AjaxMin Manifests" Importance="high" /> | ||
<AjaxMinManifestTask ProjectDefaultSwitches="-define:$(DefineConstants) $(AjaxMinProjectDefaultSwitches)" | ||
Configuration="$(Configuration)" | ||
TreatWarningsAsErrors="$(AjaxMinTreatWarningsAsErrors)" | ||
InputFolder="$(ProjectDir)" | ||
OutputFolder="$(AjaxMinOutputFolder)" | ||
Manifests="@(AjaxMinManifests)" /> | ||
</Target> | ||
</Project> |
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>Minimatch</id> | ||
<version>1.0.0.0</version> | ||
<title>Minimatch</title> | ||
<authors>SLaks</authors> | ||
<owners>SLaks</owners> | ||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl> | ||
<projectUrl>https://github.com/SLaks/Minimatch/</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>A C# glob matcher</description> | ||
<releaseNotes>Initial Release.</releaseNotes> | ||
<copyright>Copyright 2013</copyright> | ||
<tags>strings glob search files wildcards patterns</tags> | ||
</metadata> | ||
</package> |
77 changes: 77 additions & 0 deletions
77
packages/Minimatch.1.0.0.0/lib/portable-net40+sl50+wp80+win/Minimatch.XML
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file added
BIN
+18.5 KB
packages/Minimatch.1.0.0.0/lib/portable-net40+sl50+wp80+win/Minimatch.dll
Binary file not shown.
Binary file not shown.
16 changes: 16 additions & 0 deletions
16
packages/Newtonsoft.Json.5.0.8/Newtonsoft.Json.5.0.8.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>Newtonsoft.Json</id> | ||
<version>5.0.8</version> | ||
<title>Json.NET</title> | ||
<authors>James Newton-King</authors> | ||
<owners>James Newton-King</owners> | ||
<licenseUrl>https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md</licenseUrl> | ||
<projectUrl>http://james.newtonking.com/json</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>Json.NET is a popular high-performance JSON framework for .NET</description> | ||
<language>en-US</language> | ||
<tags>json</tags> | ||
</metadata> | ||
</package> |
Binary file not shown.
Oops, something went wrong.