├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Controllers └── UsersController.cs ├── Entities └── User.cs ├── Helpers └── BasicAuthenticationHandler.cs ├── LICENSE ├── Program.cs ├── README.md ├── Services └── UserService.cs ├── Startup.cs ├── WebApi.csproj ├── appsettings.Development.json └── appsettings.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/aspnet-core-basic-authentication-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/aspnet-core-basic-authentication-api/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/aspnet-core-basic-authentication-api/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/aspnet-core-basic-authentication-api/HEAD/Controllers/UsersController.cs -------------------------------------------------------------------------------- /Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/aspnet-core-basic-authentication-api/HEAD/Entities/User.cs -------------------------------------------------------------------------------- /Helpers/BasicAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/aspnet-core-basic-authentication-api/HEAD/Helpers/BasicAuthenticationHandler.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/aspnet-core-basic-authentication-api/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/aspnet-core-basic-authentication-api/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/aspnet-core-basic-authentication-api/HEAD/README.md -------------------------------------------------------------------------------- /Services/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/aspnet-core-basic-authentication-api/HEAD/Services/UserService.cs -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/aspnet-core-basic-authentication-api/HEAD/Startup.cs -------------------------------------------------------------------------------- /WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/aspnet-core-basic-authentication-api/HEAD/WebApi.csproj -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/aspnet-core-basic-authentication-api/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornflourblue/aspnet-core-basic-authentication-api/HEAD/appsettings.json --------------------------------------------------------------------------------