├── .gitignore ├── LICENSE ├── LogDashboard.sln ├── LogDashboard.sln.DotSettings.user ├── README.md ├── logo.png ├── samples ├── CustomLogModel │ ├── ApplicationLogModel.cs │ ├── CustomLogModel.csproj │ ├── NLog.config │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── DatabaseSource │ ├── Controllers │ │ └── HomeController.cs │ ├── CustomLogModel.cs │ ├── DatabaseSource.csproj │ ├── Models │ │ └── ErrorViewModel.cs │ ├── NLog.config │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── 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 ├── DotNetCoreEmptyUseNlog │ ├── DotNetCoreEmptyUseNlog.csproj │ ├── DotNetCoreEmptyUseNlog.csproj.user │ ├── NLog.config │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── MySqlDatabase │ ├── CustomLogModel.cs │ ├── MySqlDatabase.csproj │ ├── NLog.config │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── NfxAspNetMvc │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ └── RouteConfig.cs │ ├── Content │ │ ├── Site.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-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── Controllers │ │ └── HomeController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── NLog.config │ ├── NfxAspNetMvc.csproj │ ├── NfxAspNetMvc.csproj.user │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Scripts │ │ ├── README.md │ │ ├── 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 │ │ ├── esm │ │ │ ├── popper-utils.js │ │ │ ├── popper-utils.js.map │ │ │ ├── popper-utils.min.js │ │ │ ├── popper-utils.min.js.map │ │ │ ├── popper.js │ │ │ ├── popper.js.map │ │ │ ├── popper.min.js │ │ │ └── popper.min.js.map │ │ ├── index.d.ts │ │ ├── jquery-3.4.1.intellisense.js │ │ ├── jquery-3.4.1.js │ │ ├── jquery-3.4.1.min.js │ │ ├── jquery-3.4.1.min.map │ │ ├── jquery-3.4.1.slim.js │ │ ├── jquery-3.4.1.slim.min.js │ │ ├── jquery-3.4.1.slim.min.map │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.8.3.js │ │ ├── popper-utils.js │ │ ├── popper-utils.js.map │ │ ├── popper-utils.min.js │ │ ├── popper-utils.min.js.map │ │ ├── popper.js │ │ ├── popper.js.map │ │ ├── popper.min.js │ │ ├── popper.min.js.map │ │ └── umd │ │ │ ├── popper-utils.js │ │ │ ├── popper-utils.js.map │ │ │ ├── popper-utils.min.js │ │ │ ├── popper-utils.min.js.map │ │ │ ├── popper.js │ │ │ ├── popper.js.map │ │ │ ├── popper.min.js │ │ │ └── popper.min.js.map │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── favicon.ico │ └── packages.config ├── NfxAspnetCore │ ├── Controllers │ │ └── HomeController.cs │ ├── Models │ │ └── ErrorViewModel.cs │ ├── NfxAspnetCore.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── app.config │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── 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 ├── RequestTracking │ ├── NLog.config │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── RequestTracking.csproj │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── StructuredLog │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── StructuredLog.csproj │ ├── appsettings.Development.json │ └── appsettings.json ├── UseAuthorization │ ├── Areas │ │ └── Identity │ │ │ └── Pages │ │ │ └── _ViewStart.cshtml │ ├── Data │ │ ├── ApplicationDbContext.cs │ │ └── Migrations │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── Pages │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Privacy.cshtml │ │ ├── Privacy.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ ├── _LoginPartial.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SimpleAuthFilter.cs │ ├── Startup.cs │ ├── UseAuthorization.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── 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 ├── UseLog4net │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── UseLog4net.csproj │ ├── UseLog4net.csproj.user │ ├── appsettings.Development.json │ ├── appsettings.json │ └── log4net.config ├── UseSerilog │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── UseSerilog.csproj │ ├── appsettings.Development.json │ └── appsettings.json └── abpvnext │ ├── .gitattributes │ ├── .gitignore │ ├── BootStore.sln │ ├── BootStore.sln.DotSettings │ ├── common.props │ ├── src │ ├── BootStore.Application.Contracts │ │ ├── BootStore.Application.Contracts.csproj │ │ ├── BootStoreApplicationContractsModule.cs │ │ └── Permissions │ │ │ ├── BootStorePermissionDefinitionProvider.cs │ │ │ └── BootStorePermissions.cs │ ├── BootStore.Application │ │ ├── BootStore.Application.csproj │ │ ├── BootStoreAppService.cs │ │ ├── BootStoreApplicationAutoMapperProfile.cs │ │ └── BootStoreApplicationModule.cs │ ├── BootStore.DbMigrator │ │ ├── BootStore.DbMigrator.csproj │ │ ├── BootStoreDbMigratorModule.cs │ │ ├── Program.cs │ │ └── appsettings.json │ ├── BootStore.Domain.Shared │ │ ├── BootStore.Domain.Shared.csproj │ │ ├── BootStoreDomainErrorCodes.cs │ │ ├── BootStoreDomainSharedModule.cs │ │ ├── Localization │ │ │ ├── BootStore │ │ │ │ ├── cs.json │ │ │ │ ├── en.json │ │ │ │ ├── pl.json │ │ │ │ ├── pt-BR.json │ │ │ │ ├── tr.json │ │ │ │ ├── vi.json │ │ │ │ └── zh-Hans.json │ │ │ └── BootStoreResource.cs │ │ └── MultiTenancy │ │ │ └── MultiTenancyConsts.cs │ ├── BootStore.Domain │ │ ├── BootStore.Domain.csproj │ │ ├── BootStoreConsts.cs │ │ ├── BootStoreDomainModule.cs │ │ ├── Data │ │ │ ├── BootStoreDbMigrationService.cs │ │ │ ├── IBootStoreDbSchemaMigrator.cs │ │ │ └── NullBootStoreDbSchemaMigrator.cs │ │ ├── IdentityServer │ │ │ └── IdentityServerDataSeedContributor.cs │ │ ├── Settings │ │ │ ├── BootStoreSettingDefinitionProvider.cs │ │ │ └── BootStoreSettings.cs │ │ └── Users │ │ │ └── AppUser.cs │ ├── BootStore.EntityFrameworkCore.DbMigrations │ │ ├── BootStore.EntityFrameworkCore.DbMigrations.csproj │ │ ├── EntityFrameworkCore │ │ │ ├── BootStoreEntityFrameworkCoreDbMigrationsModule.cs │ │ │ ├── BootStoreMigrationsDbContext.cs │ │ │ ├── BootStoreMigrationsDbContextFactory.cs │ │ │ └── EntityFrameworkCoreBootStoreDbSchemaMigrator.cs │ │ └── Migrations │ │ │ ├── 20191022082740_Initial.Designer.cs │ │ │ ├── 20191022082740_Initial.cs │ │ │ └── BootStoreMigrationsDbContextModelSnapshot.cs │ ├── BootStore.EntityFrameworkCore │ │ ├── BootStore.EntityFrameworkCore.csproj │ │ └── EntityFrameworkCore │ │ │ ├── BootStoreDbContext.cs │ │ │ ├── BootStoreDbContextModelCreatingExtensions.cs │ │ │ └── BootStoreEntityFrameworkCoreModule.cs │ ├── BootStore.HttpApi.Client │ │ ├── BootStore.HttpApi.Client.csproj │ │ └── BootStoreHttpApiClientModule.cs │ ├── BootStore.HttpApi │ │ ├── BootStore.HttpApi.csproj │ │ ├── BootStoreHttpApiModule.cs │ │ ├── Controllers │ │ │ ├── BootStoreController.cs │ │ │ └── TestController.cs │ │ └── Models │ │ │ └── Test │ │ │ └── TestModel.cs │ └── BootStore.Web │ │ ├── BootStore.Web.csproj │ │ ├── BootStoreBrandingProvider.cs │ │ ├── BootStoreWebAutoMapperProfile.cs │ │ ├── BootStoreWebModule.cs │ │ ├── Menus │ │ └── BootStoreMenuContributor.cs │ │ ├── Pages │ │ ├── BootStorePage.cs │ │ ├── BootStorePageModel.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Index.css │ │ ├── Index.js │ │ └── _ViewImports.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── Views │ │ └── _ViewImports.cshtml │ │ ├── abp.resourcemapping.js │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── gulpfile.js │ │ ├── package.json │ │ ├── tempkey.rsa │ │ └── yarn.lock │ └── test │ ├── BootStore.Application.Tests │ ├── BootStore.Application.Tests.csproj │ ├── BootStoreApplicationTestBase.cs │ ├── BootStoreApplicationTestModule.cs │ └── Samples │ │ └── SampleAppServiceTests.cs │ ├── BootStore.Domain.Tests │ ├── BootStore.Domain.Tests.csproj │ ├── BootStoreDomainTestBase.cs │ ├── BootStoreDomainTestModule.cs │ └── Samples │ │ └── SampleDomainTests.cs │ ├── BootStore.EntityFrameworkCore.Tests │ ├── BootStore.EntityFrameworkCore.Tests.csproj │ └── EntityFrameworkCore │ │ ├── BootStoreEntityFrameworkCoreTestBase.cs │ │ ├── BootStoreEntityFrameworkCoreTestModule.cs │ │ └── Samples │ │ └── SampleRepositoryTests.cs │ ├── BootStore.HttpApi.Client.ConsoleTestApp │ ├── BootStore.HttpApi.Client.ConsoleTestApp.csproj │ ├── BootStoreConsoleApiClientModule.cs │ ├── ClientDemoService.cs │ ├── Program.cs │ └── appsettings.json │ ├── BootStore.TestBase │ ├── BootStore.TestBase.csproj │ ├── BootStoreTestBase.cs │ ├── BootStoreTestBaseModule.cs │ ├── BootStoreTestDataSeedContributor.cs │ └── Security │ │ └── FakeCurrentPrincipalAccessor.cs │ └── BootStore.Web.Tests │ ├── BootStore.Web.Tests.csproj │ ├── BootStoreWebTestBase.cs │ ├── BootStoreWebTestModule.cs │ ├── BootStoreWebTestStartup.cs │ ├── Pages │ └── Index_Tests.cs │ ├── WebContentDirectoryFinder.cs │ └── xunit.runner.json ├── src └── LogDashboard │ ├── Authorization │ ├── AuthorizationFilterHelper.cs │ ├── AuthorizeHelper.cs │ ├── Filters │ │ ├── LogDashboardBasicAuthFilter.cs │ │ └── LogdashboardRoleAuthorizeFilter.cs │ └── ILogDashboardAuthorizationFilter.cs │ ├── Cache │ ├── ILogDashboardCacheManager.cs │ └── InMemoryLogDashboardCacheManager.cs │ ├── EmbeddedFiles │ └── LogDashboardEmbeddedFiles.cs │ ├── Extensions │ ├── EnumerableExtensions.cs │ ├── ExpressionExtensions.cs │ ├── Html.cs │ ├── JsonExtensions.cs │ ├── LogDashboardOptionsExtensions.cs │ ├── LogModelExtensions.cs │ └── StringArrayExtensions.cs │ ├── Handle │ ├── DashboardHandle.cs │ ├── ILogDashboardHandle.cs │ ├── LogChart │ │ ├── DayLogChart.cs │ │ ├── HourChart.cs │ │ ├── ILogChart.cs │ │ ├── LogChartFactory.cs │ │ ├── MonthLogChart.cs │ │ └── WeekLogChart.cs │ └── LogDashboardHandleBase.cs │ ├── Ioc │ └── IocManager.cs │ ├── LogDashboard.csproj │ ├── LogDashboardApplicationBuilderExtensions.cs │ ├── LogDashboardBuilder │ ├── DefaultLogDashboardBuilder.cs │ └── ILogDashboardBuilder.cs │ ├── LogDashboardConsts.cs │ ├── LogDashboardContext.cs │ ├── LogDashboardMiddleware.cs │ ├── LogDashboardOptions.cs │ ├── LogDashboardServiceCollectionExtensions.cs │ ├── Models │ ├── DashboardModel.cs │ ├── GetChartDataInput.cs │ ├── GetLogChartsOutput.cs │ ├── ILogModel.cs │ ├── IRequestTraceLogModel.cs │ ├── LogLevel.cs │ ├── LogModel.cs │ ├── LogModelInput.cs │ ├── PageedResultModel.cs │ ├── RequestTraceLogModel.cs │ ├── SearchLogModel.cs │ └── SearchlogInput.cs │ ├── Repository │ ├── Dapper │ │ ├── DapperEvaluator.cs │ │ ├── DapperExpressionExtensions.cs │ │ ├── DapperExpressionVisitor.cs │ │ ├── DapperRepository.cs │ │ ├── DapperUnitOfWork.cs │ │ └── LogModelMapper.cs │ ├── File │ │ ├── FileRepository.cs │ │ └── FileUnitOfWork.cs │ ├── IRepository.cs │ ├── IUnitOfWork.cs │ └── RepositoryExtensions.cs │ ├── Route │ ├── LogDashboardRoute.cs │ ├── LogDashboardRoutes.cs │ └── RouteCollection.cs │ ├── StackTrace │ ├── StackTraceFormatter.cs │ └── StackTraceParser.cs │ ├── Views │ ├── Dashboard │ │ ├── BasicLog.cshtml │ │ ├── BasicLog.generated.cs │ │ ├── Home.cshtml │ │ ├── Home.generated.cs │ │ ├── LogInfo.cshtml │ │ ├── LogInfo.generated.cs │ │ ├── LogList.cshtml │ │ ├── LogList.generated.cs │ │ ├── TraceLogList.cshtml │ │ └── TraceLogList.generated.cs │ ├── HtmlString.cs │ ├── RazorPage.cs │ ├── _layout.cshtml │ └── _layout.generated.cs │ ├── css │ ├── bootstrap.min.css │ ├── font-awesome.min.css │ ├── simple-line-icons.css │ ├── styles.css │ └── tempusdominus-bootstrap-4.min.css │ ├── font │ ├── Simple-Line-Icons.woff2 │ └── fontawesome-webfont.woff2 │ └── js │ ├── Chart.min.js │ ├── basicLog.js │ ├── bootstrap.min.js │ ├── home.js │ ├── jquery.min.js │ ├── log.js │ ├── moment.min.js │ ├── spin.min.js │ └── tempusdominus-bootstrap-4.js └── test ├── NetCoreEmptyTest ├── NLog.config ├── NetCoreEmptyTest.csproj ├── NetCoreEmptyTest.csproj.user ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ └── FolderProfile.pubxml.user │ └── launchSettings.json ├── Startup.cs └── obj │ └── Debug │ └── netcoreapp2.0 │ └── NetCoreEmptyTest.AssemblyInfo.cs ├── aspnetcore2.1 ├── NLog.config ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs └── aspnetcore2.1.csproj └── aspnetcore2.2 ├── NLog.config ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json └── aspnetcore2.2.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /LogDashboard.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/LogDashboard.sln -------------------------------------------------------------------------------- /LogDashboard.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/LogDashboard.sln.DotSettings.user -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/README.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/logo.png -------------------------------------------------------------------------------- /samples/CustomLogModel/ApplicationLogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/CustomLogModel/ApplicationLogModel.cs -------------------------------------------------------------------------------- /samples/CustomLogModel/CustomLogModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/CustomLogModel/CustomLogModel.csproj -------------------------------------------------------------------------------- /samples/CustomLogModel/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/CustomLogModel/NLog.config -------------------------------------------------------------------------------- /samples/CustomLogModel/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/CustomLogModel/Program.cs -------------------------------------------------------------------------------- /samples/CustomLogModel/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/CustomLogModel/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/CustomLogModel/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/CustomLogModel/Startup.cs -------------------------------------------------------------------------------- /samples/CustomLogModel/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/CustomLogModel/appsettings.Development.json -------------------------------------------------------------------------------- /samples/CustomLogModel/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/CustomLogModel/appsettings.json -------------------------------------------------------------------------------- /samples/DatabaseSource/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/Controllers/HomeController.cs -------------------------------------------------------------------------------- /samples/DatabaseSource/CustomLogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/CustomLogModel.cs -------------------------------------------------------------------------------- /samples/DatabaseSource/DatabaseSource.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/DatabaseSource.csproj -------------------------------------------------------------------------------- /samples/DatabaseSource/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /samples/DatabaseSource/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/NLog.config -------------------------------------------------------------------------------- /samples/DatabaseSource/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/Program.cs -------------------------------------------------------------------------------- /samples/DatabaseSource/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/DatabaseSource/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/Startup.cs -------------------------------------------------------------------------------- /samples/DatabaseSource/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /samples/DatabaseSource/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /samples/DatabaseSource/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /samples/DatabaseSource/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /samples/DatabaseSource/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /samples/DatabaseSource/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /samples/DatabaseSource/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/DatabaseSource/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/DatabaseSource/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/appsettings.Development.json -------------------------------------------------------------------------------- /samples/DatabaseSource/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/appsettings.json -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/css/site.css -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/favicon.ico -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/js/site.js -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /samples/DatabaseSource/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DatabaseSource/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /samples/DotNetCoreEmptyUseNlog/DotNetCoreEmptyUseNlog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DotNetCoreEmptyUseNlog/DotNetCoreEmptyUseNlog.csproj -------------------------------------------------------------------------------- /samples/DotNetCoreEmptyUseNlog/DotNetCoreEmptyUseNlog.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DotNetCoreEmptyUseNlog/DotNetCoreEmptyUseNlog.csproj.user -------------------------------------------------------------------------------- /samples/DotNetCoreEmptyUseNlog/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DotNetCoreEmptyUseNlog/NLog.config -------------------------------------------------------------------------------- /samples/DotNetCoreEmptyUseNlog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DotNetCoreEmptyUseNlog/Program.cs -------------------------------------------------------------------------------- /samples/DotNetCoreEmptyUseNlog/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DotNetCoreEmptyUseNlog/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/DotNetCoreEmptyUseNlog/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DotNetCoreEmptyUseNlog/Startup.cs -------------------------------------------------------------------------------- /samples/DotNetCoreEmptyUseNlog/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DotNetCoreEmptyUseNlog/appsettings.Development.json -------------------------------------------------------------------------------- /samples/DotNetCoreEmptyUseNlog/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/DotNetCoreEmptyUseNlog/appsettings.json -------------------------------------------------------------------------------- /samples/MySqlDatabase/CustomLogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/MySqlDatabase/CustomLogModel.cs -------------------------------------------------------------------------------- /samples/MySqlDatabase/MySqlDatabase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/MySqlDatabase/MySqlDatabase.csproj -------------------------------------------------------------------------------- /samples/MySqlDatabase/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/MySqlDatabase/NLog.config -------------------------------------------------------------------------------- /samples/MySqlDatabase/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/MySqlDatabase/Program.cs -------------------------------------------------------------------------------- /samples/MySqlDatabase/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/MySqlDatabase/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/MySqlDatabase/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/MySqlDatabase/Startup.cs -------------------------------------------------------------------------------- /samples/MySqlDatabase/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/MySqlDatabase/appsettings.Development.json -------------------------------------------------------------------------------- /samples/MySqlDatabase/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/MySqlDatabase/appsettings.json -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/Site.css -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/bootstrap-grid.css -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/bootstrap-grid.css.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/bootstrap-grid.min.css -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/bootstrap-reboot.css -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/bootstrap-theme.css.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/bootstrap.css -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/bootstrap.css.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/bootstrap.min.css -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Content/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Content/bootstrap.min.css.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Controllers/HomeController.cs -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Global.asax -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Global.asax.cs -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/NLog.config -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/NfxAspNetMvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/NfxAspNetMvc.csproj -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/NfxAspNetMvc.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/NfxAspNetMvc.csproj.user -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/README.md -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/bootstrap.bundle.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/bootstrap.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/bootstrap.js.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/bootstrap.min.js.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/esm/popper-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/esm/popper-utils.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/esm/popper-utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/esm/popper-utils.js.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/esm/popper-utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/esm/popper-utils.min.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/esm/popper-utils.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/esm/popper-utils.min.js.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/esm/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/esm/popper.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/esm/popper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/esm/popper.js.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/esm/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/esm/popper.min.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/esm/popper.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/esm/popper.min.js.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/index.d.ts -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/jquery-3.4.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/jquery-3.4.1.intellisense.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/jquery-3.4.1.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/jquery-3.4.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/jquery-3.4.1.min.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/jquery-3.4.1.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/jquery-3.4.1.slim.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/jquery-3.4.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/jquery-3.4.1.slim.min.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/jquery-3.4.1.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/jquery-3.4.1.slim.min.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/modernizr-2.8.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/modernizr-2.8.3.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/popper-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/popper-utils.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/popper-utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/popper-utils.js.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/popper-utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/popper-utils.min.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/popper-utils.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/popper-utils.min.js.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/popper.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/popper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/popper.js.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/popper.min.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/popper.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/popper.min.js.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/umd/popper-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/umd/popper-utils.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/umd/popper-utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/umd/popper-utils.js.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/umd/popper-utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/umd/popper-utils.min.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/umd/popper-utils.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/umd/popper-utils.min.js.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/umd/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/umd/popper.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/umd/popper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/umd/popper.js.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/umd/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/umd/popper.min.js -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Scripts/umd/popper.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Scripts/umd/popper.min.js.map -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Startup.cs -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Views/Home/About.cshtml -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Views/Web.config -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Web.Debug.config -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Web.Release.config -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/Web.config -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/favicon.ico -------------------------------------------------------------------------------- /samples/NfxAspNetMvc/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspNetMvc/packages.config -------------------------------------------------------------------------------- /samples/NfxAspnetCore/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/Controllers/HomeController.cs -------------------------------------------------------------------------------- /samples/NfxAspnetCore/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /samples/NfxAspnetCore/NfxAspnetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/NfxAspnetCore.csproj -------------------------------------------------------------------------------- /samples/NfxAspnetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/Program.cs -------------------------------------------------------------------------------- /samples/NfxAspnetCore/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/NfxAspnetCore/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/Startup.cs -------------------------------------------------------------------------------- /samples/NfxAspnetCore/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /samples/NfxAspnetCore/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /samples/NfxAspnetCore/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /samples/NfxAspnetCore/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /samples/NfxAspnetCore/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /samples/NfxAspnetCore/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /samples/NfxAspnetCore/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/NfxAspnetCore/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/NfxAspnetCore/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/app.config -------------------------------------------------------------------------------- /samples/NfxAspnetCore/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/appsettings.Development.json -------------------------------------------------------------------------------- /samples/NfxAspnetCore/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/appsettings.json -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/css/site.css -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/favicon.ico -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/js/site.js -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /samples/NfxAspnetCore/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/NfxAspnetCore/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /samples/RequestTracking/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/RequestTracking/NLog.config -------------------------------------------------------------------------------- /samples/RequestTracking/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/RequestTracking/Program.cs -------------------------------------------------------------------------------- /samples/RequestTracking/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/RequestTracking/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/RequestTracking/RequestTracking.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/RequestTracking/RequestTracking.csproj -------------------------------------------------------------------------------- /samples/RequestTracking/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/RequestTracking/Startup.cs -------------------------------------------------------------------------------- /samples/RequestTracking/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/RequestTracking/appsettings.Development.json -------------------------------------------------------------------------------- /samples/RequestTracking/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/RequestTracking/appsettings.json -------------------------------------------------------------------------------- /samples/StructuredLog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/StructuredLog/Program.cs -------------------------------------------------------------------------------- /samples/StructuredLog/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/StructuredLog/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/StructuredLog/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/StructuredLog/Startup.cs -------------------------------------------------------------------------------- /samples/StructuredLog/StructuredLog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/StructuredLog/StructuredLog.csproj -------------------------------------------------------------------------------- /samples/StructuredLog/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/StructuredLog/appsettings.Development.json -------------------------------------------------------------------------------- /samples/StructuredLog/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/StructuredLog/appsettings.json -------------------------------------------------------------------------------- /samples/UseAuthorization/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/UseAuthorization/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /samples/UseAuthorization/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /samples/UseAuthorization/Data/Migrations/00000000000000_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Data/Migrations/00000000000000_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /samples/UseAuthorization/Data/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Data/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /samples/UseAuthorization/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Pages/Error.cshtml -------------------------------------------------------------------------------- /samples/UseAuthorization/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /samples/UseAuthorization/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Pages/Index.cshtml -------------------------------------------------------------------------------- /samples/UseAuthorization/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /samples/UseAuthorization/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /samples/UseAuthorization/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /samples/UseAuthorization/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /samples/UseAuthorization/Pages/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Pages/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /samples/UseAuthorization/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /samples/UseAuthorization/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/UseAuthorization/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/UseAuthorization/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Program.cs -------------------------------------------------------------------------------- /samples/UseAuthorization/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/UseAuthorization/SimpleAuthFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/SimpleAuthFilter.cs -------------------------------------------------------------------------------- /samples/UseAuthorization/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/Startup.cs -------------------------------------------------------------------------------- /samples/UseAuthorization/UseAuthorization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/UseAuthorization.csproj -------------------------------------------------------------------------------- /samples/UseAuthorization/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/appsettings.Development.json -------------------------------------------------------------------------------- /samples/UseAuthorization/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/appsettings.json -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/css/site.css -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/favicon.ico -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/js/site.js -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /samples/UseAuthorization/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseAuthorization/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /samples/UseLog4net/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseLog4net/Program.cs -------------------------------------------------------------------------------- /samples/UseLog4net/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseLog4net/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/UseLog4net/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseLog4net/Startup.cs -------------------------------------------------------------------------------- /samples/UseLog4net/UseLog4net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseLog4net/UseLog4net.csproj -------------------------------------------------------------------------------- /samples/UseLog4net/UseLog4net.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseLog4net/UseLog4net.csproj.user -------------------------------------------------------------------------------- /samples/UseLog4net/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseLog4net/appsettings.Development.json -------------------------------------------------------------------------------- /samples/UseLog4net/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseLog4net/appsettings.json -------------------------------------------------------------------------------- /samples/UseLog4net/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseLog4net/log4net.config -------------------------------------------------------------------------------- /samples/UseSerilog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseSerilog/Program.cs -------------------------------------------------------------------------------- /samples/UseSerilog/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseSerilog/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/UseSerilog/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseSerilog/Startup.cs -------------------------------------------------------------------------------- /samples/UseSerilog/UseSerilog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseSerilog/UseSerilog.csproj -------------------------------------------------------------------------------- /samples/UseSerilog/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseSerilog/appsettings.Development.json -------------------------------------------------------------------------------- /samples/UseSerilog/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/UseSerilog/appsettings.json -------------------------------------------------------------------------------- /samples/abpvnext/.gitattributes: -------------------------------------------------------------------------------- 1 | **/wwwroot/libs/** linguist-vendored 2 | -------------------------------------------------------------------------------- /samples/abpvnext/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/.gitignore -------------------------------------------------------------------------------- /samples/abpvnext/BootStore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/BootStore.sln -------------------------------------------------------------------------------- /samples/abpvnext/BootStore.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/BootStore.sln.DotSettings -------------------------------------------------------------------------------- /samples/abpvnext/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/common.props -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Application.Contracts/BootStore.Application.Contracts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Application.Contracts/BootStore.Application.Contracts.csproj -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Application.Contracts/BootStoreApplicationContractsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Application.Contracts/BootStoreApplicationContractsModule.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Application.Contracts/Permissions/BootStorePermissionDefinitionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Application.Contracts/Permissions/BootStorePermissionDefinitionProvider.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Application.Contracts/Permissions/BootStorePermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Application.Contracts/Permissions/BootStorePermissions.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Application/BootStore.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Application/BootStore.Application.csproj -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Application/BootStoreAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Application/BootStoreAppService.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Application/BootStoreApplicationAutoMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Application/BootStoreApplicationAutoMapperProfile.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Application/BootStoreApplicationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Application/BootStoreApplicationModule.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.DbMigrator/BootStore.DbMigrator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.DbMigrator/BootStore.DbMigrator.csproj -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.DbMigrator/BootStoreDbMigratorModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.DbMigrator/BootStoreDbMigratorModule.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.DbMigrator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.DbMigrator/Program.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.DbMigrator/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.DbMigrator/appsettings.json -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain.Shared/BootStore.Domain.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain.Shared/BootStore.Domain.Shared.csproj -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain.Shared/BootStoreDomainErrorCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain.Shared/BootStoreDomainErrorCodes.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain.Shared/BootStoreDomainSharedModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain.Shared/BootStoreDomainSharedModule.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain.Shared/Localization/BootStore/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain.Shared/Localization/BootStore/cs.json -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain.Shared/Localization/BootStore/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain.Shared/Localization/BootStore/en.json -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain.Shared/Localization/BootStore/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain.Shared/Localization/BootStore/pl.json -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain.Shared/Localization/BootStore/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain.Shared/Localization/BootStore/pt-BR.json -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain.Shared/Localization/BootStore/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain.Shared/Localization/BootStore/tr.json -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain.Shared/Localization/BootStore/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain.Shared/Localization/BootStore/vi.json -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain.Shared/Localization/BootStore/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain.Shared/Localization/BootStore/zh-Hans.json -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain.Shared/Localization/BootStoreResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain.Shared/Localization/BootStoreResource.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain.Shared/MultiTenancy/MultiTenancyConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain.Shared/MultiTenancy/MultiTenancyConsts.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain/BootStore.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain/BootStore.Domain.csproj -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain/BootStoreConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain/BootStoreConsts.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain/BootStoreDomainModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain/BootStoreDomainModule.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain/Data/BootStoreDbMigrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain/Data/BootStoreDbMigrationService.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain/Data/IBootStoreDbSchemaMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain/Data/IBootStoreDbSchemaMigrator.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain/Data/NullBootStoreDbSchemaMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain/Data/NullBootStoreDbSchemaMigrator.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain/IdentityServer/IdentityServerDataSeedContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain/IdentityServer/IdentityServerDataSeedContributor.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain/Settings/BootStoreSettingDefinitionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain/Settings/BootStoreSettingDefinitionProvider.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain/Settings/BootStoreSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain/Settings/BootStoreSettings.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Domain/Users/AppUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Domain/Users/AppUser.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.EntityFrameworkCore.DbMigrations/BootStore.EntityFrameworkCore.DbMigrations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.EntityFrameworkCore.DbMigrations/BootStore.EntityFrameworkCore.DbMigrations.csproj -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/BootStoreEntityFrameworkCoreDbMigrationsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/BootStoreEntityFrameworkCoreDbMigrationsModule.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/BootStoreMigrationsDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/BootStoreMigrationsDbContext.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/BootStoreMigrationsDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/BootStoreMigrationsDbContextFactory.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/EntityFrameworkCoreBootStoreDbSchemaMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/EntityFrameworkCoreBootStoreDbSchemaMigrator.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.EntityFrameworkCore.DbMigrations/Migrations/20191022082740_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.EntityFrameworkCore.DbMigrations/Migrations/20191022082740_Initial.Designer.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.EntityFrameworkCore.DbMigrations/Migrations/20191022082740_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.EntityFrameworkCore.DbMigrations/Migrations/20191022082740_Initial.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.EntityFrameworkCore.DbMigrations/Migrations/BootStoreMigrationsDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.EntityFrameworkCore.DbMigrations/Migrations/BootStoreMigrationsDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.EntityFrameworkCore/BootStore.EntityFrameworkCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.EntityFrameworkCore/BootStore.EntityFrameworkCore.csproj -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.EntityFrameworkCore/EntityFrameworkCore/BootStoreDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.EntityFrameworkCore/EntityFrameworkCore/BootStoreDbContext.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.EntityFrameworkCore/EntityFrameworkCore/BootStoreDbContextModelCreatingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.EntityFrameworkCore/EntityFrameworkCore/BootStoreDbContextModelCreatingExtensions.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.EntityFrameworkCore/EntityFrameworkCore/BootStoreEntityFrameworkCoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.EntityFrameworkCore/EntityFrameworkCore/BootStoreEntityFrameworkCoreModule.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.HttpApi.Client/BootStore.HttpApi.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.HttpApi.Client/BootStore.HttpApi.Client.csproj -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.HttpApi.Client/BootStoreHttpApiClientModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.HttpApi.Client/BootStoreHttpApiClientModule.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.HttpApi/BootStore.HttpApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.HttpApi/BootStore.HttpApi.csproj -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.HttpApi/BootStoreHttpApiModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.HttpApi/BootStoreHttpApiModule.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.HttpApi/Controllers/BootStoreController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.HttpApi/Controllers/BootStoreController.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.HttpApi/Controllers/TestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.HttpApi/Controllers/TestController.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.HttpApi/Models/Test/TestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.HttpApi/Models/Test/TestModel.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/BootStore.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/BootStore.Web.csproj -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/BootStoreBrandingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/BootStoreBrandingProvider.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/BootStoreWebAutoMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/BootStoreWebAutoMapperProfile.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/BootStoreWebModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/BootStoreWebModule.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/Menus/BootStoreMenuContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/Menus/BootStoreMenuContributor.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/Pages/BootStorePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/Pages/BootStorePage.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/Pages/BootStorePageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/Pages/BootStorePageModel.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/Pages/Index.cshtml -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/Pages/Index.css: -------------------------------------------------------------------------------- 1 | body { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/Pages/Index.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | abp.log.debug('Index.js initialized!'); 3 | }); -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/Program.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/Startup.cs -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/abp.resourcemapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/abp.resourcemapping.js -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/appsettings.json -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/gulpfile.js -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/package.json -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/tempkey.rsa -------------------------------------------------------------------------------- /samples/abpvnext/src/BootStore.Web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/src/BootStore.Web/yarn.lock -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.Application.Tests/BootStore.Application.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.Application.Tests/BootStore.Application.Tests.csproj -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.Application.Tests/BootStoreApplicationTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.Application.Tests/BootStoreApplicationTestBase.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.Application.Tests/BootStoreApplicationTestModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.Application.Tests/BootStoreApplicationTestModule.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.Application.Tests/Samples/SampleAppServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.Application.Tests/Samples/SampleAppServiceTests.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.Domain.Tests/BootStore.Domain.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.Domain.Tests/BootStore.Domain.Tests.csproj -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.Domain.Tests/BootStoreDomainTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.Domain.Tests/BootStoreDomainTestBase.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.Domain.Tests/BootStoreDomainTestModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.Domain.Tests/BootStoreDomainTestModule.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.Domain.Tests/Samples/SampleDomainTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.Domain.Tests/Samples/SampleDomainTests.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.EntityFrameworkCore.Tests/BootStore.EntityFrameworkCore.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.EntityFrameworkCore.Tests/BootStore.EntityFrameworkCore.Tests.csproj -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.EntityFrameworkCore.Tests/EntityFrameworkCore/BootStoreEntityFrameworkCoreTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.EntityFrameworkCore.Tests/EntityFrameworkCore/BootStoreEntityFrameworkCoreTestBase.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.EntityFrameworkCore.Tests/EntityFrameworkCore/BootStoreEntityFrameworkCoreTestModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.EntityFrameworkCore.Tests/EntityFrameworkCore/BootStoreEntityFrameworkCoreTestModule.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.EntityFrameworkCore.Tests/EntityFrameworkCore/Samples/SampleRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.EntityFrameworkCore.Tests/EntityFrameworkCore/Samples/SampleRepositoryTests.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.HttpApi.Client.ConsoleTestApp/BootStore.HttpApi.Client.ConsoleTestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.HttpApi.Client.ConsoleTestApp/BootStore.HttpApi.Client.ConsoleTestApp.csproj -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.HttpApi.Client.ConsoleTestApp/BootStoreConsoleApiClientModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.HttpApi.Client.ConsoleTestApp/BootStoreConsoleApiClientModule.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.HttpApi.Client.ConsoleTestApp/ClientDemoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.HttpApi.Client.ConsoleTestApp/ClientDemoService.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.HttpApi.Client.ConsoleTestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.HttpApi.Client.ConsoleTestApp/Program.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.HttpApi.Client.ConsoleTestApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.HttpApi.Client.ConsoleTestApp/appsettings.json -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.TestBase/BootStore.TestBase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.TestBase/BootStore.TestBase.csproj -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.TestBase/BootStoreTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.TestBase/BootStoreTestBase.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.TestBase/BootStoreTestBaseModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.TestBase/BootStoreTestBaseModule.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.TestBase/BootStoreTestDataSeedContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.TestBase/BootStoreTestDataSeedContributor.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.TestBase/Security/FakeCurrentPrincipalAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.TestBase/Security/FakeCurrentPrincipalAccessor.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.Web.Tests/BootStore.Web.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.Web.Tests/BootStore.Web.Tests.csproj -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.Web.Tests/BootStoreWebTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.Web.Tests/BootStoreWebTestBase.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.Web.Tests/BootStoreWebTestModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.Web.Tests/BootStoreWebTestModule.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.Web.Tests/BootStoreWebTestStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.Web.Tests/BootStoreWebTestStartup.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.Web.Tests/Pages/Index_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.Web.Tests/Pages/Index_Tests.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.Web.Tests/WebContentDirectoryFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/samples/abpvnext/test/BootStore.Web.Tests/WebContentDirectoryFinder.cs -------------------------------------------------------------------------------- /samples/abpvnext/test/BootStore.Web.Tests/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } -------------------------------------------------------------------------------- /src/LogDashboard/Authorization/AuthorizationFilterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Authorization/AuthorizationFilterHelper.cs -------------------------------------------------------------------------------- /src/LogDashboard/Authorization/AuthorizeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Authorization/AuthorizeHelper.cs -------------------------------------------------------------------------------- /src/LogDashboard/Authorization/Filters/LogDashboardBasicAuthFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Authorization/Filters/LogDashboardBasicAuthFilter.cs -------------------------------------------------------------------------------- /src/LogDashboard/Authorization/Filters/LogdashboardRoleAuthorizeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Authorization/Filters/LogdashboardRoleAuthorizeFilter.cs -------------------------------------------------------------------------------- /src/LogDashboard/Authorization/ILogDashboardAuthorizationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Authorization/ILogDashboardAuthorizationFilter.cs -------------------------------------------------------------------------------- /src/LogDashboard/Cache/ILogDashboardCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Cache/ILogDashboardCacheManager.cs -------------------------------------------------------------------------------- /src/LogDashboard/Cache/InMemoryLogDashboardCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Cache/InMemoryLogDashboardCacheManager.cs -------------------------------------------------------------------------------- /src/LogDashboard/EmbeddedFiles/LogDashboardEmbeddedFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/EmbeddedFiles/LogDashboardEmbeddedFiles.cs -------------------------------------------------------------------------------- /src/LogDashboard/Extensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Extensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/LogDashboard/Extensions/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Extensions/ExpressionExtensions.cs -------------------------------------------------------------------------------- /src/LogDashboard/Extensions/Html.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Extensions/Html.cs -------------------------------------------------------------------------------- /src/LogDashboard/Extensions/JsonExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Extensions/JsonExtensions.cs -------------------------------------------------------------------------------- /src/LogDashboard/Extensions/LogDashboardOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Extensions/LogDashboardOptionsExtensions.cs -------------------------------------------------------------------------------- /src/LogDashboard/Extensions/LogModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Extensions/LogModelExtensions.cs -------------------------------------------------------------------------------- /src/LogDashboard/Extensions/StringArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Extensions/StringArrayExtensions.cs -------------------------------------------------------------------------------- /src/LogDashboard/Handle/DashboardHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Handle/DashboardHandle.cs -------------------------------------------------------------------------------- /src/LogDashboard/Handle/ILogDashboardHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Handle/ILogDashboardHandle.cs -------------------------------------------------------------------------------- /src/LogDashboard/Handle/LogChart/DayLogChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Handle/LogChart/DayLogChart.cs -------------------------------------------------------------------------------- /src/LogDashboard/Handle/LogChart/HourChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Handle/LogChart/HourChart.cs -------------------------------------------------------------------------------- /src/LogDashboard/Handle/LogChart/ILogChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Handle/LogChart/ILogChart.cs -------------------------------------------------------------------------------- /src/LogDashboard/Handle/LogChart/LogChartFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Handle/LogChart/LogChartFactory.cs -------------------------------------------------------------------------------- /src/LogDashboard/Handle/LogChart/MonthLogChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Handle/LogChart/MonthLogChart.cs -------------------------------------------------------------------------------- /src/LogDashboard/Handle/LogChart/WeekLogChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Handle/LogChart/WeekLogChart.cs -------------------------------------------------------------------------------- /src/LogDashboard/Handle/LogDashboardHandleBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Handle/LogDashboardHandleBase.cs -------------------------------------------------------------------------------- /src/LogDashboard/Ioc/IocManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Ioc/IocManager.cs -------------------------------------------------------------------------------- /src/LogDashboard/LogDashboard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/LogDashboard.csproj -------------------------------------------------------------------------------- /src/LogDashboard/LogDashboardApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/LogDashboardApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/LogDashboard/LogDashboardBuilder/DefaultLogDashboardBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/LogDashboardBuilder/DefaultLogDashboardBuilder.cs -------------------------------------------------------------------------------- /src/LogDashboard/LogDashboardBuilder/ILogDashboardBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/LogDashboardBuilder/ILogDashboardBuilder.cs -------------------------------------------------------------------------------- /src/LogDashboard/LogDashboardConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/LogDashboardConsts.cs -------------------------------------------------------------------------------- /src/LogDashboard/LogDashboardContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/LogDashboardContext.cs -------------------------------------------------------------------------------- /src/LogDashboard/LogDashboardMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/LogDashboardMiddleware.cs -------------------------------------------------------------------------------- /src/LogDashboard/LogDashboardOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/LogDashboardOptions.cs -------------------------------------------------------------------------------- /src/LogDashboard/LogDashboardServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/LogDashboardServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/LogDashboard/Models/DashboardModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Models/DashboardModel.cs -------------------------------------------------------------------------------- /src/LogDashboard/Models/GetChartDataInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Models/GetChartDataInput.cs -------------------------------------------------------------------------------- /src/LogDashboard/Models/GetLogChartsOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Models/GetLogChartsOutput.cs -------------------------------------------------------------------------------- /src/LogDashboard/Models/ILogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Models/ILogModel.cs -------------------------------------------------------------------------------- /src/LogDashboard/Models/IRequestTraceLogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Models/IRequestTraceLogModel.cs -------------------------------------------------------------------------------- /src/LogDashboard/Models/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Models/LogLevel.cs -------------------------------------------------------------------------------- /src/LogDashboard/Models/LogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Models/LogModel.cs -------------------------------------------------------------------------------- /src/LogDashboard/Models/LogModelInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Models/LogModelInput.cs -------------------------------------------------------------------------------- /src/LogDashboard/Models/PageedResultModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Models/PageedResultModel.cs -------------------------------------------------------------------------------- /src/LogDashboard/Models/RequestTraceLogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Models/RequestTraceLogModel.cs -------------------------------------------------------------------------------- /src/LogDashboard/Models/SearchLogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Models/SearchLogModel.cs -------------------------------------------------------------------------------- /src/LogDashboard/Models/SearchlogInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Models/SearchlogInput.cs -------------------------------------------------------------------------------- /src/LogDashboard/Repository/Dapper/DapperEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Repository/Dapper/DapperEvaluator.cs -------------------------------------------------------------------------------- /src/LogDashboard/Repository/Dapper/DapperExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Repository/Dapper/DapperExpressionExtensions.cs -------------------------------------------------------------------------------- /src/LogDashboard/Repository/Dapper/DapperExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Repository/Dapper/DapperExpressionVisitor.cs -------------------------------------------------------------------------------- /src/LogDashboard/Repository/Dapper/DapperRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Repository/Dapper/DapperRepository.cs -------------------------------------------------------------------------------- /src/LogDashboard/Repository/Dapper/DapperUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Repository/Dapper/DapperUnitOfWork.cs -------------------------------------------------------------------------------- /src/LogDashboard/Repository/Dapper/LogModelMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Repository/Dapper/LogModelMapper.cs -------------------------------------------------------------------------------- /src/LogDashboard/Repository/File/FileRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Repository/File/FileRepository.cs -------------------------------------------------------------------------------- /src/LogDashboard/Repository/File/FileUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Repository/File/FileUnitOfWork.cs -------------------------------------------------------------------------------- /src/LogDashboard/Repository/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Repository/IRepository.cs -------------------------------------------------------------------------------- /src/LogDashboard/Repository/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Repository/IUnitOfWork.cs -------------------------------------------------------------------------------- /src/LogDashboard/Repository/RepositoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Repository/RepositoryExtensions.cs -------------------------------------------------------------------------------- /src/LogDashboard/Route/LogDashboardRoute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Route/LogDashboardRoute.cs -------------------------------------------------------------------------------- /src/LogDashboard/Route/LogDashboardRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Route/LogDashboardRoutes.cs -------------------------------------------------------------------------------- /src/LogDashboard/Route/RouteCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Route/RouteCollection.cs -------------------------------------------------------------------------------- /src/LogDashboard/StackTrace/StackTraceFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/StackTrace/StackTraceFormatter.cs -------------------------------------------------------------------------------- /src/LogDashboard/StackTrace/StackTraceParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/StackTrace/StackTraceParser.cs -------------------------------------------------------------------------------- /src/LogDashboard/Views/Dashboard/BasicLog.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Views/Dashboard/BasicLog.cshtml -------------------------------------------------------------------------------- /src/LogDashboard/Views/Dashboard/BasicLog.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Views/Dashboard/BasicLog.generated.cs -------------------------------------------------------------------------------- /src/LogDashboard/Views/Dashboard/Home.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Views/Dashboard/Home.cshtml -------------------------------------------------------------------------------- /src/LogDashboard/Views/Dashboard/Home.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Views/Dashboard/Home.generated.cs -------------------------------------------------------------------------------- /src/LogDashboard/Views/Dashboard/LogInfo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Views/Dashboard/LogInfo.cshtml -------------------------------------------------------------------------------- /src/LogDashboard/Views/Dashboard/LogInfo.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Views/Dashboard/LogInfo.generated.cs -------------------------------------------------------------------------------- /src/LogDashboard/Views/Dashboard/LogList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Views/Dashboard/LogList.cshtml -------------------------------------------------------------------------------- /src/LogDashboard/Views/Dashboard/LogList.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Views/Dashboard/LogList.generated.cs -------------------------------------------------------------------------------- /src/LogDashboard/Views/Dashboard/TraceLogList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Views/Dashboard/TraceLogList.cshtml -------------------------------------------------------------------------------- /src/LogDashboard/Views/Dashboard/TraceLogList.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Views/Dashboard/TraceLogList.generated.cs -------------------------------------------------------------------------------- /src/LogDashboard/Views/HtmlString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Views/HtmlString.cs -------------------------------------------------------------------------------- /src/LogDashboard/Views/RazorPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Views/RazorPage.cs -------------------------------------------------------------------------------- /src/LogDashboard/Views/_layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Views/_layout.cshtml -------------------------------------------------------------------------------- /src/LogDashboard/Views/_layout.generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/Views/_layout.generated.cs -------------------------------------------------------------------------------- /src/LogDashboard/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/LogDashboard/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/css/font-awesome.min.css -------------------------------------------------------------------------------- /src/LogDashboard/css/simple-line-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/css/simple-line-icons.css -------------------------------------------------------------------------------- /src/LogDashboard/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/css/styles.css -------------------------------------------------------------------------------- /src/LogDashboard/css/tempusdominus-bootstrap-4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/css/tempusdominus-bootstrap-4.min.css -------------------------------------------------------------------------------- /src/LogDashboard/font/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/font/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /src/LogDashboard/font/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/font/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/LogDashboard/js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/js/Chart.min.js -------------------------------------------------------------------------------- /src/LogDashboard/js/basicLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/js/basicLog.js -------------------------------------------------------------------------------- /src/LogDashboard/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/LogDashboard/js/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/js/home.js -------------------------------------------------------------------------------- /src/LogDashboard/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/js/jquery.min.js -------------------------------------------------------------------------------- /src/LogDashboard/js/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/js/log.js -------------------------------------------------------------------------------- /src/LogDashboard/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/js/moment.min.js -------------------------------------------------------------------------------- /src/LogDashboard/js/spin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/js/spin.min.js -------------------------------------------------------------------------------- /src/LogDashboard/js/tempusdominus-bootstrap-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/src/LogDashboard/js/tempusdominus-bootstrap-4.js -------------------------------------------------------------------------------- /test/NetCoreEmptyTest/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/NetCoreEmptyTest/NLog.config -------------------------------------------------------------------------------- /test/NetCoreEmptyTest/NetCoreEmptyTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/NetCoreEmptyTest/NetCoreEmptyTest.csproj -------------------------------------------------------------------------------- /test/NetCoreEmptyTest/NetCoreEmptyTest.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/NetCoreEmptyTest/NetCoreEmptyTest.csproj.user -------------------------------------------------------------------------------- /test/NetCoreEmptyTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/NetCoreEmptyTest/Program.cs -------------------------------------------------------------------------------- /test/NetCoreEmptyTest/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/NetCoreEmptyTest/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /test/NetCoreEmptyTest/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/NetCoreEmptyTest/Properties/PublishProfiles/FolderProfile.pubxml.user -------------------------------------------------------------------------------- /test/NetCoreEmptyTest/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/NetCoreEmptyTest/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/NetCoreEmptyTest/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/NetCoreEmptyTest/Startup.cs -------------------------------------------------------------------------------- /test/NetCoreEmptyTest/obj/Debug/netcoreapp2.0/NetCoreEmptyTest.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/NetCoreEmptyTest/obj/Debug/netcoreapp2.0/NetCoreEmptyTest.AssemblyInfo.cs -------------------------------------------------------------------------------- /test/aspnetcore2.1/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/aspnetcore2.1/NLog.config -------------------------------------------------------------------------------- /test/aspnetcore2.1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/aspnetcore2.1/Program.cs -------------------------------------------------------------------------------- /test/aspnetcore2.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/aspnetcore2.1/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/aspnetcore2.1/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/aspnetcore2.1/Startup.cs -------------------------------------------------------------------------------- /test/aspnetcore2.1/aspnetcore2.1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/aspnetcore2.1/aspnetcore2.1.csproj -------------------------------------------------------------------------------- /test/aspnetcore2.2/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/aspnetcore2.2/NLog.config -------------------------------------------------------------------------------- /test/aspnetcore2.2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/aspnetcore2.2/Program.cs -------------------------------------------------------------------------------- /test/aspnetcore2.2/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/aspnetcore2.2/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/aspnetcore2.2/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/aspnetcore2.2/Startup.cs -------------------------------------------------------------------------------- /test/aspnetcore2.2/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/aspnetcore2.2/appsettings.Development.json -------------------------------------------------------------------------------- /test/aspnetcore2.2/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/aspnetcore2.2/appsettings.json -------------------------------------------------------------------------------- /test/aspnetcore2.2/aspnetcore2.2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realLiangshiwei/LogDashboard/HEAD/test/aspnetcore2.2/aspnetcore2.2.csproj --------------------------------------------------------------------------------