DryIoc 4.1.0-preview-04
DryIoc is fast, small, full-featured IoC Container for .NET
See the version list below for details.
Requires NuGet 3.3.0 or higher.
Install-Package DryIoc -Version 4.1.0-preview-04
dotnet add package DryIoc --version 4.1.0-preview-04
<PackageReference Include="DryIoc" Version="4.1.0-preview-04" />
paket add DryIoc --version 4.1.0-preview-04
#r "nuget: DryIoc, 4.1.0-preview-04"
Release Notes
## v4.1.0 Feature release
### Highlights
- Better memory use and massively improved performance for the real-world applications - big object graphs and the unit-of-work scenarios. See the updated benchmark results in [readme.md].(https://github.com/dadhi/DryIoc/blob/master/README.md#creating-the-container-registering-the-services-then-opening-a-scope-and-resolving-the-scoped-service-eg-controller-for-the-first-time))
- Improve parallelism / reduce thread blocking #137
- Full and fast DryIoc own Interpretation support via `Rules.WithUseInterpretation()` - useful for iOS and other platforms without compilation support #90
- Copied DryIoc sample project from the MediatR but with DryIoc.Messages #117
### Features
- Interpretation only option #90
- Add RegisterDelegate with the list of dependencies to Inject and not to Resolve #147
- Lift restrictions for Scope disposal when using ambient ScopeContext #168
- FactoryDelegate<T> wrapper support #191
- Add Rules.UseDecorateeReuseForDecorators #201
### Fixes
- Resolving a component for the second time throws #130
- Stackoverflow exception #139
- Xamarin Forms iOS: Operation is not supported on this platform. #156
- DryIoc 4.0.5 withoutFastExpressionCompiler deadlock issue #157
- Rules.WithDependencyDepthToSplitObjectGraph is not propagated through most of `Rules.With` methods #163
- Rules.WithDependencyDepthToSplitObjectGraph was not applied in some cases with Decorators in graph #164
- Made.Of() Parameters don't follow Reuse setting #179
- ThreadScopeContext not working in DryIoc.dll 4.1.0-preview-02? #183
- ReflectionTools methods unexpectedly return static constructors #184
- Container creates multiple instances if TryInterpret fails #188
- Open-generic implementation may be wrongly considered for service with many type args #190
- DryIOC new Transient Disposable #192
- Private and public Constructors in generic classes #196
- Fix documentation regarding implicitly injected scope as IDisposable #197
- Open generics resolve fails if there is a static constructor #198
## v4.0.7 Bug-fix release
- fixed: #173 Validate-Method throws System.TypeInitializationException : The type initializer for 'DryIoc.OpenGenericTypeKey' threw an exception.
## v4.0.6 Bug-fix release
- fixed: Wrong IContainer resolved #171
## v4.0.5 Release notes
- fixed: #133 Validate method call hangs
- fixed: #134 with finding is th property is static in VB
## v4.0.4 Release notes
- fixed: #116: DryIoc Resolve with decorators goes wrong for parallel execution
- fixed: #119: v4.0.3 packages were targeting only .NET 4.5 and .NET Standard 2.0
- fixed: #120: V4.0.3 double dryioc break the build
- fixed: #121: FastExpressionCompiler.cs and Expression.cs code comment out in .NetFramework 4.7
- fixed: #124: Stackoverflow exception 4.0.3
## v4.0.3 Release notes
- fixed: #109: Cannot inject a struct using a Func wrapper
- fixed: #114: Resolve Action<T>
## v4.0.2 Release notes
- fixed: #100: ResolveMany with Meta does NOT work but collection with Meta does work
## v4.0.1 Release notes
- added: #95: Serializable ContainerException for supported targets
- fixed: #97: Resolving last registration from multiple default services bug
- fixed: #89: DryIoC.CommonServiceLocator.dll package out-of-date link
## v4.0.0 Release notes
### Highlights
- DryIoc.dll and all extensions are strongly-signed.
- Greatly improved performance and decreased memory allocations for bootstrapping and first-time resolution, as well as for the rest of operations. [The results](https://github.com/dadhi/DryIoc/issues/26#issuecomment-466460255) were measured on realistic mid-sized object graph with ~40 dependencies and mixed registration types.
- `IResolver` is directly implementing (`IServiceProvider`)[https://docs.microsoft.com/en-us/dotnet/api/system.iserviceprovider?view=netframework-4.7.2] for supported platforms
- `UseInstance` is split into `RegisterInstance` and `Use` methods #78
- The docs now are generated from `.cs` files in _DryIoc.Docs_ project with up-to-date runnable examples using [CsToMd](https://github.com/dadhi/Cstomd) project.
### Features
- added: #4 Rule for Func and Lazy to be resolved even without requested service registered
- added: #8 Parity of registration methods between IContainer and IRegistrator (RegisterMapping and RegisterPlaceholder are available in IRegistrator)
- added: #9 RegisterMany should indicate if no registration was made
- added: #11 Resolution root bound dependency expression de-duplication
- added: #17 Rules.DefaultRegistrationServiceKey enhancement
- added: #20 Enhance error message with current container Rules info
- added: #32 Integrate MediatR like middleware directly to DryIoc #32
- added: #39 For troubleshooting purposes add ability to opt-out FastExpressionCompiler
- Added: #45 Consider expression interpretation to speed-up first time resolution
- added: #78 Split UseInstance two roles into separate RegisterInstance and Use
- added: DryIoc IResolver now directly implements IServiceProvider - no need for BuildServiceProvider anymore
- added: DryIoc.Rules.Rules.MicrosoftDependencyInjectionRules - the set of rules for MS.DI available directly in DryIoc
- added: FactoryInfo.Of(MemberInfo factoryMember, object factoryInstance)
- added: Explicit Factory.RegistrationOrder and adapted its usage for open-generics
- added: IRegistrator.GetRegisteredFactories
- added: FactoryType to Registrator.RegisterMapping
- added: AsyncExecutionFlowScopeContext.Default member
- added: Support for FEC v2.0
### Fixes
- fixed: #6 Open generic singleton service registration that satisfies multiple interfaces
- fixed: #7 Context-based injection
- fixed: #16 AutoConcreteTypeResolution should not consider a primitive type
- fixed: #25 Decorator with serviceKey throws exception which gives invalid advice on how to fix the issue for the most common reason to use the servicekey
- fixed: #26 Speed Optimization for short living applications
- fixed: #27 DryIoc cold start performance
- fixed: #28 FastExpressionCompiler is not used in Net Standard 1.3, 2.0 packages and not used in .Net Core
- fixed: #29 Resolve caches object[] args values
- fixed: #33 Memory leak with ResolveManyBehavior.AzLazyEnumerable?
- fixed: #41 ErrorCode: RegisteredFactoryMethodResultTypesIsNotAssignableToImplementationType
- fixed: #46 Operation is not supported on this platform exception on Xamarin iOS
- fixed: #61 Rules.SelectLastRegisteredFactory() does not account for OpenGenerics
- fixed: #63 Func wrapper resolving #63
- fixed: #75 Scoped call to Resolve() with args seems to leak memory
- fixed: BB-593 Add auto-generated tag to PCL FEC
- fixed: BB-594 Conflicting type is not working in .NET Core 2.1
- fixed: BB-596 The problem was in non-public service type- fixed: RegisterMapping for open-generic service type
- fixed: Using facadeKey in CreateFacade
Dependencies
-
.NETFramework 3.5
- No dependencies.
-
.NETFramework 4.0
- No dependencies.
-
.NETFramework 4.5
- No dependencies.
-
.NETStandard 1.0
- NETStandard.Library (>= 1.6.1)
-
.NETStandard 1.3
- NETStandard.Library (>= 1.6.1)
- System.Reflection.Emit.Lightweight (>= 4.3.0)
-
.NETStandard 2.0
- System.Reflection.Emit.Lightweight (>= 4.3.0)
-
Portable Class Library (.NETFramework 4.0, Silverlight 5.0, Windows 8.0, WindowsPhone 8.0, WindowsPhoneApp 8.1)
- No dependencies.
-
Portable Class Library (.NETFramework 4.5, Windows 8.0, WindowsPhone 8.0, WindowsPhoneApp 8.1)
- No dependencies.
Used By
NuGet packages (17)
Showing the top 5 NuGet packages that depend on DryIoc:
Package | Downloads |
---|---|
DryIoc.MefAttributedModel
DryIoc.MefAttributedModel is DryIoc extension to support Microsoft Managed Extensibility Framework for DryIoc container
|
|
DryIoc.CommonServiceLocator
Implementation of CommonServiceLocator for DryIoc container, see rationale at https://github.com/unitycontainer/commonservicelocator
|
|
DryIoc.WebApi
DryIoc extension for ASP.NET WebAPI
|
|
DryIoc.Owin
DryIoc extension for OWIN
|
|
DryIoc.Web
DryIoc extension for ASP.NET providing Web Request Reuse
|
GitHub repositories (3)
Showing the top 3 popular GitHub repositories that depend on DryIoc:
Repository | Stars |
---|---|
jbogard/MediatR
Simple, unambitious mediator implementation in .NET
|
|
seesharper/LightInject
An ultra lightweight IoC container
|
|
CXWorld/CapFrameX
Frametime capture and analysis tool
|
Version History
Version | Downloads | Last updated |
---|---|---|
4.7.4 | 241 | 2/26/2021 |
4.7.3 | 744 | 2/9/2021 |
4.7.2 | 1,369 | 1/16/2021 |
4.7.1 | 66 | 1/15/2021 |
4.7.0 | 571 | 1/5/2021 |
4.6.0 | 2,036 | 12/10/2020 |
4.5.2 | 386 | 12/3/2020 |
4.5.1 | 1,477 | 10/28/2020 |
4.5.0 | 2,780 | 10/12/2020 |
4.4.1 | 4,765 | 9/9/2020 |
4.4.0 | 238 | 9/4/2020 |
4.3.4 | 309 | 9/1/2020 |
4.3.3 | 294 | 8/27/2020 |
4.3.2 | 1,526 | 8/15/2020 |
4.3.1 | 1,211 | 8/7/2020 |
4.3.0 | 425 | 8/3/2020 |
4.2.5 | 796 | 7/20/2020 |
4.2.4 | 2,142 | 7/14/2020 |
4.2.3 | 616 | 7/4/2020 |
4.2.2 | 224 | 7/2/2020 |
4.2.1 | 1,074 | 6/8/2020 |
4.2.0 | 2,502 | 5/18/2020 |
4.1.4 | 3,996 | 4/3/2020 |
4.1.3 | 997 | 3/27/2020 |
4.1.2 | 1,619 | 3/12/2020 |
4.1.1 | 813 | 3/5/2020 |
4.1.0 | 3,991 | 1/20/2020 |
4.1.0-preview-04 | 284 | 1/5/2020 |
4.1.0-preview-03 | 381 | 10/3/2019 |
4.1.0-preview-02 | 404 | 8/25/2019 |
4.1.0-preview-01 | 6,265 | 8/21/2019 |
4.0.7 | 17,625 | 9/4/2019 |
4.0.6 | 688 | 8/29/2019 |
4.0.5 | 21,019 | 6/8/2019 |
4.0.5-preview-01 | 6,312 | 6/7/2019 |
4.0.4 | 10,845 | 5/1/2019 |
4.0.3 | 7,164 | 4/10/2019 |
4.0.2 | 6,910 | 3/30/2019 |
4.0.1 | 6,326 | 3/28/2019 |
4.0.0 | 8,533 | 3/4/2019 |
4.0.0-preview-02 | 6,361 | 2/22/2019 |
4.0.0-preview-01 | 12,196 | 12/1/2018 |
3.1.0-preview-07 | 6,607 | 11/20/2018 |
3.0.2 | 37,937 | 7/11/2018 |
3.0.1 | 6,735 | 7/7/2018 |
3.0.0 | 6,979 | 6/24/2018 |
3.0.0-preview-12 | 6,561 | 6/6/2018 |
3.0.0-preview-11 | 6,833 | 3/17/2018 |
3.0.0-preview-10 | 6,573 | 3/13/2018 |
3.0.0-preview-09 | 8,043 | 2/21/2018 |
3.0.0-preview-08 | 6,525 | 2/12/2018 |
3.0.0-preview-07 | 6,567 | 2/9/2018 |
3.0.0-preview-06 | 6,569 | 2/8/2018 |
3.0.0-preview-05 | 6,590 | 2/5/2018 |
3.0.0-preview-04 | 6,569 | 2/1/2018 |
3.0.0-preview-03 | 6,619 | 12/3/2017 |
3.0.0-preview-02 | 7,037 | 11/14/2017 |
3.0.0-preview-01 | 6,668 | 10/1/2017 |
2.12.10 | 20,884 | 4/11/2018 |
2.12.9 | 6,838 | 4/7/2018 |
2.12.8 | 7,688 | 3/13/2018 |
2.12.7 | 10,813 | 1/19/2018 |
2.12.6 | 8,176 | 12/21/2017 |
2.12.5 | 16,846 | 10/30/2017 |
2.12.4 | 14,692 | 10/17/2017 |
2.12.3 | 8,473 | 10/2/2017 |
2.12.2 | 7,275 | 9/17/2017 |
2.12.1 | 6,739 | 9/9/2017 |
2.12.0 | 7,994 | 9/1/2017 |
2.12.0-preview-01 | 6,535 | 8/29/2017 |
2.11.6 | 10,444 | 7/18/2017 |
2.11.5 | 6,700 | 7/12/2017 |
2.11.4 | 7,069 | 6/28/2017 |
2.11.3 | 8,729 | 6/1/2017 |
2.11.2 | 6,584 | 6/1/2017 |
2.11.1 | 6,678 | 5/31/2017 |
2.11.0 | 6,599 | 5/30/2017 |
2.11.0-preview-02 | 6,775 | 3/15/2017 |
2.11.0-preview-01 | 6,583 | 3/10/2017 |
2.10.7 | 10,123 | 5/3/2017 |
2.10.6 | 43,802 | 4/20/2017 |
2.10.5 | 7,015 | 4/4/2017 |
2.10.4 | 6,744 | 3/28/2017 |
2.10.3 | 6,729 | 3/25/2017 |
2.10.2 | 11,034 | 3/14/2017 |
2.10.1 | 21,494 | 2/18/2017 |
2.10.0 | 12,631 | 2/1/2017 |
2.9.7 | 8,084 | 1/12/2017 |
2.9.6 | 7,309 | 12/30/2016 |
2.9.5 | 6,671 | 12/26/2016 |
2.9.4 | 7,118 | 12/10/2016 |
2.9.3 | 6,733 | 12/8/2016 |
2.9.2 | 6,773 | 12/3/2016 |
2.9.1 | 8,134 | 11/19/2016 |
2.9.0 | 6,721 | 11/17/2016 |
2.8.5 | 7,262 | 11/2/2016 |
2.8.4 | 6,755 | 10/28/2016 |
2.8.3 | 16,645 | 10/20/2016 |
2.8.2 | 7,273 | 10/20/2016 |
2.8.1 | 6,633 | 10/19/2016 |
2.8.0 | 6,613 | 10/18/2016 |
2.8.0-preview-01 | 6,574 | 10/13/2016 |
2.7.1 | 7,830 | 9/1/2016 |
2.7.0 | 7,095 | 8/19/2016 |
2.6.4 | 7,661 | 7/29/2016 |
2.6.3 | 6,864 | 7/9/2016 |
2.6.2 | 9,324 | 6/13/2016 |
2.6.0 | 6,764 | 6/10/2016 |
2.5.1 | 7,588 | 6/7/2016 |
2.5.0 | 8,923 | 5/24/2016 |
2.4.3 | 7,172 | 5/7/2016 |
2.4.2 | 7,060 | 4/26/2016 |
2.4.1 | 6,760 | 4/16/2016 |
2.4.0 | 7,027 | 4/14/2016 |
2.3.0 | 7,635 | 3/30/2016 |
2.2.2 | 9,067 | 3/10/2016 |
2.2.1 | 6,692 | 3/8/2016 |
2.2.0 | 7,629 | 2/26/2016 |
2.1.3 | 9,236 | 1/17/2016 |
2.1.2 | 6,791 | 1/15/2016 |
2.1.1 | 7,029 | 1/4/2016 |
2.1.0 | 7,115 | 12/4/2015 |
2.0.2 | 6,913 | 12/1/2015 |
2.0.1 | 6,679 | 11/27/2015 |
2.0.0 | 40,271 | 11/19/2015 |
2.0.0-rc4build353 | 6,602 | 11/18/2015 |
2.0.0-rc4build352 | 6,606 | 11/17/2015 |
2.0.0-rc4build351 | 6,635 | 11/17/2015 |
2.0.0-rc4build350 | 6,599 | 11/17/2015 |
2.0.0-rc4build349 | 6,628 | 11/12/2015 |
2.0.0-rc4build348 | 6,596 | 11/12/2015 |
2.0.0-rc4build347 | 6,597 | 11/12/2015 |
2.0.0-rc4build346 | 6,565 | 11/12/2015 |
2.0.0-rc4build345 | 6,583 | 11/12/2015 |
2.0.0-rc4build344 | 6,611 | 11/7/2015 |
2.0.0-rc4build343 | 6,617 | 11/5/2015 |
2.0.0-rc4build342 | 6,672 | 11/1/2015 |
2.0.0-rc4build341 | 6,617 | 10/29/2015 |
2.0.0-rc4build340 | 6,586 | 11/12/2015 |
2.0.0-rc4build339 | 6,590 | 11/7/2015 |
2.0.0-rc4build338 | 6,590 | 11/5/2015 |
2.0.0-rc4build337 | 6,577 | 11/1/2015 |
2.0.0-rc4build336 | 6,591 | 10/29/2015 |
2.0.0-rc3build340 | 6,598 | 10/26/2015 |
2.0.0-rc3build339 | 6,593 | 10/26/2015 |
2.0.0-rc3build338 | 6,602 | 10/23/2015 |
2.0.0-rc3build337 | 6,622 | 10/20/2015 |
2.0.0-rc3build336 | 6,613 | 10/19/2015 |
2.0.0-rc3build335 | 6,621 | 10/12/2015 |
2.0.0-rc3build334 | 6,616 | 10/10/2015 |
2.0.0-rc3build333 | 6,612 | 10/6/2015 |
2.0.0-rc3build332 | 6,618 | 10/6/2015 |
2.0.0-rc3build331 | 6,596 | 10/1/2015 |
2.0.0-rc3build330 | 6,601 | 10/1/2015 |
2.0.0-rc3build329 | 6,596 | 9/30/2015 |
2.0.0-rc3build328 | 6,673 | 9/26/2015 |
2.0.0-rc3build327 | 6,609 | 9/25/2015 |
2.0.0-rc3build326 | 6,610 | 9/25/2015 |
2.0.0-rc3build325 | 6,601 | 9/25/2015 |
2.0.0-rc3build324 | 6,639 | 9/11/2015 |
2.0.0-rc3build323 | 6,637 | 9/11/2015 |
2.0.0-rc3build322 | 6,645 | 9/11/2015 |
2.0.0-rc3build321 | 6,605 | 9/11/2015 |
2.0.0-rc3build320 | 6,612 | 9/11/2015 |
2.0.0-rc3build319 | 6,623 | 9/8/2015 |
2.0.0-rc3build318 | 6,609 | 9/6/2015 |
2.0.0-rc3build317 | 6,625 | 9/3/2015 |
2.0.0-rc3build316 | 6,636 | 9/2/2015 |
2.0.0-rc3build315 | 6,611 | 8/31/2015 |
2.0.0-rc3build314 | 6,604 | 9/8/2015 |
2.0.0-rc3build313 | 6,615 | 8/29/2015 |
2.0.0-rc3build312 | 6,641 | 8/23/2015 |
2.0.0-rc3build311 | 6,622 | 8/21/2015 |
2.0.0-rc3build310 | 6,631 | 8/18/2015 |
2.0.0-rc3build309 | 6,601 | 8/12/2015 |
2.0.0-rc3build308 | 6,628 | 8/6/2015 |
2.0.0-rc3build307 | 6,654 | 8/23/2015 |
2.0.0-rc3build306 | 6,605 | 8/6/2015 |
2.0.0-rc3build304 | 6,575 | 8/4/2015 |
2.0.0-rc3build303 | 6,565 | 8/6/2015 |
2.0.0-rc3build302 | 6,626 | 8/3/2015 |
2.0.0-rc3build301 | 6,657 | 7/31/2015 |
2.0.0-rc3build300 | 6,790 | 7/28/2015 |
2.0.0-rc3build299 | 6,597 | 7/28/2015 |
2.0.0-rc3build298 | 6,600 | 7/28/2015 |
2.0.0-rc3build297 | 6,583 | 7/31/2015 |
2.0.0-rc3build296 | 6,577 | 7/28/2015 |
2.0.0-rc2build297 | 6,590 | 7/26/2015 |
2.0.0-rc2build296 | 6,587 | 7/26/2015 |
2.0.0-rc2build295 | 6,612 | 7/24/2015 |
2.0.0-rc2build294 | 6,600 | 7/24/2015 |
2.0.0-rc2build293 | 6,605 | 7/26/2015 |
2.0.0-rc2build292 | 6,680 | 7/21/2015 |
2.0.0-rc2build291 | 6,578 | 7/24/2015 |
2.0.0-rc2build289 | 6,675 | 7/21/2015 |
2.0.0-rc1build371 | 6,608 | 1/11/2016 |
2.0.0-rc1build366 | 6,583 | 1/11/2016 |
2.0.0-rc1build288 | 6,639 | 7/4/2015 |
2.0.0-rc1build287 | 6,599 | 6/19/2015 |
2.0.0-rc1build286 | 6,840 | 6/8/2015 |
2.0.0-rc1build285 | 6,608 | 6/4/2015 |
2.0.0-rc1build284 | 6,602 | 6/3/2015 |
2.0.0-rc1build283 | 6,655 | 6/1/2015 |
2.0.0-rc1build282 | 6,602 | 5/29/2015 |
2.0.0-rc1build281 | 6,585 | 5/27/2015 |
2.0.0-rc1build280 | 6,576 | 5/27/2015 |
2.0.0-rc1build279 | 6,591 | 5/21/2015 |
2.0.0-rc1build278 | 6,602 | 5/16/2015 |
2.0.0-rc1build277 | 6,604 | 5/15/2015 |
2.0.0-rc1build276 | 6,586 | 5/21/2015 |
2.0.0-rc1build275 | 6,570 | 5/16/2015 |
2.0.0-rc1build274 | 6,670 | 5/15/2015 |
2.0.0-rc1build273 | 6,629 | 5/15/2015 |
2.0.0-rc1build272 | 6,609 | 5/14/2015 |
2.0.0-rc1build271 | 6,632 | 5/14/2015 |
2.0.0-rc1build270 | 6,586 | 5/13/2015 |
2.0.0-rc1build269 | 6,600 | 5/14/2015 |
2.0.0-rc1build268 | 6,636 | 5/12/2015 |
2.0.0-rc1build267 | 6,605 | 5/10/2015 |
2.0.0-rc1build266 | 6,593 | 5/7/2015 |
2.0.0-rc1build265 | 6,595 | 5/6/2015 |
2.0.0-rc1build264 | 6,664 | 5/5/2015 |
2.0.0-rc1build263 | 6,599 | 5/1/2015 |
2.0.0-rc1build262 | 6,619 | 4/30/2015 |
2.0.0-rc1build261 | 6,589 | 4/29/2015 |
2.0.0-rc1build260 | 6,662 | 4/28/2015 |
2.0.0-rc1build259 | 6,621 | 4/21/2015 |
2.0.0-rc1build258 | 6,620 | 4/29/2015 |
2.0.0-rc1build255 | 6,621 | 4/21/2015 |
2.0.0-preview256 | 6,630 | 4/15/2015 |
2.0.0-preview255 | 6,637 | 4/14/2015 |
2.0.0-preview254 | 6,622 | 4/14/2015 |
2.0.0-preview253 | 6,629 | 4/13/2015 |
2.0.0-preview252 | 6,626 | 4/10/2015 |
2.0.0-preview251 | 6,632 | 4/7/2015 |
2.0.0-preview250 | 6,642 | 4/6/2015 |
2.0.0-preview249 | 6,835 | 4/6/2015 |
2.0.0-preview248 | 6,628 | 4/7/2015 |
2.0.0-preview247 | 6,635 | 4/6/2015 |
2.0.0-preview246 | 6,636 | 4/6/2015 |
2.0.0-preview245 | 6,640 | 4/3/2015 |
2.0.0-preview244 | 6,619 | 4/3/2015 |
2.0.0-preview243 | 6,638 | 4/3/2015 |
2.0.0-preview242 | 6,651 | 4/2/2015 |
2.0.0-preview241 | 6,617 | 3/31/2015 |
2.0.0-preview240 | 6,630 | 3/31/2015 |
2.0.0-preview239 | 6,673 | 3/30/2015 |
2.0.0-preview238 | 6,629 | 3/30/2015 |
2.0.0-preview237 | 6,618 | 3/29/2015 |
2.0.0-preview236 | 6,633 | 3/28/2015 |
2.0.0-preview235 | 6,649 | 3/27/2015 |
2.0.0-preview234 | 6,630 | 3/27/2015 |
2.0.0-preview233 | 6,632 | 3/26/2015 |
2.0.0-preview232 | 6,617 | 3/26/2015 |
2.0.0-preview231 | 6,662 | 3/25/2015 |
2.0.0-preview230 | 6,646 | 3/25/2015 |
2.0.0-preview229 | 6,652 | 3/25/2015 |
2.0.0-preview228 | 6,639 | 3/23/2015 |
2.0.0-preview227 | 6,647 | 3/23/2015 |
2.0.0-preview226 | 6,628 | 3/19/2015 |
2.0.0-preview225 | 6,630 | 3/18/2015 |
2.0.0-preview224 | 6,623 | 3/18/2015 |
2.0.0-preview223 | 6,642 | 3/18/2015 |
2.0.0-preview222 | 6,625 | 3/17/2015 |
2.0.0-preview221 | 6,644 | 3/15/2015 |
2.0.0-preview220 | 6,627 | 3/14/2015 |
2.0.0-preview219 | 6,605 | 3/13/2015 |
2.0.0-preview218 | 6,632 | 3/11/2015 |
2.0.0-preview217 | 6,642 | 3/10/2015 |
2.0.0-preview216 | 6,695 | 3/10/2015 |
2.0.0-preview215 | 6,641 | 3/10/2015 |
2.0.0-preview214 | 6,650 | 3/10/2015 |
2.0.0-preview213 | 6,627 | 3/9/2015 |
2.0.0-preview212 | 6,624 | 3/6/2015 |
2.0.0-preview211 | 6,624 | 3/4/2015 |
2.0.0-preview210 | 6,647 | 3/4/2015 |
2.0.0-preview209 | 6,639 | 3/4/2015 |
2.0.0-preview208 | 6,632 | 3/3/2015 |
2.0.0-preview207 | 6,624 | 3/3/2015 |
2.0.0-preview206 | 6,630 | 3/3/2015 |
2.0.0-preview205 | 6,644 | 3/2/2015 |
2.0.0-preview204 | 6,641 | 3/2/2015 |
2.0.0-preview203 | 6,813 | 2/26/2015 |
2.0.0-preview202 | 6,626 | 2/25/2015 |
2.0.0-preview201 | 6,668 | 2/20/2015 |
2.0.0-preview200 | 6,762 | 2/20/2015 |
2.0.0-preview199 | 6,655 | 2/20/2015 |
2.0.0-preview198 | 6,634 | 2/19/2015 |
2.0.0-preview197 | 6,635 | 2/19/2015 |
2.0.0-preview196 | 6,635 | 2/19/2015 |
2.0.0-preview195 | 6,653 | 2/19/2015 |
2.0.0-preview194 | 6,680 | 2/18/2015 |
2.0.0-preview193 | 6,653 | 2/18/2015 |
2.0.0-preview192 | 6,727 | 2/17/2015 |
2.0.0-preview191 | 6,708 | 2/17/2015 |
2.0.0-preview190 | 6,744 | 2/17/2015 |
2.0.0-preview189 | 6,623 | 2/12/2015 |
2.0.0-preview188 | 6,655 | 2/11/2015 |
2.0.0-preview187 | 6,737 | 2/11/2015 |
2.0.0-preview186 | 6,796 | 2/11/2015 |
2.0.0-preview185 | 6,657 | 2/10/2015 |
2.0.0-preview184 | 6,636 | 2/10/2015 |
2.0.0-preview183 | 6,646 | 2/10/2015 |
2.0.0-preview182 | 6,681 | 2/9/2015 |
2.0.0-preview181 | 6,640 | 2/2/2015 |
2.0.0-preview180 | 6,649 | 2/2/2015 |
2.0.0-preview179 | 6,628 | 1/31/2015 |
2.0.0-preview178 | 6,635 | 1/30/2015 |
2.0.0-preview177 | 6,649 | 1/29/2015 |
2.0.0-preview176 | 6,714 | 1/24/2015 |
2.0.0-preview175 | 6,637 | 1/24/2015 |
2.0.0-preview174 | 6,711 | 1/23/2015 |
2.0.0-preview173 | 6,692 | 1/18/2015 |
2.0.0-preview172 | 6,645 | 1/19/2015 |
2.0.0-preview171 | 6,724 | 1/16/2015 |
2.0.0-preview170 | 6,649 | 1/16/2015 |
2.0.0-preview169 | 6,676 | 1/16/2015 |
2.0.0-preview168 | 6,647 | 1/16/2015 |
2.0.0-preview167 | 6,719 | 1/16/2015 |
2.0.0-preview166 | 6,653 | 1/15/2015 |
2.0.0-preview165 | 6,682 | 1/15/2015 |
2.0.0-preview164 | 6,645 | 1/15/2015 |
2.0.0-preview163 | 6,681 | 1/15/2015 |
2.0.0-preview162 | 6,692 | 1/14/2015 |
2.0.0-preview161 | 6,655 | 1/14/2015 |
2.0.0-preview160 | 6,636 | 1/14/2015 |
2.0.0-preview159 | 6,648 | 1/14/2015 |
2.0.0-preview158 | 6,651 | 1/14/2015 |
2.0.0-preview157 | 6,632 | 1/14/2015 |
2.0.0-preview156 | 6,642 | 1/13/2015 |
2.0.0-preview155 | 6,658 | 1/13/2015 |
2.0.0-preview154 | 6,719 | 1/12/2015 |
2.0.0-preview153 | 6,662 | 1/12/2015 |
2.0.0-preview152 | 6,648 | 1/9/2015 |
2.0.0-preview151 | 6,650 | 1/9/2015 |
2.0.0-preview150 | 6,658 | 1/8/2015 |
2.0.0-preview148 | 6,658 | 1/8/2015 |
2.0.0-preview147 | 6,643 | 1/3/2015 |
2.0.0-preview146 | 6,675 | 1/3/2015 |
2.0.0-preview145 | 6,723 | 12/30/2014 |
2.0.0-preview144 | 6,690 | 12/29/2014 |
2.0.0-preview143 | 6,704 | 12/29/2014 |
2.0.0-preview142 | 6,690 | 12/23/2014 |
2.0.0-preview141 | 6,657 | 12/23/2014 |
2.0.0-preview140 | 6,669 | 12/23/2014 |
2.0.0-preview139 | 6,742 | 12/20/2014 |
2.0.0-preview138 | 6,642 | 12/20/2014 |
2.0.0-preview137 | 6,656 | 12/20/2014 |
2.0.0-preview136 | 6,661 | 12/20/2014 |
2.0.0-preview135 | 6,625 | 12/20/2014 |
2.0.0-preview133 | 6,766 | 12/18/2014 |
2.0.0-preview132 | 6,692 | 12/15/2014 |
2.0.0-preview131 | 6,672 | 12/14/2014 |
2.0.0-preview130 | 6,646 | 12/12/2014 |
2.0.0-preview129 | 6,677 | 12/12/2014 |
2.0.0-preview128 | 6,644 | 12/11/2014 |
2.0.0-preview127 | 6,676 | 12/10/2014 |
2.0.0-preview126 | 6,682 | 12/10/2014 |
2.0.0-preview125 | 6,666 | 12/8/2014 |
2.0.0-preview124 | 6,695 | 12/8/2014 |
2.0.0-preview123 | 6,670 | 12/7/2014 |
2.0.0-preview119 | 6,770 | 11/24/2014 |
2.0.0-preview118 | 6,723 | 11/21/2014 |
2.0.0-preview116 | 7,076 | 11/13/2014 |
2.0.0-preview115 | 6,899 | 11/6/2014 |
2.0.0-preview114 | 7,081 | 11/6/2014 |
2.0.0-preview113 | 6,862 | 11/5/2014 |
2.0.0-preview112 | 6,871 | 11/5/2014 |
2.0.0-preview110 | 7,112 | 11/5/2014 |
2.0.0-preview109 | 7,131 | 11/4/2014 |
2.0.0-preview108 | 6,979 | 10/31/2014 |
2.0.0-preview107 | 7,201 | 10/31/2014 |
2.0.0-preview105 | 7,283 | 10/31/2014 |
2.0.0-preview104 | 6,634 | 10/29/2014 |
2.0.0-preview103 | 6,649 | 10/27/2014 |
2.0.0-preview102 | 6,667 | 10/27/2014 |
2.0.0-preview101 | 6,672 | 10/24/2014 |
2.0.0-beta258 | 6,633 | 4/21/2015 |
2.0.0-beta254 | 6,690 | 4/20/2015 |
1.4.1 | 10,768 | 10/9/2014 |
1.4.0 | 7,090 | 9/10/2014 |
1.3.1 | 6,830 | 8/18/2014 |
1.3.0 | 6,965 | 7/16/2014 |
1.2.2 | 6,907 | 7/2/2014 |
1.2.1 | 6,727 | 6/30/2014 |
1.2.0 | 7,188 | 1/9/2014 |
1.1.1 | 6,766 | 12/26/2013 |
1.1.0 | 6,696 | 12/26/2013 |
1.0.11 | 7,015 | 12/24/2013 |