└── Applications ├── basics ├── .vs │ ├── ProjectEvaluation │ │ ├── basics.metadata.v6.1 │ │ └── basics.projects.v6.1 │ └── basics │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ ├── FileContentIndex │ │ ├── 4880273b-d7ef-444b-ad3f-113b2d11a874.vsidx │ │ ├── 7e27c941-f171-4f7a-ae0e-e167ff7f138b.vsidx │ │ ├── d7393fad-225d-4dfc-ad29-e9a51ee592ff.vsidx │ │ ├── feb2d816-c6bb-45dd-bade-d50f41c8e0f8.vsidx │ │ └── read.lock │ │ ├── config │ │ └── applicationhost.config │ │ └── v17 │ │ ├── .futdcache.v2 │ │ └── .suo ├── HelloWebAPI │ ├── Controllers │ │ └── HomeController.cs │ ├── HelloWebAPI.csproj │ ├── Models │ │ └── ResponseModel.cs │ ├── Program.cs │ ├── Properties │ │ ├── launchSettings.Devolopment.json │ │ ├── launchSettings.Production.json │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── HelloWebAPI.deps.json │ │ │ ├── HelloWebAPI.dll │ │ │ ├── HelloWebAPI.exe │ │ │ ├── HelloWebAPI.pdb │ │ │ ├── HelloWebAPI.runtimeconfig.json │ │ │ ├── Microsoft.OpenApi.dll │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ └── obj │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── HelloWebAPI.AssemblyInfo.cs │ │ │ ├── HelloWebAPI.AssemblyInfoInputs.cache │ │ │ ├── HelloWebAPI.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── HelloWebAPI.GlobalUsings.g.cs │ │ │ ├── HelloWebAPI.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── HelloWebAPI.MvcApplicationPartsAssemblyInfo.cs │ │ │ ├── HelloWebAPI.assets.cache │ │ │ ├── HelloWebAPI.csproj.AssemblyReference.cache │ │ │ ├── HelloWebAPI.csproj.BuildWithSkipAnalyzers │ │ │ ├── HelloWebAPI.csproj.CopyComplete │ │ │ ├── HelloWebAPI.csproj.CoreCompileInputs.cache │ │ │ ├── HelloWebAPI.csproj.FileListAbsolute.txt │ │ │ ├── HelloWebAPI.dll │ │ │ ├── HelloWebAPI.genruntimeconfig.cache │ │ │ ├── HelloWebAPI.pdb │ │ │ ├── apphost.exe │ │ │ ├── ref │ │ │ └── HelloWebAPI.dll │ │ │ ├── refint │ │ │ └── HelloWebAPI.dll │ │ │ ├── staticwebassets.build.json │ │ │ └── staticwebassets │ │ │ ├── msbuild.build.HelloWebAPI.props │ │ │ ├── msbuild.buildMultiTargeting.HelloWebAPI.props │ │ │ └── msbuild.buildTransitive.HelloWebAPI.props │ │ ├── HelloWebAPI.csproj.nuget.dgspec.json │ │ ├── HelloWebAPI.csproj.nuget.g.props │ │ ├── HelloWebAPI.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── ProductApp │ ├── Controllers │ │ └── ProductsController.cs │ ├── Models │ │ └── Product.cs │ ├── ProductApp.csproj │ ├── ProductApp.csproj.user │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.Production.Development.json │ ├── appsettings.Production.json │ ├── appsettings.json │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── Microsoft.OpenApi.dll │ │ │ ├── ProductApp.deps.json │ │ │ ├── ProductApp.dll │ │ │ ├── ProductApp.exe │ │ │ ├── ProductApp.pdb │ │ │ ├── ProductApp.runtimeconfig.json │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.Production.Development.json │ │ │ ├── appsettings.Production.json │ │ │ └── appsettings.json │ └── obj │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── ProductApp.AssemblyInfo.cs │ │ │ ├── ProductApp.AssemblyInfoInputs.cache │ │ │ ├── ProductApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── ProductApp.GlobalUsings.g.cs │ │ │ ├── ProductApp.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── ProductApp.MvcApplicationPartsAssemblyInfo.cs │ │ │ ├── ProductApp.assets.cache │ │ │ ├── ProductApp.csproj.AssemblyReference.cache │ │ │ ├── ProductApp.csproj.BuildWithSkipAnalyzers │ │ │ ├── ProductApp.csproj.CopyComplete │ │ │ ├── ProductApp.csproj.CoreCompileInputs.cache │ │ │ ├── ProductApp.csproj.FileListAbsolute.txt │ │ │ ├── ProductApp.dll │ │ │ ├── ProductApp.genruntimeconfig.cache │ │ │ ├── ProductApp.pdb │ │ │ ├── apphost.exe │ │ │ ├── ref │ │ │ └── ProductApp.dll │ │ │ ├── refint │ │ │ └── ProductApp.dll │ │ │ ├── staticwebassets.build.json │ │ │ └── staticwebassets │ │ │ ├── msbuild.build.ProductApp.props │ │ │ ├── msbuild.buildMultiTargeting.ProductApp.props │ │ │ └── msbuild.buildTransitive.ProductApp.props │ │ ├── ProductApp.csproj.nuget.dgspec.json │ │ ├── ProductApp.csproj.nuget.g.props │ │ ├── ProductApp.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── basics.sln ├── hello_world_api_ui │ ├── Controllers │ │ └── WeatherForecastController.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── hello_world_api_ui.csproj │ └── obj │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── hello_world_api_ui.AssemblyInfo.cs │ │ │ ├── hello_world_api_ui.AssemblyInfoInputs.cache │ │ │ ├── hello_world_api_ui.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── hello_world_api_ui.GlobalUsings.g.cs │ │ │ ├── hello_world_api_ui.assets.cache │ │ │ └── hello_world_api_ui.csproj.AssemblyReference.cache │ │ ├── hello_world_api_ui.csproj.nuget.dgspec.json │ │ ├── hello_world_api_ui.csproj.nuget.g.props │ │ ├── hello_world_api_ui.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── hello_world_cli │ ├── Controllers │ └── WeatherForecastController.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ └── Debug │ │ └── net7.0 │ │ ├── Microsoft.AspNetCore.OpenApi.dll │ │ ├── Microsoft.OpenApi.dll │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── hello_world_cli.deps.json │ │ ├── hello_world_cli.dll │ │ ├── hello_world_cli.exe │ │ ├── hello_world_cli.pdb │ │ └── hello_world_cli.runtimeconfig.json │ ├── hello_world_cli.csproj │ ├── hello_world_cli.csproj.user │ └── obj │ ├── Debug │ └── net7.0 │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ ├── apphost.exe │ │ ├── hello_world_cli.AssemblyInfo.cs │ │ ├── hello_world_cli.AssemblyInfoInputs.cache │ │ ├── hello_world_cli.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── hello_world_cli.GlobalUsings.g.cs │ │ ├── hello_world_cli.MvcApplicationPartsAssemblyInfo.cache │ │ ├── hello_world_cli.MvcApplicationPartsAssemblyInfo.cs │ │ ├── hello_world_cli.assets.cache │ │ ├── hello_world_cli.csproj.AssemblyReference.cache │ │ ├── hello_world_cli.csproj.CopyComplete │ │ ├── hello_world_cli.csproj.CoreCompileInputs.cache │ │ ├── hello_world_cli.csproj.FileListAbsolute.txt │ │ ├── hello_world_cli.dll │ │ ├── hello_world_cli.genruntimeconfig.cache │ │ ├── hello_world_cli.pdb │ │ ├── ref │ │ └── hello_world_cli.dll │ │ ├── refint │ │ └── hello_world_cli.dll │ │ ├── staticwebassets.build.json │ │ └── staticwebassets │ │ ├── msbuild.build.hello_world_cli.props │ │ ├── msbuild.buildMultiTargeting.hello_world_cli.props │ │ └── msbuild.buildTransitive.hello_world_cli.props │ ├── hello_world_cli.csproj.nuget.dgspec.json │ ├── hello_world_cli.csproj.nuget.g.props │ ├── hello_world_cli.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── bookDemo ├── .vs │ ├── ProjectEvaluation │ │ ├── bookdemo.metadata.v6.1 │ │ └── bookdemo.projects.v6.1 │ └── bookDemo │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ ├── FileContentIndex │ │ ├── 068a4826-3dc6-4d6b-a788-abbc8ff6b246.vsidx │ │ ├── 1fb6ae57-991e-48f1-b906-a786b5a07081.vsidx │ │ ├── 25e3f557-e8e4-474b-a6f8-f8cd976c548b.vsidx │ │ ├── 5464608d-e04b-4dc1-a9da-73c755336bf5.vsidx │ │ └── read.lock │ │ ├── config │ │ └── applicationhost.config │ │ └── v17 │ │ ├── .futdcache.v2 │ │ └── .suo ├── Controllers │ └── BooksController.cs ├── Data │ └── ApplicationContext.cs ├── Models │ └── Book.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── net7.0 │ │ ├── Microsoft.AspNetCore.JsonPatch.dll │ │ ├── Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ ├── Microsoft.OpenApi.dll │ │ ├── Newtonsoft.Json.Bson.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bookDemo.deps.json │ │ ├── bookDemo.dll │ │ ├── bookDemo.exe │ │ ├── bookDemo.pdb │ │ └── bookDemo.runtimeconfig.json ├── bookDemo.csproj ├── bookDemo.csproj.user ├── bookDemo.sln └── obj │ ├── Debug │ └── net7.0 │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ ├── apphost.exe │ │ ├── bookDemo.AssemblyInfo.cs │ │ ├── bookDemo.AssemblyInfoInputs.cache │ │ ├── bookDemo.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── bookDemo.GlobalUsings.g.cs │ │ ├── bookDemo.MvcApplicationPartsAssemblyInfo.cache │ │ ├── bookDemo.MvcApplicationPartsAssemblyInfo.cs │ │ ├── bookDemo.assets.cache │ │ ├── bookDemo.csproj.AssemblyReference.cache │ │ ├── bookDemo.csproj.BuildWithSkipAnalyzers │ │ ├── bookDemo.csproj.CopyComplete │ │ ├── bookDemo.csproj.CoreCompileInputs.cache │ │ ├── bookDemo.csproj.FileListAbsolute.txt │ │ ├── bookDemo.dll │ │ ├── bookDemo.genruntimeconfig.cache │ │ ├── bookDemo.pdb │ │ ├── ref │ │ └── bookDemo.dll │ │ ├── refint │ │ └── bookDemo.dll │ │ ├── staticwebassets.build.json │ │ └── staticwebassets │ │ ├── msbuild.build.bookDemo.props │ │ ├── msbuild.buildMultiTargeting.bookDemo.props │ │ └── msbuild.buildTransitive.bookDemo.props │ ├── bookDemo.csproj.nuget.dgspec.json │ ├── bookDemo.csproj.nuget.g.props │ ├── bookDemo.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache └── bsStoreApp ├── .vs ├── ProjectEvaluation │ ├── bsstoreapp.metadata.v7.bin │ └── bsstoreapp.projects.v7.bin ├── ProjectSettings.json ├── VSWorkspaceState.json ├── bsStoreApp │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ ├── FileContentIndex │ │ ├── 5093a07f-c316-4da5-8b24-36d682ad2a29.vsidx │ │ ├── bc479368-5ab5-46cc-91b7-873be9b53917.vsidx │ │ ├── cdd277a8-6159-4aaa-a19b-16437b0bbb5d.vsidx │ │ ├── f45bb4a9-12c3-4297-b191-aa9750b929a0.vsidx │ │ └── read.lock │ ├── config │ │ └── applicationhost.config │ └── v17 │ │ ├── .futdcache.v2 │ │ ├── .suo │ │ ├── .wsuo │ │ └── HierarchyCache.v1.txt └── slnx.sqlite ├── Entities ├── DTOs │ ├── BookDto.cs │ ├── BookDtoForInsertion.cs │ ├── BookDtoForManipulation.cs │ ├── BookDtoForUpdate.cs │ ├── LinkParameters.cs │ ├── TokenDto.cs │ ├── UserForAuthenticationDto.cs │ └── UserForRegistrationDto.cs ├── Entities.csproj ├── ErrorModel │ └── ErrorDetails.cs ├── Exceptions │ ├── BadRequestException.cs │ ├── BookNotFoundException.cs │ ├── CategoryNotFoundException.cs │ ├── NotFoundException.cs │ ├── PriceOutOfRangeBadRequestException.cs │ └── RefreshTokenBadRequestException.cs ├── LinkModels │ ├── Link.cs │ ├── LinkCollectionWrapper.cs │ ├── LinkResourceBase.cs │ └── LinkResponse.cs ├── LogModel │ └── LodDetails.cs ├── Models │ ├── Book.cs │ ├── Category.cs │ ├── Entity.cs │ ├── ShapedEntity.cs │ └── User.cs ├── RequestFeatures │ ├── BookParameters.cs │ ├── MetaData.cs │ ├── PagedList.cs │ └── RequestParameters.cs ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── Entities.deps.json │ │ ├── Entities.dll │ │ └── Entities.pdb └── obj │ ├── Debug │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Entities.AssemblyInfo.cs │ │ ├── Entities.AssemblyInfoInputs.cache │ │ ├── Entities.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Entities.GlobalUsings.g.cs │ │ ├── Entities.assets.cache │ │ ├── Entities.csproj.AssemblyReference.cache │ │ ├── Entities.csproj.BuildWithSkipAnalyzers │ │ ├── Entities.csproj.CoreCompileInputs.cache │ │ ├── Entities.csproj.FileListAbsolute.txt │ │ ├── Entities.dll │ │ ├── Entities.pdb │ │ ├── ref │ │ └── Entities.dll │ │ └── refint │ │ └── Entities.dll │ ├── Entities.csproj.nuget.dgspec.json │ ├── Entities.csproj.nuget.g.props │ ├── Entities.csproj.nuget.g.targets │ ├── Release │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Entities.AssemblyInfo.cs │ │ ├── Entities.AssemblyInfoInputs.cache │ │ ├── Entities.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Entities.GlobalUsings.g.cs │ │ ├── Entities.assets.cache │ │ └── Entities.csproj.AssemblyReference.cache │ ├── project.assets.json │ └── project.nuget.cache ├── Presentation ├── ActionFilters │ ├── LogFilterAttribute.cs │ ├── ValidateMediaTypeAttribute.cs │ └── ValidationFilterAttribute.cs ├── AssemblyRefence..cs ├── Controllers │ ├── AuthenticationController.cs │ ├── BooksController.cs │ ├── BooksV2Controller.cs │ ├── CategoriesController.cs │ ├── FilesController.cs │ └── RootController.cs ├── Presentation.csproj ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── Entities.dll │ │ ├── Entities.pdb │ │ ├── Presentation.deps.json │ │ ├── Presentation.dll │ │ ├── Presentation.pdb │ │ ├── Repositories.dll │ │ ├── Repositories.pdb │ │ ├── Services.dll │ │ └── Services.pdb └── obj │ ├── Debug │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Presentation.AssemblyInfo.cs │ │ ├── Presentation.AssemblyInfoInputs.cache │ │ ├── Presentation.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Presentation.GlobalUsings.g.cs │ │ ├── Presentation.assets.cache │ │ ├── Presentation.csproj.AssemblyReference.cache │ │ ├── Presentation.csproj.BuildWithSkipAnalyzers │ │ ├── Presentation.csproj.CopyComplete │ │ ├── Presentation.csproj.CoreCompileInputs.cache │ │ ├── Presentation.csproj.FileListAbsolute.txt │ │ ├── Presentation.dll │ │ ├── Presentation.pdb │ │ ├── ref │ │ └── Presentation.dll │ │ └── refint │ │ └── Presentation.dll │ ├── Presentation.csproj.nuget.dgspec.json │ ├── Presentation.csproj.nuget.g.props │ ├── Presentation.csproj.nuget.g.targets │ ├── Release │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Presentation.AssemblyInfo.cs │ │ ├── Presentation.AssemblyInfoInputs.cache │ │ ├── Presentation.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Presentation.GlobalUsings.g.cs │ │ ├── Presentation.assets.cache │ │ └── Presentation.csproj.AssemblyReference.cache │ ├── project.assets.json │ └── project.nuget.cache ├── Repositories ├── Config │ ├── BookConfig.cs │ ├── CategoryConfig.cs │ └── RoleConfiguration.cs ├── Contracts │ ├── IBookRepository.cs │ ├── ICategoryRepository.cs │ ├── IRepositoryBase.cs │ └── IRepositoryManager.cs ├── EFCore │ ├── BookRepository.cs │ ├── CategoryRepository.cs │ ├── RepositoryBase.cs │ ├── RepositoryContext.cs │ └── RepositoryManager.cs ├── Extensions │ ├── BookRepositoryExtensions.cs │ └── OrderQueryBuilder.cs ├── Repositories.csproj ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── Entities.dll │ │ ├── Entities.pdb │ │ ├── Repositories.deps.json │ │ ├── Repositories.dll │ │ └── Repositories.pdb └── obj │ ├── Debug │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Repositories.AssemblyInfo.cs │ │ ├── Repositories.AssemblyInfoInputs.cache │ │ ├── Repositories.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Repositories.GlobalUsings.g.cs │ │ ├── Repositories.assets.cache │ │ ├── Repositories.csproj.AssemblyReference.cache │ │ ├── Repositories.csproj.BuildWithSkipAnalyzers │ │ ├── Repositories.csproj.CopyComplete │ │ ├── Repositories.csproj.CoreCompileInputs.cache │ │ ├── Repositories.csproj.FileListAbsolute.txt │ │ ├── Repositories.dll │ │ ├── Repositories.pdb │ │ ├── ref │ │ └── Repositories.dll │ │ └── refint │ │ └── Repositories.dll │ ├── Release │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Repositories.AssemblyInfo.cs │ │ ├── Repositories.AssemblyInfoInputs.cache │ │ ├── Repositories.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Repositories.GlobalUsings.g.cs │ │ ├── Repositories.assets.cache │ │ └── Repositories.csproj.AssemblyReference.cache │ ├── Repositories.csproj.nuget.dgspec.json │ ├── Repositories.csproj.nuget.g.props │ ├── Repositories.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Services ├── AuthenticationManager.cs ├── BookLinks.cs ├── BookManager.cs ├── CategoryManager.cs ├── Contracts │ ├── IAuthenticationService.cs │ ├── IBookLinks.cs │ ├── IBookService.cs │ ├── ICategoryService.cs │ ├── IDataShaper.cs │ ├── ILoggerService.cs │ └── IServiceManager.cs ├── DataShaper.cs ├── LoggerManager.cs ├── ServiceManager.cs ├── Services.csproj ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── Entities.dll │ │ ├── Entities.pdb │ │ ├── Repositories.dll │ │ ├── Repositories.pdb │ │ ├── Services.deps.json │ │ ├── Services.dll │ │ └── Services.pdb └── obj │ ├── Debug │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Services.AssemblyInfo.cs │ │ ├── Services.AssemblyInfoInputs.cache │ │ ├── Services.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Services.GlobalUsings.g.cs │ │ ├── Services.assets.cache │ │ ├── Services.csproj.AssemblyReference.cache │ │ ├── Services.csproj.BuildWithSkipAnalyzers │ │ ├── Services.csproj.CopyComplete │ │ ├── Services.csproj.CoreCompileInputs.cache │ │ ├── Services.csproj.FileListAbsolute.txt │ │ ├── Services.dll │ │ ├── Services.pdb │ │ ├── ref │ │ └── Services.dll │ │ └── refint │ │ └── Services.dll │ ├── Release │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Services.AssemblyInfo.cs │ │ ├── Services.AssemblyInfoInputs.cache │ │ ├── Services.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Services.GlobalUsings.g.cs │ │ ├── Services.assets.cache │ │ └── Services.csproj.AssemblyReference.cache │ ├── Services.csproj.nuget.dgspec.json │ ├── Services.csproj.nuget.g.props │ ├── Services.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── WebApi ├── ContextFactory │ └── RepositoryContextFactory.cs ├── Extensions │ ├── ExceptionMiddlewareExtensions.cs │ ├── MvcBuilderExtensions.cs │ └── ServicesExtensions.cs ├── Media │ ├── OgrenciLogin.png │ └── Screenshot_1.png ├── Migrations │ ├── 20230617144807_init.Designer.cs │ ├── 20230617144807_init.cs │ ├── 20230617162502_createRelationBetweenBookAndCategory.Designer.cs │ ├── 20230617162502_createRelationBetweenBookAndCategory.cs │ └── RepositoryContextModelSnapshot.cs ├── Presentation │ └── AssemblyRefence.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── ServiceManager.cs ├── Utilities │ ├── AutoMapper │ │ └── MappingProfile.cs │ └── Formatters │ │ └── CsvOutputFormatter.cs ├── WebApi.csproj ├── WebApi.csproj.user ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── AspNetCoreRateLimit.dll │ │ ├── AutoMapper.Extensions.Microsoft.DependencyInjection.dll │ │ ├── AutoMapper.dll │ │ ├── Entities.dll │ │ ├── Entities.pdb │ │ ├── Humanizer.dll │ │ ├── Marvin.Cache.Headers.dll │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll │ │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.dll │ │ ├── Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll │ │ ├── Microsoft.AspNetCore.JsonPatch.dll │ │ ├── Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll │ │ ├── Microsoft.AspNetCore.Mvc.Versioning.dll │ │ ├── Microsoft.Data.SqlClient.dll │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ ├── Microsoft.Extensions.Identity.Core.dll │ │ ├── Microsoft.Extensions.Identity.Stores.dll │ │ ├── Microsoft.Identity.Client.dll │ │ ├── Microsoft.IdentityModel.Abstractions.dll │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ ├── Microsoft.OpenApi.dll │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ ├── NLog.Extensions.Logging.dll │ │ ├── NLog.dll │ │ ├── Newtonsoft.Json.Bson.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── Presentation.dll │ │ ├── Presentation.pdb │ │ ├── Repositories.dll │ │ ├── Repositories.pdb │ │ ├── Services.dll │ │ ├── Services.pdb │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── System.Configuration.ConfigurationManager.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.Drawing.Common.dll │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ ├── System.Linq.Dynamic.Core.dll │ │ ├── System.Runtime.Caching.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ ├── System.Security.Permissions.dll │ │ ├── System.Windows.Extensions.dll │ │ ├── WebApi.deps.json │ │ ├── WebApi.dll │ │ ├── WebApi.exe │ │ ├── WebApi.pdb │ │ ├── WebApi.runtimeconfig.json │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── logs │ │ ├── 2023-03-31_logfile.txt │ │ ├── 2023-04-01_logfile.txt │ │ ├── 2023-04-02_logfile.txt │ │ ├── 2023-04-05_logfile.txt │ │ ├── 2023-04-25_logfile.txt │ │ ├── 2023-04-27_logfile.txt │ │ ├── 2023-05-02_logfile.txt │ │ ├── 2023-05-04_logfile.txt │ │ ├── 2023-05-07_logfile.txt │ │ ├── 2023-05-11_logfile.txt │ │ ├── 2023-05-13_logfile.txt │ │ ├── 2023-05-14_logfile.txt │ │ ├── 2023-05-15_logfile.txt │ │ ├── 2023-05-16_logfile.txt │ │ ├── 2023-05-20_logfile.txt │ │ ├── 2023-05-21_logfile.txt │ │ ├── 2023-05-27_logfile.txt │ │ ├── 2023-05-28_logfile.txt │ │ ├── 2023-05-29_logfile.txt │ │ ├── 2023-06-17_logfile.txt │ │ └── 2023-06-18_logfile.txt │ │ ├── nlog.config │ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ ├── netcoreapp3.0 │ │ │ └── System.Drawing.Common.dll │ │ │ └── netcoreapp3.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ │ ├── win-arm │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-arm64 │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-x64 │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-x86 │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ └── win │ │ └── lib │ │ ├── netcoreapp3.0 │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ ├── System.Drawing.Common.dll │ │ └── System.Windows.Extensions.dll │ │ ├── netcoreapp3.1 │ │ └── Microsoft.Data.SqlClient.dll │ │ └── netstandard2.0 │ │ ├── System.Runtime.Caching.dll │ │ └── System.Security.Cryptography.ProtectedData.dll ├── internal_logs │ └── internallog.txt ├── nlog.config └── obj │ ├── Debug │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── WebApi.AssemblyInfo.cs │ │ ├── WebApi.AssemblyInfoInputs.cache │ │ ├── WebApi.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── WebApi.GlobalUsings.g.cs │ │ ├── WebApi.MvcApplicationPartsAssemblyInfo.cache │ │ ├── WebApi.MvcApplicationPartsAssemblyInfo.cs │ │ ├── WebApi.assets.cache │ │ ├── WebApi.csproj.AssemblyReference.cache │ │ ├── WebApi.csproj.BuildWithSkipAnalyzers │ │ ├── WebApi.csproj.CopyComplete │ │ ├── WebApi.csproj.CoreCompileInputs.cache │ │ ├── WebApi.csproj.FileListAbsolute.txt │ │ ├── WebApi.dll │ │ ├── WebApi.genruntimeconfig.cache │ │ ├── WebApi.pdb │ │ ├── apphost.exe │ │ ├── ref │ │ └── WebApi.dll │ │ ├── refint │ │ └── WebApi.dll │ │ ├── staticwebassets.build.json │ │ └── staticwebassets │ │ ├── msbuild.build.WebApi.props │ │ ├── msbuild.buildMultiTargeting.WebApi.props │ │ └── msbuild.buildTransitive.WebApi.props │ ├── Release │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── WebApi.AssemblyInfo.cs │ │ ├── WebApi.AssemblyInfoInputs.cache │ │ ├── WebApi.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── WebApi.GlobalUsings.g.cs │ │ ├── WebApi.assets.cache │ │ └── WebApi.csproj.AssemblyReference.cache │ ├── WebApi.csproj.nuget.dgspec.json │ ├── WebApi.csproj.nuget.g.props │ ├── WebApi.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── bsStoreApp.sln └── git /Applications/basics/.vs/ProjectEvaluation/basics.metadata.v6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/.vs/ProjectEvaluation/basics.metadata.v6.1 -------------------------------------------------------------------------------- /Applications/basics/.vs/ProjectEvaluation/basics.projects.v6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/.vs/ProjectEvaluation/basics.projects.v6.1 -------------------------------------------------------------------------------- /Applications/basics/.vs/basics/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/.vs/basics/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Applications/basics/.vs/basics/FileContentIndex/4880273b-d7ef-444b-ad3f-113b2d11a874.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/.vs/basics/FileContentIndex/4880273b-d7ef-444b-ad3f-113b2d11a874.vsidx -------------------------------------------------------------------------------- /Applications/basics/.vs/basics/FileContentIndex/7e27c941-f171-4f7a-ae0e-e167ff7f138b.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/.vs/basics/FileContentIndex/7e27c941-f171-4f7a-ae0e-e167ff7f138b.vsidx -------------------------------------------------------------------------------- /Applications/basics/.vs/basics/FileContentIndex/d7393fad-225d-4dfc-ad29-e9a51ee592ff.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/.vs/basics/FileContentIndex/d7393fad-225d-4dfc-ad29-e9a51ee592ff.vsidx -------------------------------------------------------------------------------- /Applications/basics/.vs/basics/FileContentIndex/feb2d816-c6bb-45dd-bade-d50f41c8e0f8.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/.vs/basics/FileContentIndex/feb2d816-c6bb-45dd-bade-d50f41c8e0f8.vsidx -------------------------------------------------------------------------------- /Applications/basics/.vs/basics/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/basics/.vs/basics/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/.vs/basics/config/applicationhost.config -------------------------------------------------------------------------------- /Applications/basics/.vs/basics/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/.vs/basics/v17/.futdcache.v2 -------------------------------------------------------------------------------- /Applications/basics/.vs/basics/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/.vs/basics/v17/.suo -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/HelloWebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/HelloWebAPI.csproj -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/Models/ResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/Models/ResponseModel.cs -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/Program.cs -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/Properties/launchSettings.Devolopment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/Properties/launchSettings.Devolopment.json -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/Properties/launchSettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/Properties/launchSettings.Production.json -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/appsettings.json -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/bin/Debug/net6.0/HelloWebAPI.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/bin/Debug/net6.0/HelloWebAPI.deps.json -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/bin/Debug/net6.0/HelloWebAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/bin/Debug/net6.0/HelloWebAPI.dll -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/bin/Debug/net6.0/HelloWebAPI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/bin/Debug/net6.0/HelloWebAPI.exe -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/bin/Debug/net6.0/HelloWebAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/bin/Debug/net6.0/HelloWebAPI.pdb -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/bin/Debug/net6.0/HelloWebAPI.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/bin/Debug/net6.0/HelloWebAPI.runtimeconfig.json -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/bin/Debug/net6.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/bin/Debug/net6.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/bin/Debug/net6.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/bin/Debug/net6.0/appsettings.Development.json -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/bin/Debug/net6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/bin/Debug/net6.0/appsettings.json -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.AssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 02ea66051955395d7a90ed49d40020f86fc336ed 2 | -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.MvcApplicationPartsAssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.assets.cache -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 640b66eff37a8179ae1ad957c7bab2f8485090cf 2 | -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.dll -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 1b159eaaadfb8739123b3b58b36f9d8ff91443a7 2 | -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/HelloWebAPI.pdb -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/ref/HelloWebAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/ref/HelloWebAPI.dll -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/refint/HelloWebAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/refint/HelloWebAPI.dll -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/staticwebassets.build.json -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/staticwebassets/msbuild.build.HelloWebAPI.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/staticwebassets/msbuild.build.HelloWebAPI.props -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/staticwebassets/msbuild.buildMultiTargeting.HelloWebAPI.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/staticwebassets/msbuild.buildMultiTargeting.HelloWebAPI.props -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/Debug/net6.0/staticwebassets/msbuild.buildTransitive.HelloWebAPI.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/Debug/net6.0/staticwebassets/msbuild.buildTransitive.HelloWebAPI.props -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/HelloWebAPI.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/HelloWebAPI.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/HelloWebAPI.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/HelloWebAPI.csproj.nuget.g.props -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/HelloWebAPI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/HelloWebAPI.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/project.assets.json -------------------------------------------------------------------------------- /Applications/basics/HelloWebAPI/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/HelloWebAPI/obj/project.nuget.cache -------------------------------------------------------------------------------- /Applications/basics/ProductApp/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /Applications/basics/ProductApp/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/Models/Product.cs -------------------------------------------------------------------------------- /Applications/basics/ProductApp/ProductApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/ProductApp.csproj -------------------------------------------------------------------------------- /Applications/basics/ProductApp/ProductApp.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/ProductApp.csproj.user -------------------------------------------------------------------------------- /Applications/basics/ProductApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/Program.cs -------------------------------------------------------------------------------- /Applications/basics/ProductApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /Applications/basics/ProductApp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/appsettings.Development.json -------------------------------------------------------------------------------- /Applications/basics/ProductApp/appsettings.Production.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/appsettings.Production.Development.json -------------------------------------------------------------------------------- /Applications/basics/ProductApp/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/appsettings.Production.json -------------------------------------------------------------------------------- /Applications/basics/ProductApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/appsettings.json -------------------------------------------------------------------------------- /Applications/basics/ProductApp/bin/Debug/net6.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/bin/Debug/net6.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /Applications/basics/ProductApp/bin/Debug/net6.0/ProductApp.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/bin/Debug/net6.0/ProductApp.deps.json -------------------------------------------------------------------------------- /Applications/basics/ProductApp/bin/Debug/net6.0/ProductApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/bin/Debug/net6.0/ProductApp.dll -------------------------------------------------------------------------------- /Applications/basics/ProductApp/bin/Debug/net6.0/ProductApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/bin/Debug/net6.0/ProductApp.exe -------------------------------------------------------------------------------- /Applications/basics/ProductApp/bin/Debug/net6.0/ProductApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/bin/Debug/net6.0/ProductApp.pdb -------------------------------------------------------------------------------- /Applications/basics/ProductApp/bin/Debug/net6.0/ProductApp.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/bin/Debug/net6.0/ProductApp.runtimeconfig.json -------------------------------------------------------------------------------- /Applications/basics/ProductApp/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /Applications/basics/ProductApp/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /Applications/basics/ProductApp/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /Applications/basics/ProductApp/bin/Debug/net6.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/bin/Debug/net6.0/appsettings.Development.json -------------------------------------------------------------------------------- /Applications/basics/ProductApp/bin/Debug/net6.0/appsettings.Production.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/bin/Debug/net6.0/appsettings.Production.Development.json -------------------------------------------------------------------------------- /Applications/basics/ProductApp/bin/Debug/net6.0/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/bin/Debug/net6.0/appsettings.Production.json -------------------------------------------------------------------------------- /Applications/basics/ProductApp/bin/Debug/net6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/bin/Debug/net6.0/appsettings.json -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.AssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 794941082e5154301c1ee006d45b9a217be7390e 2 | -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.MvcApplicationPartsAssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.assets.cache -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | eba23f41aa93c4d1b4250de3e260a7977e6373ec 2 | -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.dll -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | e1f7ec3459cfc39ea4de31c027c350d9ba1abb1b 2 | -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/ProductApp.pdb -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/ref/ProductApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/ref/ProductApp.dll -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/refint/ProductApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/refint/ProductApp.dll -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/staticwebassets.build.json -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/staticwebassets/msbuild.build.ProductApp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/staticwebassets/msbuild.build.ProductApp.props -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/staticwebassets/msbuild.buildMultiTargeting.ProductApp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/staticwebassets/msbuild.buildMultiTargeting.ProductApp.props -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/Debug/net6.0/staticwebassets/msbuild.buildTransitive.ProductApp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/Debug/net6.0/staticwebassets/msbuild.buildTransitive.ProductApp.props -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/ProductApp.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/ProductApp.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/ProductApp.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/ProductApp.csproj.nuget.g.props -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/ProductApp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/ProductApp.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/project.assets.json -------------------------------------------------------------------------------- /Applications/basics/ProductApp/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/ProductApp/obj/project.nuget.cache -------------------------------------------------------------------------------- /Applications/basics/basics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/basics.sln -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/Program.cs -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/Properties/launchSettings.json -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/WeatherForecast.cs -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/appsettings.Development.json -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/appsettings.json -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/hello_world_api_ui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/hello_world_api_ui.csproj -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/obj/Debug/net6.0/hello_world_api_ui.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/obj/Debug/net6.0/hello_world_api_ui.AssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/obj/Debug/net6.0/hello_world_api_ui.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d0869fec4c5072c3e83d72a4186a3fe0725c7c38 2 | -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/obj/Debug/net6.0/hello_world_api_ui.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/obj/Debug/net6.0/hello_world_api_ui.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/obj/Debug/net6.0/hello_world_api_ui.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/obj/Debug/net6.0/hello_world_api_ui.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/obj/Debug/net6.0/hello_world_api_ui.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/obj/Debug/net6.0/hello_world_api_ui.assets.cache -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/obj/Debug/net6.0/hello_world_api_ui.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/obj/Debug/net6.0/hello_world_api_ui.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/obj/hello_world_api_ui.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/obj/hello_world_api_ui.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/obj/hello_world_api_ui.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/obj/hello_world_api_ui.csproj.nuget.g.props -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/obj/hello_world_api_ui.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/obj/hello_world_api_ui.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/obj/project.assets.json -------------------------------------------------------------------------------- /Applications/basics/hello_world_api_ui/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_api_ui/obj/project.nuget.cache -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/Program.cs -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/Properties/launchSettings.json -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/WeatherForecast.cs -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/appsettings.Development.json -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/appsettings.json -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/bin/Debug/net7.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/bin/Debug/net7.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/bin/Debug/net7.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/bin/Debug/net7.0/appsettings.Development.json -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/bin/Debug/net7.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/bin/Debug/net7.0/appsettings.json -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/bin/Debug/net7.0/hello_world_cli.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/bin/Debug/net7.0/hello_world_cli.deps.json -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/bin/Debug/net7.0/hello_world_cli.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/bin/Debug/net7.0/hello_world_cli.dll -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/bin/Debug/net7.0/hello_world_cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/bin/Debug/net7.0/hello_world_cli.exe -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/bin/Debug/net7.0/hello_world_cli.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/bin/Debug/net7.0/hello_world_cli.pdb -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/bin/Debug/net7.0/hello_world_cli.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/bin/Debug/net7.0/hello_world_cli.runtimeconfig.json -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/hello_world_cli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/hello_world_cli.csproj -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/hello_world_cli.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/hello_world_cli.csproj.user -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/apphost.exe -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.AssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 89433cf4a94ffe0f05531b408c7d35deaaa52157 2 | -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.MvcApplicationPartsAssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.assets.cache -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.dll -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 7512eb666e5de6b7ee0b58aa3aa2f83a8b93127b 2 | -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/hello_world_cli.pdb -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/ref/hello_world_cli.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/ref/hello_world_cli.dll -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/refint/hello_world_cli.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/refint/hello_world_cli.dll -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/staticwebassets.build.json -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/staticwebassets/msbuild.build.hello_world_cli.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/staticwebassets/msbuild.build.hello_world_cli.props -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.hello_world_cli.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.hello_world_cli.props -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.hello_world_cli.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.hello_world_cli.props -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/hello_world_cli.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/hello_world_cli.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/hello_world_cli.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/hello_world_cli.csproj.nuget.g.props -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/hello_world_cli.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/hello_world_cli.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/project.assets.json -------------------------------------------------------------------------------- /Applications/basics/hello_world_cli/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/basics/hello_world_cli/obj/project.nuget.cache -------------------------------------------------------------------------------- /Applications/bookDemo/.vs/ProjectEvaluation/bookdemo.metadata.v6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/.vs/ProjectEvaluation/bookdemo.metadata.v6.1 -------------------------------------------------------------------------------- /Applications/bookDemo/.vs/ProjectEvaluation/bookdemo.projects.v6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/.vs/ProjectEvaluation/bookdemo.projects.v6.1 -------------------------------------------------------------------------------- /Applications/bookDemo/.vs/bookDemo/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/.vs/bookDemo/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Applications/bookDemo/.vs/bookDemo/FileContentIndex/068a4826-3dc6-4d6b-a788-abbc8ff6b246.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/.vs/bookDemo/FileContentIndex/068a4826-3dc6-4d6b-a788-abbc8ff6b246.vsidx -------------------------------------------------------------------------------- /Applications/bookDemo/.vs/bookDemo/FileContentIndex/1fb6ae57-991e-48f1-b906-a786b5a07081.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/.vs/bookDemo/FileContentIndex/1fb6ae57-991e-48f1-b906-a786b5a07081.vsidx -------------------------------------------------------------------------------- /Applications/bookDemo/.vs/bookDemo/FileContentIndex/25e3f557-e8e4-474b-a6f8-f8cd976c548b.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/.vs/bookDemo/FileContentIndex/25e3f557-e8e4-474b-a6f8-f8cd976c548b.vsidx -------------------------------------------------------------------------------- /Applications/bookDemo/.vs/bookDemo/FileContentIndex/5464608d-e04b-4dc1-a9da-73c755336bf5.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/.vs/bookDemo/FileContentIndex/5464608d-e04b-4dc1-a9da-73c755336bf5.vsidx -------------------------------------------------------------------------------- /Applications/bookDemo/.vs/bookDemo/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/bookDemo/.vs/bookDemo/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/.vs/bookDemo/config/applicationhost.config -------------------------------------------------------------------------------- /Applications/bookDemo/.vs/bookDemo/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/.vs/bookDemo/v17/.futdcache.v2 -------------------------------------------------------------------------------- /Applications/bookDemo/.vs/bookDemo/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/.vs/bookDemo/v17/.suo -------------------------------------------------------------------------------- /Applications/bookDemo/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/Controllers/BooksController.cs -------------------------------------------------------------------------------- /Applications/bookDemo/Data/ApplicationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/Data/ApplicationContext.cs -------------------------------------------------------------------------------- /Applications/bookDemo/Models/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/Models/Book.cs -------------------------------------------------------------------------------- /Applications/bookDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/Program.cs -------------------------------------------------------------------------------- /Applications/bookDemo/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/Properties/launchSettings.json -------------------------------------------------------------------------------- /Applications/bookDemo/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/appsettings.Development.json -------------------------------------------------------------------------------- /Applications/bookDemo/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/appsettings.json -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/Microsoft.DotNet.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/Microsoft.DotNet.PlatformAbstractions.dll -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/appsettings.Development.json -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/appsettings.json -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/bookDemo.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/bookDemo.deps.json -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/bookDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/bookDemo.dll -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/bookDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/bookDemo.exe -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/bookDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/bookDemo.pdb -------------------------------------------------------------------------------- /Applications/bookDemo/bin/Debug/net7.0/bookDemo.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bin/Debug/net7.0/bookDemo.runtimeconfig.json -------------------------------------------------------------------------------- /Applications/bookDemo/bookDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bookDemo.csproj -------------------------------------------------------------------------------- /Applications/bookDemo/bookDemo.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bookDemo.csproj.user -------------------------------------------------------------------------------- /Applications/bookDemo/bookDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/bookDemo.sln -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/apphost.exe -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/bookDemo.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/bookDemo.AssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/bookDemo.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 15eacdc5ef90dd4b8766e5dc736acea9f02d5855 2 | -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/bookDemo.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/bookDemo.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/bookDemo.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/bookDemo.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/bookDemo.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/bookDemo.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/bookDemo.MvcApplicationPartsAssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/bookDemo.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/bookDemo.assets.cache -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/bookDemo.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/bookDemo.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/bookDemo.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/bookDemo.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/bookDemo.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 379e3c2b49edb657ea6c4c24214e7b7477a30aa1 2 | -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/bookDemo.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/bookDemo.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/bookDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/bookDemo.dll -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/bookDemo.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | f4c19ce5f3359ec5d453651cccb6cae17a8d2e8d 2 | -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/bookDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/bookDemo.pdb -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/ref/bookDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/ref/bookDemo.dll -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/refint/bookDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/refint/bookDemo.dll -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/staticwebassets.build.json -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/staticwebassets/msbuild.build.bookDemo.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/staticwebassets/msbuild.build.bookDemo.props -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.bookDemo.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.bookDemo.props -------------------------------------------------------------------------------- /Applications/bookDemo/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.bookDemo.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.bookDemo.props -------------------------------------------------------------------------------- /Applications/bookDemo/obj/bookDemo.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/bookDemo.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Applications/bookDemo/obj/bookDemo.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/bookDemo.csproj.nuget.g.props -------------------------------------------------------------------------------- /Applications/bookDemo/obj/bookDemo.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/bookDemo.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Applications/bookDemo/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/project.assets.json -------------------------------------------------------------------------------- /Applications/bookDemo/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bookDemo/obj/project.nuget.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/.vs/ProjectEvaluation/bsstoreapp.metadata.v7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/.vs/ProjectEvaluation/bsstoreapp.metadata.v7.bin -------------------------------------------------------------------------------- /Applications/bsStoreApp/.vs/ProjectEvaluation/bsstoreapp.projects.v7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/.vs/ProjectEvaluation/bsstoreapp.projects.v7.bin -------------------------------------------------------------------------------- /Applications/bsStoreApp/.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /Applications/bsStoreApp/.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/.vs/bsStoreApp/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/.vs/bsStoreApp/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Applications/bsStoreApp/.vs/bsStoreApp/FileContentIndex/5093a07f-c316-4da5-8b24-36d682ad2a29.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/.vs/bsStoreApp/FileContentIndex/5093a07f-c316-4da5-8b24-36d682ad2a29.vsidx -------------------------------------------------------------------------------- /Applications/bsStoreApp/.vs/bsStoreApp/FileContentIndex/bc479368-5ab5-46cc-91b7-873be9b53917.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/.vs/bsStoreApp/FileContentIndex/bc479368-5ab5-46cc-91b7-873be9b53917.vsidx -------------------------------------------------------------------------------- /Applications/bsStoreApp/.vs/bsStoreApp/FileContentIndex/cdd277a8-6159-4aaa-a19b-16437b0bbb5d.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/.vs/bsStoreApp/FileContentIndex/cdd277a8-6159-4aaa-a19b-16437b0bbb5d.vsidx -------------------------------------------------------------------------------- /Applications/bsStoreApp/.vs/bsStoreApp/FileContentIndex/f45bb4a9-12c3-4297-b191-aa9750b929a0.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/.vs/bsStoreApp/FileContentIndex/f45bb4a9-12c3-4297-b191-aa9750b929a0.vsidx -------------------------------------------------------------------------------- /Applications/bsStoreApp/.vs/bsStoreApp/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/.vs/bsStoreApp/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/.vs/bsStoreApp/config/applicationhost.config -------------------------------------------------------------------------------- /Applications/bsStoreApp/.vs/bsStoreApp/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/.vs/bsStoreApp/v17/.futdcache.v2 -------------------------------------------------------------------------------- /Applications/bsStoreApp/.vs/bsStoreApp/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/.vs/bsStoreApp/v17/.suo -------------------------------------------------------------------------------- /Applications/bsStoreApp/.vs/bsStoreApp/v17/.wsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/.vs/bsStoreApp/v17/.wsuo -------------------------------------------------------------------------------- /Applications/bsStoreApp/.vs/bsStoreApp/v17/HierarchyCache.v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/.vs/bsStoreApp/v17/HierarchyCache.v1.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/.vs/slnx.sqlite -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/DTOs/BookDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/DTOs/BookDto.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/DTOs/BookDtoForInsertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/DTOs/BookDtoForInsertion.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/DTOs/BookDtoForManipulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/DTOs/BookDtoForManipulation.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/DTOs/BookDtoForUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/DTOs/BookDtoForUpdate.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/DTOs/LinkParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/DTOs/LinkParameters.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/DTOs/TokenDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/DTOs/TokenDto.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/DTOs/UserForAuthenticationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/DTOs/UserForAuthenticationDto.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/DTOs/UserForRegistrationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/DTOs/UserForRegistrationDto.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/Entities.csproj -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/ErrorModel/ErrorDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/ErrorModel/ErrorDetails.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/Exceptions/BadRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/Exceptions/BadRequestException.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/Exceptions/BookNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/Exceptions/BookNotFoundException.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/Exceptions/CategoryNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/Exceptions/CategoryNotFoundException.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/Exceptions/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/Exceptions/NotFoundException.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/Exceptions/PriceOutOfRangeBadRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/Exceptions/PriceOutOfRangeBadRequestException.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/Exceptions/RefreshTokenBadRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/Exceptions/RefreshTokenBadRequestException.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/LinkModels/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/LinkModels/Link.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/LinkModels/LinkCollectionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/LinkModels/LinkCollectionWrapper.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/LinkModels/LinkResourceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/LinkModels/LinkResourceBase.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/LinkModels/LinkResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/LinkModels/LinkResponse.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/LogModel/LodDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/LogModel/LodDetails.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/Models/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/Models/Book.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/Models/Category.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/Models/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/Models/Entity.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/Models/ShapedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/Models/ShapedEntity.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/Models/User.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/RequestFeatures/BookParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/RequestFeatures/BookParameters.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/RequestFeatures/MetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/RequestFeatures/MetaData.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/RequestFeatures/PagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/RequestFeatures/PagedList.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/RequestFeatures/RequestParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/RequestFeatures/RequestParameters.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/bin/Debug/net6.0/Entities.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/bin/Debug/net6.0/Entities.deps.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/bin/Debug/net6.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/bin/Debug/net6.0/Entities.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/bin/Debug/net6.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/bin/Debug/net6.0/Entities.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.AssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6efefbace1bafaab5616b3f0e8985359045640cb 2 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.assets.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c8fd9b982039d0ba9529a2a7e36a45fa72b4d3f4 2 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Debug/net6.0/Entities.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Debug/net6.0/ref/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Debug/net6.0/ref/Entities.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Debug/net6.0/refint/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Debug/net6.0/refint/Entities.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Entities.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Entities.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Entities.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Entities.csproj.nuget.g.props -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Entities.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Entities.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Release/net6.0/Entities.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Release/net6.0/Entities.AssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Release/net6.0/Entities.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | daf4bb6c388438db313cca22a3163c2ef9712b8e 2 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Release/net6.0/Entities.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Release/net6.0/Entities.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Release/net6.0/Entities.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Release/net6.0/Entities.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Release/net6.0/Entities.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Release/net6.0/Entities.assets.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/Release/net6.0/Entities.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/Release/net6.0/Entities.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/project.assets.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/Entities/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Entities/obj/project.nuget.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/ActionFilters/LogFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/ActionFilters/LogFilterAttribute.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/ActionFilters/ValidateMediaTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/ActionFilters/ValidateMediaTypeAttribute.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/ActionFilters/ValidationFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/ActionFilters/ValidationFilterAttribute.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/AssemblyRefence..cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/AssemblyRefence..cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/Controllers/AuthenticationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/Controllers/AuthenticationController.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/Controllers/BooksController.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/Controllers/BooksV2Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/Controllers/BooksV2Controller.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/Controllers/CategoriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/Controllers/CategoriesController.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/Controllers/FilesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/Controllers/FilesController.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/Controllers/RootController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/Controllers/RootController.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/Presentation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/Presentation.csproj -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Entities.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Entities.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Presentation.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Presentation.deps.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Presentation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Presentation.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Presentation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Presentation.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Repositories.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Repositories.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Repositories.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Repositories.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Services.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Services.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/bin/Debug/net6.0/Services.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.AssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 47c4ae542d5c5f59984c756f182d353b83892f30 2 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.assets.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 606e9aeb1315cfe3eecf7a0cc7c9071a4ac8ef0d 2 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Debug/net6.0/Presentation.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Debug/net6.0/ref/Presentation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Debug/net6.0/ref/Presentation.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Debug/net6.0/refint/Presentation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Debug/net6.0/refint/Presentation.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Presentation.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Presentation.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Presentation.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Presentation.csproj.nuget.g.props -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Presentation.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Presentation.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Release/net6.0/Presentation.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Release/net6.0/Presentation.AssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Release/net6.0/Presentation.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6ef9a87396092b7705712c6a40d2708ed048b5ea 2 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Release/net6.0/Presentation.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Release/net6.0/Presentation.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Release/net6.0/Presentation.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Release/net6.0/Presentation.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Release/net6.0/Presentation.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Release/net6.0/Presentation.assets.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/Release/net6.0/Presentation.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/Release/net6.0/Presentation.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/project.assets.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/Presentation/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Presentation/obj/project.nuget.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/Config/BookConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/Config/BookConfig.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/Config/CategoryConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/Config/CategoryConfig.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/Config/RoleConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/Config/RoleConfiguration.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/Contracts/IBookRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/Contracts/IBookRepository.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/Contracts/ICategoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/Contracts/ICategoryRepository.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/Contracts/IRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/Contracts/IRepositoryBase.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/Contracts/IRepositoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/Contracts/IRepositoryManager.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/EFCore/BookRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/EFCore/BookRepository.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/EFCore/CategoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/EFCore/CategoryRepository.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/EFCore/RepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/EFCore/RepositoryBase.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/EFCore/RepositoryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/EFCore/RepositoryContext.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/EFCore/RepositoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/EFCore/RepositoryManager.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/Extensions/BookRepositoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/Extensions/BookRepositoryExtensions.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/Extensions/OrderQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/Extensions/OrderQueryBuilder.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/Repositories.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/Repositories.csproj -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/bin/Debug/net6.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/bin/Debug/net6.0/Entities.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/bin/Debug/net6.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/bin/Debug/net6.0/Entities.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/bin/Debug/net6.0/Repositories.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/bin/Debug/net6.0/Repositories.deps.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/bin/Debug/net6.0/Repositories.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/bin/Debug/net6.0/Repositories.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/bin/Debug/net6.0/Repositories.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/bin/Debug/net6.0/Repositories.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.AssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 4b812c6cdd0a77c819c3d0a3b66c4b80975b179f 2 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.assets.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d63126a6010a993da42524763c5b640de3bbc5ad 2 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Debug/net6.0/Repositories.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Debug/net6.0/ref/Repositories.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Debug/net6.0/ref/Repositories.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Debug/net6.0/refint/Repositories.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Debug/net6.0/refint/Repositories.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Release/net6.0/Repositories.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Release/net6.0/Repositories.AssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Release/net6.0/Repositories.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 838963cfd0d21a165c9f20957c0a22b779bb1067 2 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Release/net6.0/Repositories.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Release/net6.0/Repositories.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Release/net6.0/Repositories.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Release/net6.0/Repositories.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Release/net6.0/Repositories.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Release/net6.0/Repositories.assets.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Release/net6.0/Repositories.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Release/net6.0/Repositories.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Repositories.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Repositories.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Repositories.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Repositories.csproj.nuget.g.props -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/Repositories.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/Repositories.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/project.assets.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/Repositories/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Repositories/obj/project.nuget.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/AuthenticationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/AuthenticationManager.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/BookLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/BookLinks.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/BookManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/BookManager.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/CategoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/CategoryManager.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/Contracts/IAuthenticationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/Contracts/IAuthenticationService.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/Contracts/IBookLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/Contracts/IBookLinks.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/Contracts/IBookService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/Contracts/IBookService.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/Contracts/ICategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/Contracts/ICategoryService.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/Contracts/IDataShaper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/Contracts/IDataShaper.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/Contracts/ILoggerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/Contracts/ILoggerService.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/Contracts/IServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/Contracts/IServiceManager.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/DataShaper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/DataShaper.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/LoggerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/LoggerManager.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/ServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/ServiceManager.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/Services.csproj -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/bin/Debug/net6.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/bin/Debug/net6.0/Entities.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/bin/Debug/net6.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/bin/Debug/net6.0/Entities.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/bin/Debug/net6.0/Repositories.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/bin/Debug/net6.0/Repositories.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/bin/Debug/net6.0/Repositories.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/bin/Debug/net6.0/Repositories.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/bin/Debug/net6.0/Services.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/bin/Debug/net6.0/Services.deps.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/bin/Debug/net6.0/Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/bin/Debug/net6.0/Services.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/bin/Debug/net6.0/Services.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/bin/Debug/net6.0/Services.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.AssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 38ea25d29ab8acfc3720bdf54eb3091b1c683db3 2 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.assets.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Debug/net6.0/Services.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Debug/net6.0/ref/Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Debug/net6.0/ref/Services.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Debug/net6.0/refint/Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Debug/net6.0/refint/Services.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Release/net6.0/Services.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Release/net6.0/Services.AssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Release/net6.0/Services.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8fc4d4c90db512f1f30c404ecd000637ef95fb56 2 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Release/net6.0/Services.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Release/net6.0/Services.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Release/net6.0/Services.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Release/net6.0/Services.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Release/net6.0/Services.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Release/net6.0/Services.assets.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Release/net6.0/Services.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Release/net6.0/Services.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Services.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Services.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Services.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Services.csproj.nuget.g.props -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/Services.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/Services.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/project.assets.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/Services/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/Services/obj/project.nuget.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/ContextFactory/RepositoryContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/ContextFactory/RepositoryContextFactory.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/Extensions/ExceptionMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/Extensions/ExceptionMiddlewareExtensions.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/Extensions/MvcBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/Extensions/MvcBuilderExtensions.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/Extensions/ServicesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/Extensions/ServicesExtensions.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/Media/OgrenciLogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/Media/OgrenciLogin.png -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/Media/Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/Media/Screenshot_1.png -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/Migrations/20230617144807_init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/Migrations/20230617144807_init.Designer.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/Migrations/20230617144807_init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/Migrations/20230617144807_init.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/Migrations/20230617162502_createRelationBetweenBookAndCategory.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/Migrations/20230617162502_createRelationBetweenBookAndCategory.Designer.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/Migrations/20230617162502_createRelationBetweenBookAndCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/Migrations/20230617162502_createRelationBetweenBookAndCategory.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/Migrations/RepositoryContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/Migrations/RepositoryContextModelSnapshot.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/Presentation/AssemblyRefence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/Presentation/AssemblyRefence.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/Program.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/ServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/ServiceManager.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/Utilities/AutoMapper/MappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/Utilities/AutoMapper/MappingProfile.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/Utilities/Formatters/CsvOutputFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/Utilities/Formatters/CsvOutputFormatter.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/WebApi.csproj -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/WebApi.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/WebApi.csproj.user -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/appsettings.Development.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/appsettings.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/AspNetCoreRateLimit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/AspNetCoreRateLimit.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/AutoMapper.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Entities.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Entities.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Humanizer.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Marvin.Cache.Headers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Marvin.Cache.Headers.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.AspNetCore.Cryptography.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.AspNetCore.Cryptography.Internal.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.AspNetCore.JsonPatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.AspNetCore.JsonPatch.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.AspNetCore.Mvc.Versioning.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.AspNetCore.Mvc.Versioning.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.DotNet.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.DotNet.PlatformAbstractions.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.Extensions.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.Extensions.Identity.Core.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.Extensions.Identity.Stores.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.Extensions.Identity.Stores.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/NLog.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/NLog.Extensions.Logging.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/NLog.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Presentation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Presentation.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Presentation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Presentation.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Repositories.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Repositories.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Repositories.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Repositories.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Services.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Services.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Services.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.Linq.Dynamic.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.Linq.Dynamic.Core.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/WebApi.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/WebApi.deps.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/WebApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/WebApi.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/WebApi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/WebApi.exe -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/WebApi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/WebApi.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/WebApi.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/WebApi.runtimeconfig.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/appsettings.Development.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/appsettings.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-03-31_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-03-31_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-04-01_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-04-01_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-04-02_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-04-02_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-04-05_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-04-05_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-04-25_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-04-25_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-04-27_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-04-27_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-02_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-02_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-04_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-04_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-07_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-07_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-11_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-11_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-13_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-13_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-14_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-14_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-15_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-15_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-16_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-16_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-20_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-20_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-21_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-21_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-27_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-27_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-28_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-28_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-29_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-05-29_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-06-17_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-06-17_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-06-18_logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/logs/2023-06-18_logfile.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/nlog.config -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/internal_logs/internallog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/internal_logs/internallog.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/nlog.config -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.AssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8f845b9fb01b21f877d57dd497d4b62e0d036c22 2 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.MvcApplicationPartsAssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.assets.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9e10c27af6e2a11207e3db56aa3e89999b11405e 2 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | ba625e3e33cc08d642e6d1acb0fe015c186cf16f 2 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/WebApi.pdb -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/ref/WebApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/ref/WebApi.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/refint/WebApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/refint/WebApi.dll -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/staticwebassets.build.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/staticwebassets/msbuild.build.WebApi.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/staticwebassets/msbuild.build.WebApi.props -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/staticwebassets/msbuild.buildMultiTargeting.WebApi.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/staticwebassets/msbuild.buildMultiTargeting.WebApi.props -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Debug/net6.0/staticwebassets/msbuild.buildTransitive.WebApi.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Debug/net6.0/staticwebassets/msbuild.buildTransitive.WebApi.props -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Release/net6.0/WebApi.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Release/net6.0/WebApi.AssemblyInfo.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Release/net6.0/WebApi.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 09cde3bf72978d49359be41838b3b02ceae443b0 2 | -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Release/net6.0/WebApi.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Release/net6.0/WebApi.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Release/net6.0/WebApi.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Release/net6.0/WebApi.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Release/net6.0/WebApi.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Release/net6.0/WebApi.assets.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/Release/net6.0/WebApi.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/Release/net6.0/WebApi.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/WebApi.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/WebApi.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/WebApi.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/WebApi.csproj.nuget.g.props -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/WebApi.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/WebApi.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/project.assets.json -------------------------------------------------------------------------------- /Applications/bsStoreApp/WebApi/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/WebApi/obj/project.nuget.cache -------------------------------------------------------------------------------- /Applications/bsStoreApp/bsStoreApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atillakalay/Asp.NetCoreWebAPI/HEAD/Applications/bsStoreApp/bsStoreApp.sln -------------------------------------------------------------------------------- /Applications/bsStoreApp/git: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------