├── .gitignore ├── AspNetCore-Effective-Logging ├── AspNetCore-Effective-Logging.sln ├── BookClub.API │ ├── BookClub.API.csproj │ ├── BookClub.API.csproj.user │ ├── Controllers │ │ └── BookController.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── SwaggerConfig.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── nlog.config ├── BookClub.Data │ ├── BookClub.Data.csproj │ ├── BookRepository.cs │ ├── IBookRepository.cs │ └── Schema │ │ ├── Book.sql │ │ ├── GetAllBooks.sql │ │ ├── InitialData.sql │ │ └── InsertBook.sql ├── BookClub.Entities │ ├── Book.cs │ ├── BookClub.Entities.csproj │ ├── DataEvents.cs │ └── LoggerDefines.cs ├── BookClub.Infrastructure │ ├── Attributes │ │ └── TrackPerformanceAttribute.cs │ ├── BaseClasses │ │ └── BasePageModel.cs │ ├── BookClub.Infrastructure.csproj │ ├── Filters │ │ ├── TrackActionPerformanceFilter.cs │ │ └── TrackPagePerformanceFilter.cs │ ├── LogMessages.cs │ ├── Middleware │ │ ├── ApiError.cs │ │ ├── ApiExceptionMiddleware.cs │ │ ├── ApiExceptionMiddlewareExtensions.cs │ │ └── ApiExceptionOptions.cs │ ├── ScopeInformation.cs │ └── Services │ │ └── EnsureSuccessStatusCodeHandler.cs ├── BookClub.Logic │ ├── BookClub.Logic.csproj │ ├── BookLogic.cs │ ├── GoogleBookModel.cs │ ├── IBookLogic.cs │ └── Models │ │ └── BookModel.cs └── BookClub.UI │ ├── BookClub.UI.csproj │ ├── BookClub.UI.csproj.user │ ├── Pages │ ├── About.cshtml │ ├── About.cshtml.cs │ ├── BookList.cshtml │ ├── BookList.cshtml.cs │ ├── BookListBad.cshtml │ ├── BookListBad.cshtml.cs │ ├── Create.cshtml │ ├── Create.cshtml.cs │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Shared │ │ ├── _CookieConsentPartial.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── StandardHttpMessageHandler.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── nlog.config │ └── wwwroot │ ├── css │ ├── bootstrap.min.css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/.gitignore -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/AspNetCore-Effective-Logging.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/AspNetCore-Effective-Logging.sln -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.API/BookClub.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.API/BookClub.API.csproj -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.API/BookClub.API.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.API/BookClub.API.csproj.user -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.API/Controllers/BookController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.API/Controllers/BookController.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.API/Program.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.API/Startup.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.API/SwaggerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.API/SwaggerConfig.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.API/appsettings.Development.json -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.API/appsettings.json -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.API/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.API/nlog.config -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Data/BookClub.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Data/BookClub.Data.csproj -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Data/BookRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Data/BookRepository.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Data/IBookRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Data/IBookRepository.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Data/Schema/Book.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Data/Schema/Book.sql -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Data/Schema/GetAllBooks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Data/Schema/GetAllBooks.sql -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Data/Schema/InitialData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Data/Schema/InitialData.sql -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Data/Schema/InsertBook.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Data/Schema/InsertBook.sql -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Entities/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Entities/Book.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Entities/BookClub.Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Entities/BookClub.Entities.csproj -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Entities/DataEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Entities/DataEvents.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Entities/LoggerDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Entities/LoggerDefines.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Infrastructure/Attributes/TrackPerformanceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Infrastructure/Attributes/TrackPerformanceAttribute.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Infrastructure/BaseClasses/BasePageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Infrastructure/BaseClasses/BasePageModel.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Infrastructure/BookClub.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Infrastructure/BookClub.Infrastructure.csproj -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Infrastructure/Filters/TrackActionPerformanceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Infrastructure/Filters/TrackActionPerformanceFilter.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Infrastructure/Filters/TrackPagePerformanceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Infrastructure/Filters/TrackPagePerformanceFilter.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Infrastructure/LogMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Infrastructure/LogMessages.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Infrastructure/Middleware/ApiError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Infrastructure/Middleware/ApiError.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Infrastructure/Middleware/ApiExceptionMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Infrastructure/Middleware/ApiExceptionMiddleware.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Infrastructure/Middleware/ApiExceptionMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Infrastructure/Middleware/ApiExceptionMiddlewareExtensions.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Infrastructure/Middleware/ApiExceptionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Infrastructure/Middleware/ApiExceptionOptions.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Infrastructure/ScopeInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Infrastructure/ScopeInformation.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Infrastructure/Services/EnsureSuccessStatusCodeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Infrastructure/Services/EnsureSuccessStatusCodeHandler.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Logic/BookClub.Logic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Logic/BookClub.Logic.csproj -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Logic/BookLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Logic/BookLogic.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Logic/GoogleBookModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Logic/GoogleBookModel.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Logic/IBookLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Logic/IBookLogic.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.Logic/Models/BookModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.Logic/Models/BookModel.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/BookClub.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/BookClub.UI.csproj -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/BookClub.UI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/BookClub.UI.csproj.user -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/About.cshtml -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/About.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/About.cshtml.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/BookList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/BookList.cshtml -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/BookList.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/BookList.cshtml.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/BookListBad.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/BookListBad.cshtml -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/BookListBad.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/BookListBad.cshtml.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/Create.cshtml -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/Create.cshtml.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/Error.cshtml -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/Index.cshtml -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Program.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Properties/launchSettings.json -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/StandardHttpMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/StandardHttpMessageHandler.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/Startup.cs -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/appsettings.Development.json -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/appsettings.json -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/nlog.config -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/css/bootstrap.min.css -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/css/site.css -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/favicon.ico -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/js/site.js -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/AspNetCore-Effective-Logging/BookClub.UI/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahlsailrunner/aspnetcore-effective-logging/HEAD/README.md --------------------------------------------------------------------------------