From b789070938ed0c6ada3c640db055299097ac1c8d Mon Sep 17 00:00:00 2001 From: "albi.mori" Date: Mon, 21 Aug 2017 08:56:39 +0200 Subject: [PATCH] update readme, add package information --- README.md | 21 +++++++++++++++++++++ src/Wilcommerce.Auth/project.json | 14 ++++++-------- 2 files changed, 27 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 9472043..8e56b0d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,23 @@ # Wilcommerce.Auth Wilcommerce Authentication and Authorization package + +## Installation +Nuget package available here [https://www.nuget.org/packages/Wilcommerce.Auth](https://www.nuget.org/packages/Wilcommerce.Auth) + +## Models +The **Models** namespace contains all the classes representing the components used for creating authentication tokens. + +## Read models +This namespace contains the interface which gives a readonly access to the components. + +## Services +The **Services** namespace contains a set of components which gives a simple access to the features of this package. + +## Commands +**Commands** namespace contains all the actions available on this package. + +## Repository +This namespace contains the interface which defines the persistence of the components. + +## Events +In the **Events** namespace are defined all the events that could happen after an action made. \ No newline at end of file diff --git a/src/Wilcommerce.Auth/project.json b/src/Wilcommerce.Auth/project.json index 18ac118..e7415fc 100644 --- a/src/Wilcommerce.Auth/project.json +++ b/src/Wilcommerce.Auth/project.json @@ -1,6 +1,5 @@ { - "version": "1.0.0-beta1", - + "authors": [ "Alberto Mori" ], "dependencies": { "Microsoft.AspNetCore.Authentication.Cookies": "1.1.2", "Microsoft.AspNetCore.Owin": "1.1.2", @@ -9,23 +8,22 @@ "System.Linq.Queryable": "4.3.0", "Microsoft.AspNetCore.Identity": "1.1.2" }, - "frameworks": { "netstandard1.6": { "imports": "dnxcore50" } }, - "authors": [ "Alberto Mori" ], "packOptions": { "iconUrl": "http://www.wilcommerce.com/logo64.png", "licenseUrl": "https://github.com/wilcommerce/Wilcommerce.Auth/blob/master/LICENSE", + "owners": [ "Alberto Mori" ], "projectUrl": "https://github.com/wilcommerce/Wilcommerce.Auth", "repository": { "type": "git", "url": "https://github.com/wilcommerce/Wilcommerce.Auth" }, - "tags": [ "wilcommerce", "ecommerce", "opensource", ".netcore", ".net", "authentication", "owin", "identity" ], - "owners": [ "Alberto Mori" ], - "summary": "Wilcommerce Authentication library" - } + "summary": "Wilcommerce Authentication library", + "tags": [ "wilcommerce", "ecommerce", "opensource", ".netcore", ".net", "authentication", "owin", "identity" ] + }, + "version": "1.0.0-beta1" }