Constellation.Umbraco 1.0.5682.14609

dotnet add package Constellation.Umbraco --version 1.0.5682.14609
NuGet\Install-Package Constellation.Umbraco -Version 1.0.5682.14609
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="Constellation.Umbraco" Version="1.0.5682.14609" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Constellation.Umbraco --version 1.0.5682.14609
#r "nuget: Constellation.Umbraco, 1.0.5682.14609"
#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 Constellation.Umbraco as a Cake Addin
#addin nuget:?package=Constellation.Umbraco&version=1.0.5682.14609

// Install Constellation.Umbraco as a Cake Tool
#tool nuget:?package=Constellation.Umbraco&version=1.0.5682.14609

This library introduces ease of use for handmade ViewModels that represent IPublishedContent items. The ViewModels should inherit from Models.ContetnViewModel in order to take advantage of the
automatic property mapping provided by this library.

To Use:
1. Create ViewModels that represent content. ViewModel properties should match types and names of the published content Properties[] collection.
2. Each ViewModel should have a ContentType attribute on the class that specifies the Alias for the content that it represents.
3. To convert a PublishedContent to a ViewModel, use the extension methods provided in this library. You may automatically cast to the "best fit" type, or you may cast to a specific ViewModel type.

This library was ported from concepts in Constellation.Sitecore.Items - it is not a 1:1 match, expect evolution.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  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.

This package has no dependencies.

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.5682.14609 1,688 7/23/2015
1.0.5679.24098 1,370 7/20/2015
1.0.5679.22391 1,333 7/20/2015
1.0.5679.21087 1,345 7/20/2015

Bug Fix: Added support for collections and enumerables. Fixed ContentTypeAttribute inheritance. made TModel casting more flexible.