Skip to content

Commit c3680fc

Browse files
committed
Version 1.0.0 (added source code of NuGet-package)
1 parent 283e9a1 commit c3680fc

File tree

6 files changed

+68
-3
lines changed

6 files changed

+68
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ obj/
2424
*.scc
2525
*.sig
2626
_ReSharper*/
27-
*.orig
27+
*.orig
28+
*.nupkg

NuGet/MsieJavaScriptEngine.nuspec

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
3+
<metadata>
4+
<id>MsieJavaScriptEngine</id>
5+
<version>1.0.0</version>
6+
<title>MSIE JavaScript Engine for .NET</title>
7+
<authors>Andrey Taritsyn</authors>
8+
<owners>Andrey Taritsyn</owners>
9+
<licenseUrl>http://github.com/Taritsyn/MsieJavaScriptEngine/blob/master/LICENSE.md</licenseUrl>
10+
<projectUrl>http://github.com/Taritsyn/MsieJavaScriptEngine</projectUrl>
11+
<iconUrl>http://i.imgur.com/cbiHK.png</iconUrl>
12+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13+
<description>This project is a .NET-wrapper for working with the Internet Explorer's JavaScript engines (Chakra and Classic JavaScript Engine). Project was based on part of the code of the library SassAndCoffee.JavaScript (http://github.com/xpaulbettsx/SassAndCoffee).</description>
14+
<summary>This project is a .NET-wrapper for working with the Internet Explorer's JavaScript engines (Chakra and Classic JavaScript Engine).</summary>
15+
<copyright>Copyright 2012 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
16+
<language>en-US</language>
17+
<tags>JavaScript ECMAScript MSIE IE Chakra</tags>
18+
<references>
19+
<reference file="MsieJavaScriptEngine.dll" />
20+
</references>
21+
</metadata>
22+
<files>
23+
<file src="\..\MsieJavaScriptEngine\bin\Release\MsieJavaScriptEngine.dll" target="lib\net40" />
24+
<file src="\..\MsieJavaScriptEngine\bin\Release\**\MsieJavaScriptEngine.resources.dll" target="lib\net40" />
25+
<file src="readme.txt" />
26+
</files>
27+
</package>

NuGet/NuGet.exe

605 KB
Binary file not shown.

NuGet/build-package.cmd

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe ..\MsieJavaScriptEngine\MsieJavaScriptEngine.csproj /p:Configuration=Release
2+
nuget pack MsieJavaScriptEngine.nuspec
3+
pause

NuGet/readme.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
3+
----------------------------------------------------------------------
4+
README file for MSIE JavaScript Engine for .NET 1.0.0
5+
6+
----------------------------------------------------------------------
7+
8+
Copyright 2012 Andrey Taritsyn - http://www.taritsyn.ru
9+
10+
11+
===========
12+
DESCRIPTION
13+
===========
14+
This project is a .NET-wrapper for working with the Internet Explorer's
15+
JavaScript engines (Chakra and Classic JavaScript Engine).
16+
Project was based on part of the code of the library
17+
SassAndCoffee.JavaScript (http://github.com/xpaulbettsx/SassAndCoffee).
18+
19+
============
20+
PROJECT SITE
21+
============
22+
http://github.com/Taritsyn/MsieJavaScriptEngine

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
# MSIE JavaScript Engine for .Net
1+
# MSIE JavaScript Engine for .NET
22

33
This project is a .NET-wrapper for working with the Internet Explorer's JavaScript engines (Chakra and Classic JavaScript Engine).
4-
Project was based on part of the code of the library [SassAndCoffee.JavaScript](https://github.com/xpaulbettsx/SassAndCoffee).
4+
Project was based on part of the code of the library [SassAndCoffee.JavaScript](http://github.com/xpaulbettsx/SassAndCoffee).
5+
6+
#Installation
7+
This library can be installed through NuGet - [http://nuget.org/packages/MsieJavaScriptEngine](http://nuget.org/packages/MsieJavaScriptEngine)
8+
9+
# License
10+
[Microsoft Public License (Ms-PL)](http://github.com/Taritsyn/MsieJavaScriptEngine/blob/master/LICENSE.md)
11+
12+
# Credits
13+
14+
* [SassAndCoffee.JavaScript](http://github.com/xpaulbettsx/SassAndCoffee) - [License: Microsoft Public License (Ms-PL)](http://github.com/xpaulbettsx/SassAndCoffee/blob/master/COPYING) Part of the code of this library served as the basis for MSIE JS Engine.
15+
* [Javascript Tutorial from TutorialsPoint.com](http://www.tutorialspoint.com/javascript/) The materials of this tutorial were used to create the JavaScript Array Polyfills library (polyfills.js).
16+
* [Microsoft Ajax Minifier](http://ajaxmin.codeplex.com/) - [License: Apache License 2.0 (Apache)](http://ajaxmin.codeplex.com/license) JS-files, that used MSIE JS Engine, minificated by using ajaxmin.exe.

0 commit comments

Comments
 (0)