﻿<!--<?xml version="1.0" encoding="utf-8"?>
-->
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
  <metadata>
    <id>Javascript-FastClass</id>
    <version><![CDATA[1.1.729.121805]]></version>
    <title>Fast Class Javascript Inheritance</title>
    <authors>DotNetWise</authors>
    <description>A fast and lightest prototype inheritance when you can't use any complied library such as TypeScript or Google Closure</description>
    <owners>DotNetWise</owners>
    <releaseNotes>
      Better intellisense support for VS2013 (since VS2012 supports __proto__)
      inheritWith creator now automatically shows members added on constructor and inherited constructors
      Made use of intellisense.inheritXMLDoc so we automatically inherit XMLDoc from the first base class that has has one specified
      Fixed inheritWith to accept an object when __proto__ is available
      Added inheritWith support to only provided an object when you don't need to call the base or baseCtor, or you call them explicitely
      Fixed missing Object.getPrototypeOf for IE8 or older. All the tests are passing even in IE7 (except enumerable properties which is expected)
      Dropped dependence https://github.com/dotnetwise/VS2012-Javascript-Intellisense
      Added sugar for Function.abstract to quickly define abstract methods
      Allow 'abstract' members on class/mixin so they can be redefined by another mixin. Usage: function() {}.defineStatic({abstract:true});
      Added Function.prototype.defineStatic({}) to define static members on the given function.
      Fixed defining mixins with Function.define({
      constructor: function() {},
      method: function() {}
      });
      Fixed intellisense
      Added unit-tests
    </releaseNotes>
    <summary>
    </summary>
    <language>en-US</language>
    <projectUrl>https://github.com/DotNetWise/Javascript-FastClass</projectUrl>
    <requireLicenseAcceptance>false</requireLicenseAcceptance>
    <iconUrl>https://raw.github.com/wiki/dotnetwise/Javascript-FastClass/images/Icon32.png</iconUrl>
    <!--<licenseUrl></licenseUrl>-->
    <copyright>Copyright DotNetWise 2014. This is an open-source project, you can edit and use it for free. Share!</copyright>
    <dependencies>
    </dependencies>
    <frameworkAssemblies>
    </frameworkAssemblies>
    <references></references>
    <tags>Javascript prototype inheritance fastClass mixin mixins fast class inheritWith inherit with define dotnetwise dnw</tags>
  </metadata>
  <files>
    <file src="lib\" target="lib" />
    <file src="tools\" target="tools" />
    <file src="content\" target="content" />
  </files>
</package>
