Changeset 08aefc6
- Timestamp:
- 08/28/26 06:30:34 (4 weeks ago)
- Branches:
- main
- Children:
- fa0fbaf
- Files:
-
- 302 added
-
.idea/.idea.KernelRecordsMVC/.idea/.gitignore (added)
-
.idea/.idea.KernelRecordsMVC/.idea/encodings.xml (added)
-
.idea/.idea.KernelRecordsMVC/.idea/indexLayout.xml (added)
-
KernelRecordsMVC.Application/KernelRecordsMVC.Application.csproj (added)
-
KernelRecordsMVC.Application/Services/AccountService.cs (added)
-
KernelRecordsMVC.Application/Services/OrderService.cs (added)
-
KernelRecordsMVC.Application/Services/ProductService.cs (added)
-
KernelRecordsMVC.Application/Services/ReleaseService.cs (added)
-
KernelRecordsMVC.Application/ViewModels/CartItemViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/CartViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/CreateProductViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/EditProductViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/LoginViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/RegisterViewModel.cs (added)
-
KernelRecordsMVC.Application/bin/Debug/net8.0/KernelRecordsMVC.Application.deps.json (added)
-
KernelRecordsMVC.Application/bin/Debug/net8.0/KernelRecordsMVC.Application.dll (added)
-
KernelRecordsMVC.Application/bin/Debug/net8.0/KernelRecordsMVC.Application.pdb (added)
-
KernelRecordsMVC.Application/bin/Debug/net8.0/KernelRecordsMVC.Domain.dll (added)
-
KernelRecordsMVC.Application/bin/Debug/net8.0/KernelRecordsMVC.Domain.pdb (added)
-
KernelRecordsMVC.Application/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs (added)
-
KernelRecordsMVC.Application/obj/Debug/net8.0/KernelRe.C07FDBC1.Up2Date (added)
-
KernelRecordsMVC.Application/obj/Debug/net8.0/KernelRecordsMVC.Application.AssemblyInfo.cs (added)
-
KernelRecordsMVC.Application/obj/Debug/net8.0/KernelRecordsMVC.Application.AssemblyInfoInputs.cache (added)
-
KernelRecordsMVC.Application/obj/Debug/net8.0/KernelRecordsMVC.Application.GeneratedMSBuildEditorConfig.editorconfig (added)
-
KernelRecordsMVC.Application/obj/Debug/net8.0/KernelRecordsMVC.Application.GlobalUsings.g.cs (added)
-
KernelRecordsMVC.Application/obj/Debug/net8.0/KernelRecordsMVC.Application.assets.cache (added)
-
KernelRecordsMVC.Application/obj/Debug/net8.0/KernelRecordsMVC.Application.csproj.AssemblyReference.cache (added)
-
KernelRecordsMVC.Application/obj/Debug/net8.0/KernelRecordsMVC.Application.csproj.CoreCompileInputs.cache (added)
-
KernelRecordsMVC.Application/obj/Debug/net8.0/KernelRecordsMVC.Application.csproj.FileListAbsolute.txt (added)
-
KernelRecordsMVC.Application/obj/Debug/net8.0/KernelRecordsMVC.Application.dll (added)
-
KernelRecordsMVC.Application/obj/Debug/net8.0/KernelRecordsMVC.Application.pdb (added)
-
KernelRecordsMVC.Application/obj/Debug/net8.0/ref/KernelRecordsMVC.Application.dll (added)
-
KernelRecordsMVC.Application/obj/Debug/net8.0/refint/KernelRecordsMVC.Application.dll (added)
-
KernelRecordsMVC.Application/obj/KernelRecordsMVC.Application.csproj.nuget.dgspec.json (added)
-
KernelRecordsMVC.Application/obj/KernelRecordsMVC.Application.csproj.nuget.g.props (added)
-
KernelRecordsMVC.Application/obj/KernelRecordsMVC.Application.csproj.nuget.g.targets (added)
-
KernelRecordsMVC.Application/obj/project.assets.json (added)
-
KernelRecordsMVC.Application/obj/project.nuget.cache (added)
-
KernelRecordsMVC.Application/obj/project.packagespec.json (added)
-
KernelRecordsMVC.Application/obj/rider.project.model.nuget.info (added)
-
KernelRecordsMVC.Application/obj/rider.project.restore.info (added)
-
KernelRecordsMVC.Domain/Enums/AdminType.cs (added)
-
KernelRecordsMVC.Domain/Enums/ArtistReleaseType.cs (added)
-
KernelRecordsMVC.Domain/Enums/ModificationType.cs (added)
-
KernelRecordsMVC.Domain/Enums/OrderStatusType.cs (added)
-
KernelRecordsMVC.Domain/Enums/PaymentMethodType.cs (added)
-
KernelRecordsMVC.Domain/Enums/ProductFormat.cs (added)
-
KernelRecordsMVC.Domain/KernelRecordsMVC.Domain.csproj (added)
-
KernelRecordsMVC.Domain/Models/Admin.cs (added)
-
KernelRecordsMVC.Domain/Models/Album.cs (added)
-
KernelRecordsMVC.Domain/Models/AlbumSong.cs (added)
-
KernelRecordsMVC.Domain/Models/Artist.cs (added)
-
KernelRecordsMVC.Domain/Models/Consumer.cs (added)
-
KernelRecordsMVC.Domain/Models/ErrorViewModel.cs (added)
-
KernelRecordsMVC.Domain/Models/Modification.cs (added)
-
KernelRecordsMVC.Domain/Models/ModificationProduct.cs (added)
-
KernelRecordsMVC.Domain/Models/Order.cs (added)
-
KernelRecordsMVC.Domain/Models/OrderProduct.cs (added)
-
KernelRecordsMVC.Domain/Models/Product.cs (added)
-
KernelRecordsMVC.Domain/Models/Release.cs (added)
-
KernelRecordsMVC.Domain/Models/ReleaseArtist.cs (added)
-
KernelRecordsMVC.Domain/Models/SingleFeature.cs (added)
-
KernelRecordsMVC.Domain/Models/SingleRelease.cs (added)
-
KernelRecordsMVC.Domain/Models/Song.cs (added)
-
KernelRecordsMVC.Domain/Models/SongArtist.cs (added)
-
KernelRecordsMVC.Domain/Models/User.cs (added)
-
KernelRecordsMVC.Domain/Models/Wishlist.cs (added)
-
KernelRecordsMVC.Domain/Models/WishlistProduct.cs (added)
-
KernelRecordsMVC.Domain/bin/Debug/net8.0/KernelRecordsMVC.Domain.deps.json (added)
-
KernelRecordsMVC.Domain/bin/Debug/net8.0/KernelRecordsMVC.Domain.dll (added)
-
KernelRecordsMVC.Domain/bin/Debug/net8.0/KernelRecordsMVC.Domain.pdb (added)
-
KernelRecordsMVC.Domain/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs (added)
-
KernelRecordsMVC.Domain/obj/Debug/net8.0/KernelRecordsMVC.Domain.AssemblyInfo.cs (added)
-
KernelRecordsMVC.Domain/obj/Debug/net8.0/KernelRecordsMVC.Domain.AssemblyInfoInputs.cache (added)
-
KernelRecordsMVC.Domain/obj/Debug/net8.0/KernelRecordsMVC.Domain.GeneratedMSBuildEditorConfig.editorconfig (added)
-
KernelRecordsMVC.Domain/obj/Debug/net8.0/KernelRecordsMVC.Domain.GlobalUsings.g.cs (added)
-
KernelRecordsMVC.Domain/obj/Debug/net8.0/KernelRecordsMVC.Domain.assets.cache (added)
-
KernelRecordsMVC.Domain/obj/Debug/net8.0/KernelRecordsMVC.Domain.csproj.AssemblyReference.cache (added)
-
KernelRecordsMVC.Domain/obj/Debug/net8.0/KernelRecordsMVC.Domain.csproj.CoreCompileInputs.cache (added)
-
KernelRecordsMVC.Domain/obj/Debug/net8.0/KernelRecordsMVC.Domain.csproj.FileListAbsolute.txt (added)
-
KernelRecordsMVC.Domain/obj/Debug/net8.0/KernelRecordsMVC.Domain.dll (added)
-
KernelRecordsMVC.Domain/obj/Debug/net8.0/KernelRecordsMVC.Domain.pdb (added)
-
KernelRecordsMVC.Domain/obj/Debug/net8.0/ref/KernelRecordsMVC.Domain.dll (added)
-
KernelRecordsMVC.Domain/obj/Debug/net8.0/refint/KernelRecordsMVC.Domain.dll (added)
-
KernelRecordsMVC.Domain/obj/KernelRecordsMVC.Domain.csproj.nuget.dgspec.json (added)
-
KernelRecordsMVC.Domain/obj/KernelRecordsMVC.Domain.csproj.nuget.g.props (added)
-
KernelRecordsMVC.Domain/obj/KernelRecordsMVC.Domain.csproj.nuget.g.targets (added)
-
KernelRecordsMVC.Domain/obj/project.assets.json (added)
-
KernelRecordsMVC.Domain/obj/project.nuget.cache (added)
-
KernelRecordsMVC.Domain/obj/project.packagespec.json (added)
-
KernelRecordsMVC.Domain/obj/rider.project.model.nuget.info (added)
-
KernelRecordsMVC.Domain/obj/rider.project.restore.info (added)
-
KernelRecordsMVC.Infrastructure/Configurations/OrderConfiguration.cs (added)
-
KernelRecordsMVC.Infrastructure/Configurations/ProductConfiguration.cs (added)
-
KernelRecordsMVC.Infrastructure/Configurations/ReleaseConfiguration.cs (added)
-
KernelRecordsMVC.Infrastructure/Data/KernelRecordsContext.cs (added)
-
KernelRecordsMVC.Infrastructure/KernelRecordsMVC.Infrastructure.csproj (added)
-
KernelRecordsMVC.Infrastructure/Repositories/IOrderRepository.cs (added)
-
KernelRecordsMVC.Infrastructure/Repositories/IProductRepository.cs (added)
-
KernelRecordsMVC.Infrastructure/Repositories/IReleaseRepository.cs (added)
-
KernelRecordsMVC.Infrastructure/Repositories/OrderRepository.cs (added)
-
KernelRecordsMVC.Infrastructure/Repositories/ProductRepository.cs (added)
-
KernelRecordsMVC.Infrastructure/Repositories/ReleaseRepository.cs (added)
-
KernelRecordsMVC.Infrastructure/bin/Debug/net8.0/KernelRecordsMVC.Application.dll (added)
-
KernelRecordsMVC.Infrastructure/bin/Debug/net8.0/KernelRecordsMVC.Application.pdb (added)
-
KernelRecordsMVC.Infrastructure/bin/Debug/net8.0/KernelRecordsMVC.Domain.dll (added)
-
KernelRecordsMVC.Infrastructure/bin/Debug/net8.0/KernelRecordsMVC.Domain.pdb (added)
-
KernelRecordsMVC.Infrastructure/bin/Debug/net8.0/KernelRecordsMVC.Infrastructure.deps.json (added)
-
KernelRecordsMVC.Infrastructure/bin/Debug/net8.0/KernelRecordsMVC.Infrastructure.dll (added)
-
KernelRecordsMVC.Infrastructure/bin/Debug/net8.0/KernelRecordsMVC.Infrastructure.pdb (added)
-
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs (added)
-
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/KernelRe.F712F941.Up2Date (added)
-
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.AssemblyInfo.cs (added)
-
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.AssemblyInfoInputs.cache (added)
-
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig (added)
-
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.GlobalUsings.g.cs (added)
-
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.assets.cache (added)
-
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.csproj.AssemblyReference.cache (added)
-
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.csproj.CoreCompileInputs.cache (added)
-
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.csproj.FileListAbsolute.txt (added)
-
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.dll (added)
-
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/KernelRecordsMVC.Infrastructure.pdb (added)
-
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/ref/KernelRecordsMVC.Infrastructure.dll (added)
-
KernelRecordsMVC.Infrastructure/obj/Debug/net8.0/refint/KernelRecordsMVC.Infrastructure.dll (added)
-
KernelRecordsMVC.Infrastructure/obj/KernelRecordsMVC.Infrastructure.csproj.nuget.dgspec.json (added)
-
KernelRecordsMVC.Infrastructure/obj/KernelRecordsMVC.Infrastructure.csproj.nuget.g.props (added)
-
KernelRecordsMVC.Infrastructure/obj/KernelRecordsMVC.Infrastructure.csproj.nuget.g.targets (added)
-
KernelRecordsMVC.Infrastructure/obj/project.assets.json (added)
-
KernelRecordsMVC.Infrastructure/obj/project.nuget.cache (added)
-
KernelRecordsMVC.Infrastructure/obj/project.packagespec.json (added)
-
KernelRecordsMVC.Infrastructure/obj/rider.project.model.nuget.info (added)
-
KernelRecordsMVC.Infrastructure/obj/rider.project.restore.info (added)
-
KernelRecordsMVC.Web/Controllers/AccountController.cs (added)
-
KernelRecordsMVC.Web/Controllers/AdminController.cs (added)
-
KernelRecordsMVC.Web/Controllers/HomeController.cs (added)
-
KernelRecordsMVC.Web/Controllers/OrderController.cs (added)
-
KernelRecordsMVC.Web/Controllers/ReleaseController.cs (added)
-
KernelRecordsMVC.Web/KernelRecordsMVC.Web.csproj (added)
-
KernelRecordsMVC.Web/Program.cs (added)
-
KernelRecordsMVC.Web/Properties/launchSettings.json (added)
-
KernelRecordsMVC.Web/Views/Account/Login.cshtml (added)
-
KernelRecordsMVC.Web/Views/Account/Register.cshtml (added)
-
KernelRecordsMVC.Web/Views/Admin/CreateProduct.cshtml (added)
-
KernelRecordsMVC.Web/Views/Admin/EditProduct.cshtml (added)
-
KernelRecordsMVC.Web/Views/Admin/Index.cshtml (added)
-
KernelRecordsMVC.Web/Views/Admin/Products.cshtml (added)
-
KernelRecordsMVC.Web/Views/Home/Index.cshtml (added)
-
KernelRecordsMVC.Web/Views/Home/Privacy.cshtml (added)
-
KernelRecordsMVC.Web/Views/Order/Cart.cshtml (added)
-
KernelRecordsMVC.Web/Views/Release/Details.cshtml (added)
-
KernelRecordsMVC.Web/Views/Release/Index.cshtml (added)
-
KernelRecordsMVC.Web/Views/Shared/Error.cshtml (added)
-
KernelRecordsMVC.Web/Views/Shared/_Layout.cshtml (added)
-
KernelRecordsMVC.Web/Views/Shared/_Layout.cshtml.css (added)
-
KernelRecordsMVC.Web/Views/Shared/_ValidationScriptsPartial.cshtml (added)
-
KernelRecordsMVC.Web/Views/_ViewImports.cshtml (added)
-
KernelRecordsMVC.Web/Views/_ViewStart.cshtml (added)
-
KernelRecordsMVC.Web/appsettings.Development.json (added)
-
KernelRecordsMVC.Web/appsettings.json (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/KernelRecordsMVC.Application.dll (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/KernelRecordsMVC.Application.pdb (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/KernelRecordsMVC.Domain.dll (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/KernelRecordsMVC.Domain.pdb (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/KernelRecordsMVC.Infrastructure.dll (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/KernelRecordsMVC.Infrastructure.pdb (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/KernelRecordsMVC.Web.deps.json (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/KernelRecordsMVC.Web.dll (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/KernelRecordsMVC.Web.exe (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/KernelRecordsMVC.Web.pdb (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/KernelRecordsMVC.Web.runtimeconfig.json (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/KernelRecordsMVC.Web.staticwebassets.runtime.json (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/Npgsql.dll (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/appsettings.Development.json (added)
-
KernelRecordsMVC.Web/bin/Debug/net8.0/appsettings.json (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRe.DC3D6085.Up2Date (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.AssemblyInfo.cs (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.AssemblyInfoInputs.cache (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.GeneratedMSBuildEditorConfig.editorconfig (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.GlobalUsings.g.cs (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.MvcApplicationPartsAssemblyInfo.cache (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.RazorAssemblyInfo.cache (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.RazorAssemblyInfo.cs (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.assets.cache (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.csproj.AssemblyReference.cache (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.csproj.CoreCompileInputs.cache (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.csproj.FileListAbsolute.txt (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.dll (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.genruntimeconfig.cache (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.pdb (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/apphost.exe (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/ref/KernelRecordsMVC.Web.dll (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/refint/KernelRecordsMVC.Web.dll (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/scopedcss/Views/Shared/_Layout.cshtml.rz.scp.css (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/scopedcss/bundle/KernelRecordsMVC.Web.styles.css (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/scopedcss/projectbundle/KernelRecordsMVC.Web.bundle.scp.css (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/staticwebassets.build.json (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/staticwebassets.development.json (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/staticwebassets.pack.json (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/staticwebassets/msbuild.KernelRecordsMVC.Web.Microsoft.AspNetCore.StaticWebAssets.props (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/staticwebassets/msbuild.build.KernelRecordsMVC.Web.props (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.KernelRecordsMVC.Web.props (added)
-
KernelRecordsMVC.Web/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.KernelRecordsMVC.Web.props (added)
-
KernelRecordsMVC.Web/obj/KernelRecordsMVC.Web.csproj.nuget.dgspec.json (added)
-
KernelRecordsMVC.Web/obj/KernelRecordsMVC.Web.csproj.nuget.g.props (added)
-
KernelRecordsMVC.Web/obj/KernelRecordsMVC.Web.csproj.nuget.g.targets (added)
-
KernelRecordsMVC.Web/obj/project.assets.json (added)
-
KernelRecordsMVC.Web/obj/project.nuget.cache (added)
-
KernelRecordsMVC.Web/obj/project.packagespec.json (added)
-
KernelRecordsMVC.Web/obj/rider.project.model.nuget.info (added)
-
KernelRecordsMVC.Web/obj/rider.project.restore.info (added)
-
KernelRecordsMVC.Web/wwwroot/css/site.css (added)
-
KernelRecordsMVC.Web/wwwroot/favicon.ico (added)
-
KernelRecordsMVC.Web/wwwroot/js/site.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/LICENSE (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery-validation/LICENSE.md (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery/LICENSE.txt (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery/dist/jquery.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery/dist/jquery.min.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery/dist/jquery.min.map (added)
-
KernelRecordsMVC.csproj (added)
-
KernelRecordsMVC.sln (added)
-
KernelRecordsMVC/KernelRecordsMVC.csproj (added)
-
KernelRecordsMVC/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs (added)
-
KernelRecordsMVC/obj/Debug/net8.0/KernelRecordsMVC.AssemblyInfo.cs (added)
-
KernelRecordsMVC/obj/Debug/net8.0/KernelRecordsMVC.AssemblyInfoInputs.cache (added)
-
KernelRecordsMVC/obj/Debug/net8.0/KernelRecordsMVC.GeneratedMSBuildEditorConfig.editorconfig (added)
-
KernelRecordsMVC/obj/Debug/net8.0/KernelRecordsMVC.GlobalUsings.g.cs (added)
-
KernelRecordsMVC/obj/Debug/net8.0/KernelRecordsMVC.RazorAssemblyInfo.cache (added)
-
KernelRecordsMVC/obj/Debug/net8.0/KernelRecordsMVC.RazorAssemblyInfo.cs (added)
-
KernelRecordsMVC/obj/Debug/net8.0/KernelRecordsMVC.assets.cache (added)
-
KernelRecordsMVC/obj/KernelRecordsMVC.csproj.nuget.dgspec.json (added)
-
KernelRecordsMVC/obj/KernelRecordsMVC.csproj.nuget.g.props (added)
-
KernelRecordsMVC/obj/KernelRecordsMVC.csproj.nuget.g.targets (added)
-
KernelRecordsMVC/obj/project.assets.json (added)
-
KernelRecordsMVC/obj/project.nuget.cache (added)
-
KernelRecordsMVC/obj/project.packagespec.json (added)
-
KernelRecordsMVC/obj/rider.project.restore.info (added)
-
Program.cs (added)
-
Properties/launchSettings.json (added)
-
appsettings.Development.json (added)
-
appsettings.json (added)
-
obj/KernelRecordsMVC.csproj.nuget.dgspec.json (added)
-
obj/KernelRecordsMVC.csproj.nuget.g.props (added)
-
obj/KernelRecordsMVC.csproj.nuget.g.targets (added)
-
obj/project.assets.json (added)
-
obj/project.nuget.cache (added)
Note:
See TracChangeset
for help on using the changeset viewer.
