Skip to content

Commit bbe65b8

Browse files
author
John Luo
authored
Add Readme for Analyzers, ObjectPool and Identity (#32312)
* Add Readme for Analyzers, ObjectPool and Identity * Cleanup * Update link to BuildFromSource.md
1 parent d2b772b commit bbe65b8

File tree

17 files changed

+95
-17
lines changed

17 files changed

+95
-17
lines changed

src/Analyzers/Readme.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Analyzers
2+
3+
This directory contains sources for analyers used internally by ASP.NET Core.
4+
5+
## Description
6+
7+
- `Analyzers`: Contains analyzers for ASP.NET Core shipped as part of the Microsoft.NET.Sdk.Web.
8+
- `Microsoft.AspNetCore.Analyzer.Testing`: Contains types for writing analyzer tests.
9+
10+
## Development Setup
11+
12+
### Build
13+
14+
To build this specific project from source, follow the instructions [on building the project](../../docs/BuildFromSource.md#step-3-build-the-repo).
15+
16+
### Test
17+
18+
To run the tests for this project, [run the tests on the command line](../../docs/BuildFromSource.md#running-tests-on-command-line) in this directory.
19+
20+
## More Information
21+
22+
For more information, see the [ASP.NET Core README](../../README.md).

src/Caching/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ These packages are not part of the ASP.NET Core shared framework but are shipped
1010

1111
### Build
1212

13-
To build this specific project from source, follow the instructions [on building a subset of the code](../../docs/BuildFromSource.md#building-a-subset-of-the-code).
13+
To build this specific project from source, follow the instructions [on building the project](../../docs/BuildFromSource.md#step-3-build-the-repo).
1414

1515
### Test
1616

src/Components/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The following contains a description of each sub-directory in the `Components` d
3131

3232
### Build
3333

34-
To build this specific project from source, follow the instructions [on building a subset of the code](../../docs/BuildFromSource.md#building-a-subset-of-the-code).
34+
To build this specific project from source, follow the instructions [on building the project](../../docs/BuildFromSource.md#step-3-build-the-repo).
3535

3636
**Note:** You also need to run the preceding `build` command in the command line before building in VS to ensure that the Web.JS dependency is built.
3737

src/DataProtection/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The following contains a description of each sub-directory in the `DataProtectio
2020

2121
### Build
2222

23-
To build this specific project from source, follow the instructions [on building a subset of the code](../../docs/BuildFromSource.md#building-a-subset-of-the-code).
23+
To build this specific project from source, follow the instructions [on building the project](../../docs/BuildFromSource.md#step-3-build-the-repo).
2424

2525
### Test
2626

src/Framework/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The following contains a description of each sub-directory in the `Framework` di
1414

1515
### Build
1616

17-
To build this specific project from source, follow the instructions [on building a subset of the code](../../docs/BuildFromSource.md#building-a-subset-of-the-code).
17+
To build this specific project from source, follow the instructions [on building the project](../../docs/BuildFromSource.md#step-3-build-the-repo).
1818

1919
### Test
2020

src/Hosting/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The following contains a description of the sub-directories.
2020

2121
### Build
2222

23-
To build this specific project from source, you can follow the instructions [on building a subset of the code](../../docs/BuildFromSource.md#building-a-subset-of-the-code).
23+
To build this specific project from source, follow the instructions [on building the project](../../docs/BuildFromSource.md#step-3-build-the-repo).
2424

2525
### Test
2626

src/Html.Abstractions/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This project contains interfaces and abstractions used in MVC to support writing
1010

1111
### Build
1212

13-
To build this specific project from source, follow the instructions [on building a subset of the code](../../../BuildFromSource.md#building-a-subset-of-the-code).
13+
To build this specific project from source, follow the instructions [on building the project](../../docs/BuildFromSource.md#step-3-build-the-repo).
1414

1515
### Test
1616

src/Http/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The following contains a description of each sub-directory in the `Http` directo
2626

2727
### Build
2828

29-
To build this specific project from source, follow the instructions [on building a subset of the code](../../docs/BuildFromSource.md#building-a-subset-of-the-code).
29+
To build this specific project from source, follow the instructions [on building the project](../../docs/BuildFromSource.md#step-3-build-the-repo).
3030

3131
### Test
3232

src/HttpClientFactory/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ These packages are not part of the ASP.NET Core shared framework but are shipped
1010

1111
### Build
1212

13-
To build this specific project from source, follow the instructions [on building a subset of the code](../../docs/BuildFromSource.md#building-a-subset-of-the-code).
13+
To build this specific project from source, follow the instructions [on building the project](../../docs/BuildFromSource.md#step-3-build-the-repo).
1414

1515
### Test
1616

src/Identity/README.md

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,35 @@
1-
ASP.NET Core Identity
2-
=====================
1+
# Identity
32

4-
ASP.NET Core Identity is the membership system for building ASP.NET Core web applications, including membership, login, and user data. ASP.NET Core Identity allows you to add login features to your application and makes it easy to customize data about the logged in user.
3+
ASP.NET Core Identity is the membership system for building ASP.NET Core web applications, including membership, login, and user data. ASP.NET Core Identity allows you to add login features to your application and makes it easy to customize data about the logged in user. You can find additional information in the [ASP.NET Core Documentation](https://docs.microsoft.com/aspnet/core/security/authentication/identity).
4+
5+
## Description
6+
7+
The following contains a description of each sub-directory in the `Identity` directory.
8+
9+
- `ApiAuthorization.IdentityServer`: Contains IdentityServer based support for API Authorization.
10+
- `Core`: Contains the main abstractions and types for providing support for Identity in ASP.NET Core applications.
11+
- `EntityFrameworkCore`: Contains implementations for Identity stores based on EntityFrameworkCore.
12+
- `Extensions.Core`: Contains the abstractions and types for general Identity concerns.
13+
- `Extensions.Stores`: Contains abstractions and types for Identity storage providers.
14+
- `samples`: Contains a collection of sample apps.
15+
- `Specification.Tests`: Contains a test suite for ASP.NET Core Identity store implemenations.
16+
- `test`: Contains the unit and functional tests for Microsoft.Extensions.Identity and Microsoft.AspNetCore.Identity components.
17+
- `testassets`: Contains a webapp used for functional testing.
18+
- `UI`: Contains compiled Razor UI components for use in ASP.NET Core Identity.
19+
20+
## Development Setup
21+
22+
### Build
23+
24+
To build this specific project from source, follow the instructions [on building the project](../../docs/BuildFromSource.md#step-3-build-the-repo).
25+
26+
### Test
27+
28+
To run the tests for this project, [run the tests on the command line](../../docs/BuildFromSource.md#running-tests-on-command-line) in this directory.
29+
30+
## More Information
31+
32+
For more information, see the [ASP.NET Core README](../../README.md).
533

634
## ASP.NET Identity for ASP.NET MVC 5
735

0 commit comments

Comments
 (0)