* Add user's unique email policy configuration
* Add user's unique email policy configuration
I think it can be hepful because a lot of projects need this user email's policy.
* Update identity.rst
Updated Library references to not bound with a specific version.
When tools/references are updated (like Microsoft.Extensions.Configuration.UserSecrets was updated to 1.0.0) the documentation turns outdated
Fixes#1932
I added it to the end, however, the Commons Errors section will get better organized when I get to the big doc overhaul. I intend to sort/group them by browser response error code when the time comes.
* Add location information to ANCM hosting doc
Fixes#1931 ... also updated capitalization of "h" of `applicationhost.config` to `applicationHost.config`.
Adds ANCM module, schema, and `applicationHost.config` locations to the doc for easy dev reference.
All credit to @jhkimnew for excellent post at https://github.com/aspnet/Home/issues/1583#issuecomment-249754022
* Minor update
Consistency: `IIS Express` (with space) is better than `IISExpress`.
* Updated references in Identity Migration
Updated references in Identity Migration to use the final namespaces of components:
.. code-block:: c#
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
Removed workaround to assure that database is created in Entity Framework
* Removed lib version reference
Removed specific version reference for libs and updated text for better reading.
* Add identity configuration example
Add an example about how to configure some basic stuff about ASP.NET Core Identity (password policy, cookie, lockout, ...)
* Add identity configuration example
Add an example of identity configuration in startup class
* Update startup.rst
I noticed that I had to read that sencence five times before coming to terms with it. I hope that my suggestion helps to make it more readable.
* Delete obsolete passage about DI
As @RickAnderson suggests, I just delete the passage that is trying to explain Dependency Injection in one sentence (and fails). He's right: all the info about Dependency Injection is available through the DI-link in the first sentence of that paragraph.
The return value of `HandleRequirementAsync` should be outside the if statement
The context parameter type has been renamed from `AuthorizationContext` to `AuthorizationHandlerContext`