├── .vscode ├── launch.json └── tasks.json ├── DevNot2021.csproj ├── DevNot2021.sln ├── Entities ├── AbAbone.cs ├── AbAboneGrubu.cs ├── AbAboneTipi.cs ├── CompaniesInfo.cs ├── DbContexts │ └── DevNotContext.cs ├── DbMenu.cs ├── DbRole.cs ├── DbRoleMenu.cs ├── DbSecurityAction.cs ├── DbSecurityController.cs ├── DbSecurityRole.cs ├── DbSecurityUserAction.cs ├── DbSecurityUserRole.cs ├── DbUser.cs ├── DbUser2.cs ├── DbUser2017.cs ├── DbUser2018.cs ├── DbUser2019.cs ├── DbUserMenu.cs ├── GnBolge.cs ├── GnSozlesmeTipi.cs ├── LogTable.cs ├── RoleGroups.cs ├── Roles.cs ├── UserRoles.cs ├── Users.cs └── ViewAbone.cs ├── GlobalJson.cs ├── Model ├── Login.cs ├── Role.cs └── User.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Service ├── DevNotMapper.cs ├── ITokenService.cs ├── IZipService.cs └── TokenService.cs ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ └── net6.0 │ ├── AutoMapper.Extensions.Microsoft.DependencyInjection.dll │ ├── AutoMapper.dll │ ├── DevNot2021.deps.json │ ├── DevNot2021.dll │ ├── DevNot2021.exe │ ├── DevNot2021.pdb │ ├── DevNot2021.runtimeconfig.json │ ├── Humanizer.dll │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ ├── Microsoft.Data.SqlClient.dll │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ ├── Microsoft.EntityFrameworkCore.Design.dll │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ ├── Microsoft.EntityFrameworkCore.dll │ ├── Microsoft.Identity.Client.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 │ ├── Swashbuckle.AspNetCore.Swagger.dll │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ ├── System.Configuration.ConfigurationManager.dll │ ├── System.Drawing.Common.dll │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── System.Runtime.Caching.dll │ ├── System.Security.Cryptography.ProtectedData.dll │ ├── System.Security.Permissions.dll │ ├── System.Windows.Extensions.dll │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── ref │ └── DevNot2021.dll │ └── 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 └── obj ├── Debug └── net6.0 │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ ├── DevNot2021.AssemblyInfo.cs │ ├── DevNot2021.AssemblyInfoInputs.cache │ ├── DevNot2021.GeneratedMSBuildEditorConfig.editorconfig │ ├── DevNot2021.GlobalUsings.g.cs │ ├── DevNot2021.MvcApplicationPartsAssemblyInfo.cache │ ├── DevNot2021.MvcApplicationPartsAssemblyInfo.cs │ ├── DevNot2021.assets.cache │ ├── DevNot2021.csproj.AssemblyReference.cache │ ├── DevNot2021.csproj.CopyComplete │ ├── DevNot2021.csproj.CoreCompileInputs.cache │ ├── DevNot2021.csproj.FileListAbsolute.txt │ ├── DevNot2021.dll │ ├── DevNot2021.genruntimeconfig.cache │ ├── DevNot2021.pdb │ ├── apphost.exe │ ├── project.razor.json │ ├── ref │ └── DevNot2021.dll │ └── staticwebassets.build.json ├── DevNot2021.csproj.EntityFrameworkCore.targets ├── DevNot2021.csproj.nuget.dgspec.json ├── DevNot2021.csproj.nuget.g.props ├── DevNot2021.csproj.nuget.g.targets ├── project.assets.json ├── project.nuget.cache └── staticwebassets.pack.sentinel /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /DevNot2021.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/DevNot2021.csproj -------------------------------------------------------------------------------- /DevNot2021.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/DevNot2021.sln -------------------------------------------------------------------------------- /Entities/AbAbone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/AbAbone.cs -------------------------------------------------------------------------------- /Entities/AbAboneGrubu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/AbAboneGrubu.cs -------------------------------------------------------------------------------- /Entities/AbAboneTipi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/AbAboneTipi.cs -------------------------------------------------------------------------------- /Entities/CompaniesInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/CompaniesInfo.cs -------------------------------------------------------------------------------- /Entities/DbContexts/DevNotContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/DbContexts/DevNotContext.cs -------------------------------------------------------------------------------- /Entities/DbMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/DbMenu.cs -------------------------------------------------------------------------------- /Entities/DbRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/DbRole.cs -------------------------------------------------------------------------------- /Entities/DbRoleMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/DbRoleMenu.cs -------------------------------------------------------------------------------- /Entities/DbSecurityAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/DbSecurityAction.cs -------------------------------------------------------------------------------- /Entities/DbSecurityController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/DbSecurityController.cs -------------------------------------------------------------------------------- /Entities/DbSecurityRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/DbSecurityRole.cs -------------------------------------------------------------------------------- /Entities/DbSecurityUserAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/DbSecurityUserAction.cs -------------------------------------------------------------------------------- /Entities/DbSecurityUserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/DbSecurityUserRole.cs -------------------------------------------------------------------------------- /Entities/DbUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/DbUser.cs -------------------------------------------------------------------------------- /Entities/DbUser2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/DbUser2.cs -------------------------------------------------------------------------------- /Entities/DbUser2017.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/DbUser2017.cs -------------------------------------------------------------------------------- /Entities/DbUser2018.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/DbUser2018.cs -------------------------------------------------------------------------------- /Entities/DbUser2019.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/DbUser2019.cs -------------------------------------------------------------------------------- /Entities/DbUserMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/DbUserMenu.cs -------------------------------------------------------------------------------- /Entities/GnBolge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/GnBolge.cs -------------------------------------------------------------------------------- /Entities/GnSozlesmeTipi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/GnSozlesmeTipi.cs -------------------------------------------------------------------------------- /Entities/LogTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/LogTable.cs -------------------------------------------------------------------------------- /Entities/RoleGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/RoleGroups.cs -------------------------------------------------------------------------------- /Entities/Roles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/Roles.cs -------------------------------------------------------------------------------- /Entities/UserRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/UserRoles.cs -------------------------------------------------------------------------------- /Entities/Users.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/Users.cs -------------------------------------------------------------------------------- /Entities/ViewAbone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Entities/ViewAbone.cs -------------------------------------------------------------------------------- /GlobalJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/GlobalJson.cs -------------------------------------------------------------------------------- /Model/Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Model/Login.cs -------------------------------------------------------------------------------- /Model/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Model/Role.cs -------------------------------------------------------------------------------- /Model/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Model/User.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /Service/DevNotMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Service/DevNotMapper.cs -------------------------------------------------------------------------------- /Service/ITokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Service/ITokenService.cs -------------------------------------------------------------------------------- /Service/IZipService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Service/IZipService.cs -------------------------------------------------------------------------------- /Service/TokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/Service/TokenService.cs -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/appsettings.json -------------------------------------------------------------------------------- /bin/Debug/net6.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/AutoMapper.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/DevNot2021.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/DevNot2021.deps.json -------------------------------------------------------------------------------- /bin/Debug/net6.0/DevNot2021.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/DevNot2021.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/DevNot2021.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/DevNot2021.exe -------------------------------------------------------------------------------- /bin/Debug/net6.0/DevNot2021.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/DevNot2021.pdb -------------------------------------------------------------------------------- /bin/Debug/net6.0/DevNot2021.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/DevNot2021.runtimeconfig.json -------------------------------------------------------------------------------- /bin/Debug/net6.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Humanizer.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/appsettings.Development.json -------------------------------------------------------------------------------- /bin/Debug/net6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/appsettings.json -------------------------------------------------------------------------------- /bin/Debug/net6.0/ref/DevNot2021.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/ref/DevNot2021.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/DevNot2021.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/Debug/net6.0/DevNot2021.AssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/DevNot2021.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b8aae5cd084ec243d9a85ed1a320aca10f1cf8ac 2 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/DevNot2021.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/Debug/net6.0/DevNot2021.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /obj/Debug/net6.0/DevNot2021.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/Debug/net6.0/DevNot2021.GlobalUsings.g.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/DevNot2021.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/DevNot2021.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/Debug/net6.0/DevNot2021.MvcApplicationPartsAssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/DevNot2021.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/Debug/net6.0/DevNot2021.assets.cache -------------------------------------------------------------------------------- /obj/Debug/net6.0/DevNot2021.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/Debug/net6.0/DevNot2021.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/net6.0/DevNot2021.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/DevNot2021.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5cd29c6180bfbc0327536b5838c39adc17a97684 2 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/DevNot2021.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/Debug/net6.0/DevNot2021.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Debug/net6.0/DevNot2021.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/Debug/net6.0/DevNot2021.dll -------------------------------------------------------------------------------- /obj/Debug/net6.0/DevNot2021.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 669072b3e90aeeb63b8861d58deb0d2a5d306cd1 2 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/DevNot2021.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/Debug/net6.0/DevNot2021.pdb -------------------------------------------------------------------------------- /obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /obj/Debug/net6.0/project.razor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/Debug/net6.0/project.razor.json -------------------------------------------------------------------------------- /obj/Debug/net6.0/ref/DevNot2021.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/Debug/net6.0/ref/DevNot2021.dll -------------------------------------------------------------------------------- /obj/Debug/net6.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/Debug/net6.0/staticwebassets.build.json -------------------------------------------------------------------------------- /obj/DevNot2021.csproj.EntityFrameworkCore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/DevNot2021.csproj.EntityFrameworkCore.targets -------------------------------------------------------------------------------- /obj/DevNot2021.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/DevNot2021.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /obj/DevNot2021.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/DevNot2021.csproj.nuget.g.props -------------------------------------------------------------------------------- /obj/DevNot2021.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/DevNot2021.csproj.nuget.g.targets -------------------------------------------------------------------------------- /obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/project.assets.json -------------------------------------------------------------------------------- /obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/project.nuget.cache -------------------------------------------------------------------------------- /obj/staticwebassets.pack.sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/MinimalApi/HEAD/obj/staticwebassets.pack.sentinel --------------------------------------------------------------------------------