├── .gitattributes ├── .gitignore ├── AspNetCoreMultitenant ├── AspNetCoreMultitenant.Shared │ ├── AspNetCoreMultitenant.Shared.csproj │ ├── Data │ │ ├── DynamicModelCacheKeyFactory.cs │ │ └── IMultitenantDbContext.cs │ ├── FileSystem │ │ ├── AzureBlobStorageFileClient.cs │ │ ├── IFileClient.cs │ │ └── LocalFileClient.cs │ ├── ITenantProvider.cs │ ├── ITenantSource.cs │ ├── MissingTenantMiddleware.cs │ ├── Tenant.cs │ ├── TenantProviders │ │ ├── ControllableTenantProvider.cs │ │ └── WebTenantProvider.cs │ └── TenantSources │ │ ├── BlobStorageTenantSource.cs │ │ └── FileTenantSource.cs ├── AspNetCoreMultitenant.Web │ ├── Areas │ │ └── Identity │ │ │ └── Pages │ │ │ └── _ViewStart.cshtml │ ├── AspNetCoreMultitenant.Web.csproj │ ├── Commands │ │ ├── CompositeCommandBase.cs │ │ ├── ICommandT.cs │ │ └── SaveProduct │ │ │ ├── NotifyCustomersOfProductCommand.cs │ │ │ ├── SaveAdvancedProductThumbnails.cs │ │ │ ├── SaveProductCommand.cs │ │ │ ├── SaveProductImagesCommand.cs │ │ │ ├── SaveProductThumbnailsCommand.cs │ │ │ └── SaveProductToDatabaseCommand.cs │ ├── Components │ │ └── CategoryMenuViewComponent.cs │ ├── Controllers │ │ └── HomeController.cs │ ├── Data │ │ ├── ApplicationDbContext.cs │ │ ├── BaseEntity.cs │ │ ├── DataGenerator.cs │ │ ├── Migrations │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ ├── 20180608071423_product-and-category.Designer.cs │ │ │ ├── 20180608071423_product-and-category.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ ├── Product.cs │ │ └── ProductCategory.cs │ ├── Models │ │ ├── ErrorViewModel.cs │ │ └── ProductEditModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Components │ │ │ │ └── CategoryMenu │ │ │ │ │ └── Default.cshtml │ │ │ ├── Error.cshtml │ │ │ ├── ProductList.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LoginPartial.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── tenants.json │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ └── banner3.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── 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 │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── AspNetCoreMultitenant.WebDangerous │ ├── AspNetCoreMultitenant.WebDangerous.csproj │ ├── Components │ │ └── CategoryMenuViewComponent.cs │ ├── Controllers │ │ └── HomeController.cs │ ├── Data │ │ ├── ApplicationDbContext.cs │ │ ├── BaseEntity.cs │ │ ├── DataGenerator.cs │ │ ├── DynamicModelCacheKeyFactory.cs │ │ ├── IMultitenantDbContext.cs │ │ ├── Product.cs │ │ └── ProductCategory.cs │ ├── Extensions │ │ └── CrossTenantUpdateException.cs │ ├── FileSystem │ │ ├── IFileClient.cs │ │ └── LocalFileClient.cs │ ├── ITenantProvider.cs │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Tenant.cs │ ├── TenantProviders │ │ └── FileTenantProvider.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Components │ │ │ │ └── CategoryMenu │ │ │ │ │ └── Default.cshtml │ │ │ ├── Error.cshtml │ │ │ ├── ProductList.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── tenants.json │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ └── banner3.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── 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-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 │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── 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 │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── AspNetCoreMultitenant.sln └── sme-script.sql └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/.gitignore -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/AspNetCoreMultitenant.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/AspNetCoreMultitenant.Shared.csproj -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/Data/DynamicModelCacheKeyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/Data/DynamicModelCacheKeyFactory.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/Data/IMultitenantDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/Data/IMultitenantDbContext.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/FileSystem/AzureBlobStorageFileClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/FileSystem/AzureBlobStorageFileClient.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/FileSystem/IFileClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/FileSystem/IFileClient.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/FileSystem/LocalFileClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/FileSystem/LocalFileClient.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/ITenantProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/ITenantProvider.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/ITenantSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/ITenantSource.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/MissingTenantMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/MissingTenantMiddleware.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/Tenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/Tenant.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/TenantProviders/ControllableTenantProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/TenantProviders/ControllableTenantProvider.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/TenantProviders/WebTenantProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/TenantProviders/WebTenantProvider.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/TenantSources/BlobStorageTenantSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/TenantSources/BlobStorageTenantSource.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/TenantSources/FileTenantSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Shared/TenantSources/FileTenantSource.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/AspNetCoreMultitenant.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/AspNetCoreMultitenant.Web.csproj -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Commands/CompositeCommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Commands/CompositeCommandBase.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Commands/ICommandT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Commands/ICommandT.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Commands/SaveProduct/NotifyCustomersOfProductCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Commands/SaveProduct/NotifyCustomersOfProductCommand.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Commands/SaveProduct/SaveAdvancedProductThumbnails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Commands/SaveProduct/SaveAdvancedProductThumbnails.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Commands/SaveProduct/SaveProductCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Commands/SaveProduct/SaveProductCommand.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Commands/SaveProduct/SaveProductImagesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Commands/SaveProduct/SaveProductImagesCommand.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Commands/SaveProduct/SaveProductThumbnailsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Commands/SaveProduct/SaveProductThumbnailsCommand.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Commands/SaveProduct/SaveProductToDatabaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Commands/SaveProduct/SaveProductToDatabaseCommand.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Components/CategoryMenuViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Components/CategoryMenuViewComponent.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/BaseEntity.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/DataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/DataGenerator.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/Migrations/00000000000000_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/Migrations/00000000000000_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/Migrations/20180608071423_product-and-category.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/Migrations/20180608071423_product-and-category.Designer.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/Migrations/20180608071423_product-and-category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/Migrations/20180608071423_product-and-category.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/Product.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/ProductCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Data/ProductCategory.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Models/ProductEditModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Models/ProductEditModel.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Program.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Startup.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Home/About.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Shared/Components/CategoryMenu/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Shared/Components/CategoryMenu/Default.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Shared/ProductList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Shared/ProductList.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/appsettings.Development.json -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/appsettings.json -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/tenants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/tenants.json -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/js/site.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.Web/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/AspNetCoreMultitenant.WebDangerous.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/AspNetCoreMultitenant.WebDangerous.csproj -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Components/CategoryMenuViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Components/CategoryMenuViewComponent.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Controllers/HomeController.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Data/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Data/BaseEntity.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Data/DataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Data/DataGenerator.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Data/DynamicModelCacheKeyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Data/DynamicModelCacheKeyFactory.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Data/IMultitenantDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Data/IMultitenantDbContext.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Data/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Data/Product.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Data/ProductCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Data/ProductCategory.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Extensions/CrossTenantUpdateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Extensions/CrossTenantUpdateException.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/FileSystem/IFileClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/FileSystem/IFileClient.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/FileSystem/LocalFileClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/FileSystem/LocalFileClient.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/ITenantProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/ITenantProvider.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Program.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Properties/launchSettings.json -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Startup.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Tenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Tenant.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/TenantProviders/FileTenantProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/TenantProviders/FileTenantProvider.cs -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/Shared/Components/CategoryMenu/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/Shared/Components/CategoryMenu/Default.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/Shared/ProductList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/Shared/ProductList.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/appsettings.Development.json -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/appsettings.json -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/tenants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/tenants.json -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/css/site.css -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/favicon.ico -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/js/site.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.WebDangerous/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /AspNetCoreMultitenant/AspNetCoreMultitenant.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/AspNetCoreMultitenant.sln -------------------------------------------------------------------------------- /AspNetCoreMultitenant/sme-script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/AspNetCoreMultitenant/sme-script.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpeipman/AspNetCoreMultitenant/HEAD/README.md --------------------------------------------------------------------------------