Merge branch 'master' of https://github.com/aspnet/aspnetcore
This commit is contained in:
commit
3477daf3c4
|
|
@ -2,4 +2,4 @@ Contributor documentation
|
|||
=========================
|
||||
|
||||
The primary audience for documentation in this folder is contributors to ASP.NET Core.
|
||||
If you are looking for documentation on to *use* ASP.NET Core, go to <https://docs.asp.net>.
|
||||
If you are looking for documentation on how to *use* ASP.NET Core, go to <https://docs.asp.net>.
|
||||
|
|
|
|||
|
|
@ -186,8 +186,8 @@ namespace Microsoft.AspNetCore.Hosting
|
|||
}
|
||||
catch
|
||||
{
|
||||
// Dispose the host if there's a failure to initialize, this should clean up
|
||||
// will dispose services that were constructed until the exception was thrown
|
||||
// Dispose the host if there's a failure to initialize, this should dispose
|
||||
// services that were constructed until the exception was thrown
|
||||
host.Dispose();
|
||||
throw;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -210,7 +210,7 @@ namespace Microsoft.AspNetCore.WebUtilities
|
|||
private async Task WriteAsyncAwaited(char[] values, int index, int count)
|
||||
{
|
||||
Debug.Assert(count > 0);
|
||||
Debug.Assert(_charBufferSize - _charBufferCount > count);
|
||||
Debug.Assert(_charBufferSize - _charBufferCount < count);
|
||||
|
||||
while (count > 0)
|
||||
{
|
||||
|
|
@ -220,7 +220,6 @@ namespace Microsoft.AspNetCore.WebUtilities
|
|||
}
|
||||
|
||||
CopyToCharBuffer(values, ref index, ref count);
|
||||
Debug.Assert(count == 0);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -29,3 +29,4 @@ The previous versions of Identity for MVC5 and lower, previously available on Co
|
|||
* [ASP.NET Identity Firebase Provider](https://github.com/aguacongas/Identity.Firebase)
|
||||
* [ASP.NET Identity Redis Provider](https://github.com/aguacongas/Identity.Redis)
|
||||
* [ASP.NET Identity DocumentDB](https://github.com/FelschR/AspNetCore.Identity.DocumentDB)
|
||||
* [ASP.NET Identity Amazon Cognito Provider](https://github.com/aws/aws-aspnet-cognito-identity-provider)
|
||||
|
|
|
|||
Loading…
Reference in New Issue