Ember.js 1.0.0-rc2

This is a prerelease version of Ember.js.
dotnet add package Ember.js --version 1.0.0-rc2
NuGet\Install-Package Ember.js -Version 1.0.0-rc2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Ember.js" Version="1.0.0-rc2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Ember.js --version 1.0.0-rc2
#r "nuget: Ember.js, 1.0.0-rc2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Ember.js as a Cake Addin
#addin nuget:?package=Ember.js&version=1.0.0-rc2&prerelease

// Install Ember.js as a Cake Tool
#tool nuget:?package=Ember.js&version=1.0.0-rc2&prerelease

Ember.js is built for productivity. Designed with developer ergonomics in mind, its friendly APIs help you get your job done—fast.
     Don't waste time making trivial choices. Ember.js incorporates common idioms so you can focus on what makes your app special, not reinventing the wheel.

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0-rc2 1,262 4/11/2013
1.0.0-rc1 987 3/5/2013
1.0.0-pre4 1,113 1/20/2013
1.0.0-pre2 1,253 10/31/2012
1.0.0-pre 1,258 10/16/2012

*Ember 1.0.0-rc.2 (March 29, 2013)*

     * Improved the App initialization process and deprecated Ember.Application#initialize. If you were using this, use deferReadiness and advanceReadiness instead.
     * Added support for Ember.Application#then which fires similarly to the isReady hook
     * Added more Ember.computed macros
     * Added readOnly flag for computed properties
     * Enumerable#compact now removes undefined values
     * Fixed issue with unregistering actions on virtual views
     * Make Ember.LinkView public
     * Add support for jQuery 2.0
     * Support browsers (FF 10 or less) that don't support domElement.outerHTML
     * Made it easier to augment the Application's container's resolver
     * Support tag as an alias for tagName in the {{view}} helper
     * Add 'name' to attributeBinding for Ember.TextField and Ember.Select
     * Return merged object from Ember.merge
     * Deprecate setting tagNames on Metamorphs - Refs #2248
     * Avoid parent's implicit index route clobbering child's explicit index.
     * App#reset behaves more closely to App#create
     * Make Evented#on, #off, and #one chainable
     * Add basic implementation of allowedKeys for the {{action}} helper
     * Improved Ember.Array#slice implementation
     * Fix ArrayProxy arrangedObject handling - Fixes #2120, #2138
     * Added ability to customize default generated controllers and routes
     * Better HistoryLocation popstate handling - Fixes #2234
     * Fix an issue with IE7
     * Normalized Ember.run.later and Ember.run.next behavior.
     * Fix issue where classNameBindings can try to update removed DOM element.
     * Ember.Array methods always return Ember.Arrays
     * RSVP is now exposed as Ember.RSVP
     * ObjectProxy does not attempt to proxy unknown properties on create
     * Can now set ENV.LOG_VERSION to false to disable version logging
     * Ember.ArrayController#lastObject no longer raises when empty
     * Fixes to {{render}} helper when used with model
     * Improvements to {{linkTo}} controller handling
     * Fix {{bindAttr}} when targeting prop in {{#each prop in array}} - #1523
     * String#camelize lowercases the first letter
     * Other miscellaneous bug fixes and documentation improvements