├── SampleApis ├── obj │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── SampleApis.csproj.CopyComplete │ │ │ ├── SampleApis.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── staticwebassets │ │ │ ├── SampleApis.StaticWebAssets.Manifest.cache │ │ │ └── SampleApis.StaticWebAssets.xml │ │ │ ├── SampleApis.genruntimeconfig.cache │ │ │ ├── SampleApis.AssemblyInfoInputs.cache │ │ │ ├── SampleApis.RazorTargetAssemblyInfo.cache │ │ │ ├── SampleApis.csproj.CoreCompileInputs.cache │ │ │ ├── apphost.exe │ │ │ ├── SampleApis.dll │ │ │ ├── SampleApis.pdb │ │ │ ├── SampleApis.assets.cache │ │ │ ├── SampleApis.csprojAssemblyReference.cache │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── SampleApis.MvcApplicationPartsAssemblyInfo.cs │ │ │ ├── SampleApis.AssemblyInfo.cs │ │ │ └── SampleApis.csproj.FileListAbsolute.txt │ ├── SampleApis.csproj.nuget.g.targets │ ├── SampleApis.csproj.nuget.g.props │ ├── SampleApis.csproj.nuget.dgspec.json │ └── project.nuget.cache ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Npgsql.dll │ │ ├── SampleApis.dll │ │ ├── SampleApis.exe │ │ ├── SampleApis.pdb │ │ ├── Newtonsoft.Json.dll │ │ ├── Microsoft.OpenApi.dll │ │ ├── Microsoft.Bcl.HashCode.dll │ │ ├── Microsoft.Data.SqlClient.dll │ │ ├── System.Runtime.Caching.dll │ │ ├── Microsoft.Identity.Client.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ ├── Microsoft.Extensions.Logging.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── System.Collections.Immutable.dll │ │ ├── runtimes │ │ ├── win-arm64 │ │ │ └── native │ │ │ │ └── sni.dll │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── sni.dll │ │ ├── win-x86 │ │ │ └── native │ │ │ │ └── sni.dll │ │ ├── unix │ │ │ └── lib │ │ │ │ ├── netcoreapp2.0 │ │ │ │ └── System.Runtime.Caching.dll │ │ │ │ └── netcoreapp2.1 │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ └── win │ │ │ └── lib │ │ │ ├── netcoreapp2.0 │ │ │ └── System.Runtime.Caching.dll │ │ │ ├── netcoreapp2.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ └── netstandard2.0 │ │ │ └── System.Security.Cryptography.ProtectedData.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ ├── Npgsql.EntityFrameworkCore.PostgreSQL.dll │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── System.Configuration.ConfigurationManager.dll │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── SampleApis.runtimeconfig.json │ │ ├── SampleApis.runtimeconfig.dev.json │ │ └── Properties │ │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json ├── docker-compose.yml ├── Migrations │ ├── 20210425162812_required_id.cs │ ├── 20210424133649_init.cs │ ├── SystemsDbContextModelSnapshot.cs │ ├── 20210424133649_init.Designer.cs │ └── 20210425162812_required_id.Designer.cs ├── Utils │ └── Helpers.cs ├── Repository │ ├── IRepository.cs │ └── Implimentation │ │ └── Repository.cs ├── SampleApis.csproj.user ├── Data │ ├── Models │ │ └── SystemsModel.cs │ └── Entities │ │ └── SystemsDbContext.cs ├── Dockerfile ├── Properties │ └── launchSettings.json ├── Program.cs ├── SampleApis.csproj ├── Startup.cs └── Controllers │ └── SystemsController.cs ├── .vs └── SampleApis │ ├── v16 │ └── .suo │ ├── DesignTimeBuild │ └── .dtbcache.v2 │ └── config │ └── applicationhost.config ├── .dockerignore ├── .gitignore ├── README.md └── SampleApis.sln /SampleApis/obj/Debug/netcoreapp3.1/SampleApis.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SampleApis/obj/Debug/netcoreapp3.1/SampleApis.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SampleApis/obj/Debug/netcoreapp3.1/staticwebassets/SampleApis.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SampleApis/obj/Debug/netcoreapp3.1/SampleApis.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 87a46e7e5f16a3152fc18149652f9c1edeb51b21 2 | -------------------------------------------------------------------------------- /.vs/SampleApis/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/.vs/SampleApis/v16/.suo -------------------------------------------------------------------------------- /SampleApis/obj/Debug/netcoreapp3.1/SampleApis.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d8e9660dade295a70350271d265b4692dea19091 2 | -------------------------------------------------------------------------------- /SampleApis/obj/Debug/netcoreapp3.1/staticwebassets/SampleApis.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SampleApis/obj/Debug/netcoreapp3.1/SampleApis.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 3ded3ce52bc5a6c322f941bb3810e6db7d3d8206 2 | -------------------------------------------------------------------------------- /SampleApis/obj/Debug/netcoreapp3.1/SampleApis.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c35f38515b24f07482fab550995b92567462b1ac 2 | -------------------------------------------------------------------------------- /.vs/SampleApis/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/.vs/SampleApis/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Npgsql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Npgsql.dll -------------------------------------------------------------------------------- /SampleApis/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/SampleApis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/SampleApis.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/SampleApis.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/SampleApis.exe -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/SampleApis.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/SampleApis.pdb -------------------------------------------------------------------------------- /SampleApis/obj/Debug/netcoreapp3.1/SampleApis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/obj/Debug/netcoreapp3.1/SampleApis.dll -------------------------------------------------------------------------------- /SampleApis/obj/Debug/netcoreapp3.1/SampleApis.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/obj/Debug/netcoreapp3.1/SampleApis.pdb -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /SampleApis/obj/Debug/netcoreapp3.1/SampleApis.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/obj/Debug/netcoreapp3.1/SampleApis.assets.cache -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /SampleApis/obj/Debug/netcoreapp3.1/SampleApis.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/obj/Debug/netcoreapp3.1/SampleApis.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /SampleApis/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /SampleApis/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /SampleApis/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ethan0007/.NetCore-Mssql-Dockerize/master/SampleApis/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /SampleApis/docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '3.7' 2 | services: 3 | sql-server-db: 4 | container_name: sql-server-db 5 | image: mcr.microsoft.com/mssql/server:2019-latest 6 | ports: 7 | - '1433:1433' 8 | environment: 9 | SA_PASSWORD: 'admin_systems_database' 10 | ACCEPT_EULA: 'Y' 11 | -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/SampleApis.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.AspNetCore.App", 6 | "version": "3.1.0" 7 | }, 8 | "configProperties": { 9 | "System.GC.Server": true, 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/SampleApis.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Joever Monceda\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Joever Monceda\\.nuget\\packages", 6 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", 7 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 8 | ] 9 | } 10 | } -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | **/.classpath 2 | **/.dockerignore 3 | **/.env 4 | **/.git 5 | **/.gitignore 6 | **/.project 7 | **/.settings 8 | **/.toolstarget 9 | **/.vs 10 | **/.vscode 11 | **/*.*proj.user 12 | **/*.dbmdl 13 | **/*.jfm 14 | **/azds.yaml 15 | **/bin 16 | **/charts 17 | **/docker-compose* 18 | **/Dockerfile* 19 | **/node_modules 20 | **/npm-debug.log 21 | **/obj 22 | **/secrets.dev.yaml 23 | **/values.dev.yaml 24 | LICENSE 25 | README.md -------------------------------------------------------------------------------- /SampleApis/Migrations/20210425162812_required_id.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | namespace SampleApis.Migrations 4 | { 5 | public partial class required_id : Migration 6 | { 7 | protected override void Up(MigrationBuilder migrationBuilder) 8 | { 9 | 10 | } 11 | 12 | protected override void Down(MigrationBuilder migrationBuilder) 13 | { 14 | 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /SampleApis/Utils/Helpers.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace SampleApis.Utils 7 | { 8 | public static class Helpers 9 | { 10 | public static string ToTinyUuid(this Guid guid) 11 | { 12 | return Convert.ToBase64String(guid.ToByteArray())[0..^2] 13 | .Replace('+', '-') 14 | .Replace('/', '_'); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.*~ 3 | project.lock.json 4 | .DS_Store 5 | *.pyc 6 | nupkg/ 7 | 8 | # Visual Studio Code 9 | .vscode 10 | 11 | # Rider 12 | .idea 13 | 14 | # User-specific files 15 | *.suo 16 | *.user 17 | *.userosscache 18 | *.sln.docstates 19 | 20 | # Build results 21 | [Dd]ebug/ 22 | [Dd]ebugPublic/ 23 | [Rr]elease/ 24 | [Rr]eleases/ 25 | x64/ 26 | x86/ 27 | build/ 28 | bld/ 29 | [Bb]in/ 30 | [Oo]bj/ 31 | [Oo]ut/ 32 | msbuild.log 33 | msbuild.err 34 | msbuild.wrn 35 | 36 | # Visual Studio 2015 37 | .vs/ 38 | -------------------------------------------------------------------------------- /SampleApis/Repository/IRepository.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Linq.Expressions; 5 | using System.Threading.Tasks; 6 | 7 | namespace SampleApis.Repository 8 | { 9 | public interface IRepository where TEntity : class 10 | { 11 | TEntity Get(Guid id); 12 | IEnumerable GetAll(); 13 | void Add(TEntity entity); 14 | IQueryable Find(Expression> predicate); 15 | void Update(TEntity entity); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /SampleApis/SampleApis.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | IIS Express 5 | ApiControllerWithActionsScaffolder 6 | root/Common/Api 7 | 8 | 9 | ProjectDebugger 10 | 11 | -------------------------------------------------------------------------------- /SampleApis/Data/Models/SystemsModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.ComponentModel.DataAnnotations.Schema; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | 8 | namespace SampleApis.Data.Models 9 | { 10 | public class SystemsModel 11 | { 12 | [Required] 13 | public string Id { set; get; } 14 | [StringLength(45)] 15 | public string Key { set; get; } 16 | [StringLength(75)] 17 | public string Expiration { set; get; } 18 | [StringLength(50)] 19 | public string Version { set; get; } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SampleApis/obj/Debug/netcoreapp3.1/SampleApis.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] 15 | 16 | // Generated by the MSBuild WriteCodeFragment class. 17 | 18 | -------------------------------------------------------------------------------- /SampleApis/Data/Entities/SystemsDbContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore; 2 | using SampleApis.Data.Models; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | 8 | namespace SampleApis.Data.Entities 9 | { 10 | public class SystemsDbContext : DbContext 11 | { 12 | public DbSet SystemsModel { set; get; } 13 | 14 | public SystemsDbContext(DbContextOptions options) : base(options) 15 | { 16 | } 17 | 18 | protected override void OnModelCreating(ModelBuilder modelBuilder) 19 | { 20 | modelBuilder.HasDefaultSchema("dbo"); 21 | base.OnModelCreating(modelBuilder); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /SampleApis/Dockerfile: -------------------------------------------------------------------------------- 1 | #See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. 2 | 3 | #Depending on the operating system of the host machines(s) that will build or run the containers, the image specified in the FROM statement may need to be changed. 4 | #For more information, please see https://aka.ms/containercompat 5 | 6 | FROM mcr.microsoft.com/dotnet/aspnet:3.1 AS base 7 | WORKDIR /app 8 | EXPOSE 80 9 | EXPOSE 443 10 | 11 | FROM mcr.microsoft.com/dotnet/sdk:3.1 AS build 12 | WORKDIR /src 13 | COPY ["SampleApis/SampleApis.csproj", "SampleApis/"] 14 | RUN dotnet restore "SampleApis/SampleApis.csproj" 15 | COPY . . 16 | WORKDIR "/src/SampleApis" 17 | RUN dotnet build "SampleApis.csproj" -c Release -o /app/build 18 | 19 | FROM build AS publish 20 | RUN dotnet publish "SampleApis.csproj" -c Release -o /app/publish 21 | 22 | FROM base AS final 23 | WORKDIR /app 24 | COPY --from=publish /app/publish . 25 | ENTRYPOINT ["dotnet", "SampleApis.dll"] -------------------------------------------------------------------------------- /SampleApis/obj/SampleApis.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # .NetCore Mssql Dockerize Playground 2 | 3 | This repository is just a playground for containerizing .net core and mssql at the same time. 4 | 5 | ## Requirements 6 | * .NET Core 3.1 7 | * VSCode 8 | * Docker 20.10.0 9 | 10 | ## Running the application: 11 | 1. Run Docker on your local machine. 12 | 2. docker build -t sample-api:v1 . 13 | - it will download images for aspnet 3.1 and sdk 3.1 (wait until the download done). 14 | 3. docker-compose up -d 15 | 4. to verify the image enter command: docker images 16 | 17 | 18 | ## License 19 | [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) 20 | Copyright (c) 2021 [Joever Monceda](https://github.com/Ethan0007) 21 | 22 | 23 | Linkedin: [Joever Monceda](https://www.linkedin.com/in/joever-monceda-55242779/) 24 | Medium: [Joever Monceda](https://medium.com/@joever.monceda/new-net-core-vuejs-vuex-router-webpack-starter-kit-e94b6fdb7481) 25 | Twitter [@_EthanHunt07](https://twitter.com/_EthanHunt07) 26 | Facebook: [JH Hunt](https://www.facebook.com/nethan.hound.3) 27 | -------------------------------------------------------------------------------- /SampleApis.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.31025.194 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleApis", "SampleApis\SampleApis.csproj", "{E70A8F73-9037-42A3-826D-0F8C43E28371}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {E70A8F73-9037-42A3-826D-0F8C43E28371}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {E70A8F73-9037-42A3-826D-0F8C43E28371}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {E70A8F73-9037-42A3-826D-0F8C43E28371}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {E70A8F73-9037-42A3-826D-0F8C43E28371}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {355B4712-E6C2-4DB9-9063-400144AC26D7} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /SampleApis/obj/Debug/netcoreapp3.1/SampleApis.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("8d46fd9e-7682-4b3a-9a33-d4257fa143b1")] 15 | [assembly: System.Reflection.AssemblyCompanyAttribute("SampleApis")] 16 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 17 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 18 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 19 | [assembly: System.Reflection.AssemblyProductAttribute("SampleApis")] 20 | [assembly: System.Reflection.AssemblyTitleAttribute("SampleApis")] 21 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 22 | 23 | // Generated by the MSBuild WriteCodeFragment class. 24 | 25 | -------------------------------------------------------------------------------- /SampleApis/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:53928", 7 | "sslPort": 44381 8 | } 9 | }, 10 | "$schema": "http://json.schemastore.org/launchsettings.json", 11 | "profiles": { 12 | "IIS Express": { 13 | "commandName": "IISExpress", 14 | "launchBrowser": true, 15 | "launchUrl": "weatherforecast", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development", 18 | "CONNECTIONSTRING": "Server=localhost,1433;Database=systemsDb;User Id=SA;Password=admin_systems_database" 19 | } 20 | }, 21 | "SampleApis": { 22 | "commandName": "Project", 23 | "launchBrowser": true, 24 | "launchUrl": "weatherforecast", 25 | "environmentVariables": { 26 | "ASPNETCORE_ENVIRONMENT": "Development" 27 | }, 28 | "applicationUrl": "https://localhost:5001;http://localhost:5000" 29 | }, 30 | "Docker": { 31 | "commandName": "Docker", 32 | "launchBrowser": true, 33 | "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/weatherforecast", 34 | "publishAllPorts": true, 35 | "useSSL": true 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /SampleApis/Migrations/20210424133649_init.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | namespace SampleApis.Migrations 4 | { 5 | public partial class init : Migration 6 | { 7 | protected override void Up(MigrationBuilder migrationBuilder) 8 | { 9 | migrationBuilder.EnsureSchema( 10 | name: "dbo"); 11 | 12 | migrationBuilder.CreateTable( 13 | name: "SystemsModel", 14 | schema: "dbo", 15 | columns: table => new 16 | { 17 | Id = table.Column(nullable: false), 18 | Key = table.Column(maxLength: 45, nullable: true), 19 | Expiration = table.Column(maxLength: 75, nullable: true), 20 | Version = table.Column(maxLength: 50, nullable: true) 21 | }, 22 | constraints: table => 23 | { 24 | table.PrimaryKey("PK_SystemsModel", x => x.Id); 25 | }); 26 | } 27 | 28 | protected override void Down(MigrationBuilder migrationBuilder) 29 | { 30 | migrationBuilder.DropTable( 31 | name: "SystemsModel", 32 | schema: "dbo"); 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /SampleApis/bin/Debug/netcoreapp3.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:53928", 7 | "sslPort": 44381 8 | } 9 | }, 10 | "$schema": "http://json.schemastore.org/launchsettings.json", 11 | "profiles": { 12 | "IIS Express": { 13 | "commandName": "IISExpress", 14 | "launchBrowser": true, 15 | "launchUrl": "weatherforecast", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development", 18 | "CONNECTIONSTRING": "Server=localhost,1433;Database=systemsDb;User Id=SA;Password=admin_systems_database" 19 | } 20 | }, 21 | "SampleApis": { 22 | "commandName": "Project", 23 | "launchBrowser": true, 24 | "launchUrl": "weatherforecast", 25 | "environmentVariables": { 26 | "ASPNETCORE_ENVIRONMENT": "Development" 27 | }, 28 | "applicationUrl": "https://localhost:5001;http://localhost:5000" 29 | }, 30 | "Docker": { 31 | "commandName": "Docker", 32 | "launchBrowser": true, 33 | "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/weatherforecast", 34 | "publishAllPorts": true, 35 | "useSSL": true 36 | } 37 | } 38 | } -------------------------------------------------------------------------------- /SampleApis/Repository/Implimentation/Repository.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore; 2 | using SampleApis.Data.Entities; 3 | using SampleApis.Repository; 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Linq.Expressions; 8 | using System.Threading.Tasks; 9 | 10 | namespace SampleApis.Services.CRUD 11 | { 12 | public class Repository : IRepository where TEntity : class 13 | { 14 | private readonly SystemsDbContext _context; 15 | 16 | protected readonly DbSet _dbSet; 17 | 18 | public Repository(SystemsDbContext context) 19 | { 20 | _context = context; 21 | _dbSet = context.Set(); 22 | } 23 | public TEntity Get(Guid id) 24 | { 25 | return _dbSet.Find(id); 26 | } 27 | public IEnumerable GetAll() 28 | { 29 | return _dbSet.ToList(); 30 | } 31 | 32 | public void Add(TEntity entity) 33 | { 34 | _dbSet.Add(entity); 35 | _context.SaveChanges(); 36 | } 37 | 38 | 39 | public void Update(TEntity entity) 40 | { 41 | _dbSet.Update(entity); 42 | _context.SaveChanges(); 43 | } 44 | 45 | public IQueryable Find(Expression> predicate) 46 | { 47 | return _dbSet.Where(predicate).AsNoTracking(); 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /SampleApis/Program.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Hosting; 2 | using Microsoft.EntityFrameworkCore; 3 | using Microsoft.Extensions.DependencyInjection; 4 | using Microsoft.Extensions.Hosting; 5 | using SampleApis.Data.Entities; 6 | using System; 7 | using System.Threading.Tasks; 8 | 9 | namespace SampleApis 10 | { 11 | public class Program 12 | { 13 | public static void MigrateDatabase(IHost host) 14 | { 15 | if (host is null) 16 | { 17 | throw new ArgumentNullException(nameof(host)); 18 | } 19 | 20 | var serviceScopeFactory = (IServiceScopeFactory)host.Services.GetService(typeof(IServiceScopeFactory)); 21 | 22 | using (var scope = serviceScopeFactory.CreateScope()) 23 | { 24 | var services = scope.ServiceProvider; 25 | var dbContext = services.GetRequiredService(); 26 | dbContext.Database.Migrate(); 27 | } 28 | } 29 | 30 | public static async Task Main(string[] args) 31 | { 32 | var host = CreateHostBuilder(args).Build(); 33 | MigrateDatabase(host); 34 | await host.RunAsync().ConfigureAwait(false); 35 | } 36 | public static IHostBuilder CreateHostBuilder(string[] args) => 37 | Host.CreateDefaultBuilder(args) 38 | .ConfigureWebHostDefaults(webBuilder => 39 | { 40 | webBuilder.UseStartup(); 41 | }); 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /SampleApis/SampleApis.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1 5 | 8d46fd9e-7682-4b3a-9a33-d4257fa143b1 6 | Windows 7 | 8 | 9 | 10 | <_WebToolingArtifacts Remove="Properties\launchSettings.json" /> 11 | 12 | 13 | 14 | 15 | 16 | all 17 | runtime; build; native; contentfiles; analyzers; buildtransitive 18 | 19 | 20 | 21 | all 22 | runtime; build; native; contentfiles; analyzers; buildtransitive 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | PreserveNewest 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /SampleApis/Migrations/SystemsDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- 1 | // 2 | using Microsoft.EntityFrameworkCore; 3 | using Microsoft.EntityFrameworkCore.Infrastructure; 4 | using Microsoft.EntityFrameworkCore.Metadata; 5 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 6 | using SampleApis.Data.Entities; 7 | 8 | namespace SampleApis.Migrations 9 | { 10 | [DbContext(typeof(SystemsDbContext))] 11 | partial class SystemsDbContextModelSnapshot : ModelSnapshot 12 | { 13 | protected override void BuildModel(ModelBuilder modelBuilder) 14 | { 15 | #pragma warning disable 612, 618 16 | modelBuilder 17 | .HasDefaultSchema("dbo") 18 | .HasAnnotation("ProductVersion", "3.1.14") 19 | .HasAnnotation("Relational:MaxIdentifierLength", 128) 20 | .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); 21 | 22 | modelBuilder.Entity("SampleApis.Data.Models.SystemsModel", b => 23 | { 24 | b.Property("Id") 25 | .HasColumnType("nvarchar(450)"); 26 | 27 | b.Property("Expiration") 28 | .HasColumnType("nvarchar(75)") 29 | .HasMaxLength(75); 30 | 31 | b.Property("Key") 32 | .HasColumnType("nvarchar(45)") 33 | .HasMaxLength(45); 34 | 35 | b.Property("Version") 36 | .HasColumnType("nvarchar(50)") 37 | .HasMaxLength(50); 38 | 39 | b.HasKey("Id"); 40 | 41 | b.ToTable("SystemsModel"); 42 | }); 43 | #pragma warning restore 612, 618 44 | } 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /SampleApis/Migrations/20210424133649_init.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using Microsoft.EntityFrameworkCore; 3 | using Microsoft.EntityFrameworkCore.Infrastructure; 4 | using Microsoft.EntityFrameworkCore.Metadata; 5 | using Microsoft.EntityFrameworkCore.Migrations; 6 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 7 | using SampleApis.Data.Entities; 8 | 9 | namespace SampleApis.Migrations 10 | { 11 | [DbContext(typeof(SystemsDbContext))] 12 | [Migration("20210424133649_init")] 13 | partial class init 14 | { 15 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 16 | { 17 | #pragma warning disable 612, 618 18 | modelBuilder 19 | .HasDefaultSchema("dbo") 20 | .HasAnnotation("ProductVersion", "3.1.14") 21 | .HasAnnotation("Relational:MaxIdentifierLength", 128) 22 | .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); 23 | 24 | modelBuilder.Entity("SampleApis.Data.Models.SystemsModel", b => 25 | { 26 | b.Property("Id") 27 | .HasColumnType("nvarchar(450)"); 28 | 29 | b.Property("Expiration") 30 | .HasColumnType("nvarchar(75)") 31 | .HasMaxLength(75); 32 | 33 | b.Property("Key") 34 | .HasColumnType("nvarchar(45)") 35 | .HasMaxLength(45); 36 | 37 | b.Property("Version") 38 | .HasColumnType("nvarchar(50)") 39 | .HasMaxLength(50); 40 | 41 | b.HasKey("Id"); 42 | 43 | b.ToTable("SystemsModel"); 44 | }); 45 | #pragma warning restore 612, 618 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /SampleApis/Migrations/20210425162812_required_id.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using Microsoft.EntityFrameworkCore; 3 | using Microsoft.EntityFrameworkCore.Infrastructure; 4 | using Microsoft.EntityFrameworkCore.Metadata; 5 | using Microsoft.EntityFrameworkCore.Migrations; 6 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 7 | using SampleApis.Data.Entities; 8 | 9 | namespace SampleApis.Migrations 10 | { 11 | [DbContext(typeof(SystemsDbContext))] 12 | [Migration("20210425162812_required_id")] 13 | partial class required_id 14 | { 15 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 16 | { 17 | #pragma warning disable 612, 618 18 | modelBuilder 19 | .HasDefaultSchema("dbo") 20 | .HasAnnotation("ProductVersion", "3.1.14") 21 | .HasAnnotation("Relational:MaxIdentifierLength", 128) 22 | .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); 23 | 24 | modelBuilder.Entity("SampleApis.Data.Models.SystemsModel", b => 25 | { 26 | b.Property("Id") 27 | .HasColumnType("nvarchar(450)"); 28 | 29 | b.Property("Expiration") 30 | .HasColumnType("nvarchar(75)") 31 | .HasMaxLength(75); 32 | 33 | b.Property("Key") 34 | .HasColumnType("nvarchar(45)") 35 | .HasMaxLength(45); 36 | 37 | b.Property("Version") 38 | .HasColumnType("nvarchar(50)") 39 | .HasMaxLength(50); 40 | 41 | b.HasKey("Id"); 42 | 43 | b.ToTable("SystemsModel"); 44 | }); 45 | #pragma warning restore 612, 618 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /SampleApis/Startup.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Builder; 2 | using Microsoft.AspNetCore.Hosting; 3 | using Microsoft.AspNetCore.HttpsPolicy; 4 | using Microsoft.AspNetCore.Mvc; 5 | using Microsoft.EntityFrameworkCore; 6 | using Microsoft.Extensions.Configuration; 7 | using Microsoft.Extensions.DependencyInjection; 8 | using Microsoft.Extensions.Hosting; 9 | using Microsoft.Extensions.Logging; 10 | using Microsoft.OpenApi.Models; 11 | using SampleApis.Data.Entities; 12 | using SampleApis.Data.Models; 13 | using SampleApis.Repository; 14 | using SampleApis.Services.CRUD; 15 | using System; 16 | using System.Collections.Generic; 17 | using System.Linq; 18 | using System.Threading.Tasks; 19 | 20 | namespace SampleApis 21 | { 22 | public class Startup 23 | { 24 | public Startup(IConfiguration configuration) 25 | { 26 | Configuration = configuration; 27 | } 28 | 29 | public IConfiguration Configuration { get; } 30 | 31 | // This method gets called by the runtime. Use this method to add services to the container. 32 | public void ConfigureServices(IServiceCollection services) 33 | { 34 | 35 | services.AddDbContext(p => p.UseSqlServer(Configuration["CONNECTIONSTRING"])); 36 | 37 | services.AddControllers(); 38 | 39 | services.AddSwaggerGen(c => 40 | { 41 | c.SwaggerDoc("v1", new OpenApiInfo 42 | { 43 | Title = "Systems API", 44 | Version = "v1" 45 | }); 46 | }); 47 | 48 | services.AddTransient, Repository>(); 49 | } 50 | 51 | // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. 52 | public void Configure(IApplicationBuilder app, IWebHostEnvironment env) 53 | { 54 | app.UseSwagger(); 55 | 56 | app.UseSwaggerUI(c => 57 | { 58 | c.SwaggerEndpoint("/swagger/v1/swagger.json", "Systems API V1"); 59 | }); 60 | 61 | if (env.IsDevelopment()) 62 | { 63 | app.UseDeveloperExceptionPage(); 64 | } 65 | 66 | app.UseHttpsRedirection(); 67 | 68 | app.UseRouting(); 69 | 70 | app.UseAuthorization(); 71 | 72 | app.UseEndpoints(endpoints => 73 | { 74 | endpoints.MapControllers(); 75 | }); 76 | } 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /SampleApis/Controllers/SystemsController.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | using Microsoft.EntityFrameworkCore; 3 | using SampleApis.Data.Entities; 4 | using SampleApis.Data.Models; 5 | using SampleApis.Repository; 6 | using SampleApis.Utils; 7 | using System; 8 | using System.Diagnostics; 9 | using System.Globalization; 10 | using System.Reflection; 11 | using System.Threading.Tasks; 12 | 13 | // For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 14 | 15 | namespace SampleApis.Controllers 16 | { 17 | [ApiController] 18 | [Route("[controller]")] 19 | public class SystemsController : ControllerBase 20 | { 21 | private readonly IRepository _repository; 22 | 23 | private readonly SystemsDbContext _context; 24 | 25 | public SystemsController(IRepository repository, SystemsDbContext context) 26 | { 27 | _repository = repository; 28 | 29 | _context = context; 30 | } 31 | 32 | 33 | [HttpGet, Route("Check")] 34 | public IActionResult HealthCheck() 35 | { 36 | Assembly assembly = Assembly.GetExecutingAssembly(); 37 | var fvi = FileVersionInfo.GetVersionInfo(assembly.Location); 38 | string version = fvi.FileVersion; 39 | 40 | return Ok(version); 41 | } 42 | 43 | [HttpPost, Route("Save/{key}/{version}")] 44 | public async Task SaveKey([FromRoute] string key, [FromRoute] string version) 45 | { 46 | var result = await _context.SystemsModel.AddAsync(new SystemsModel() 47 | { 48 | Id = Guid.NewGuid().ToTinyUuid(), 49 | Key = key, 50 | Expiration = DateTime.Now.AddHours(1).ToString("yyyy-mm-dd HH:mm:ss", CultureInfo.InvariantCulture), 51 | Version = version 52 | }); 53 | 54 | await _context.SaveChangesAsync(); 55 | 56 | if (result is null) return BadRequest("Unable to save key!"); 57 | 58 | return Ok(result.Entity.Id); 59 | } 60 | 61 | [HttpGet, Route("GetById")] 62 | public async Task GetById(string id) 63 | { 64 | if (string.IsNullOrEmpty(id)) return NotFound("Id is required!"); 65 | 66 | return Ok(await _repository.Find(c =>c.Id == id).SingleOrDefaultAsync()); 67 | } 68 | 69 | [HttpGet, Route("GetByKey")] 70 | public async Task GetByKey(string key) 71 | { 72 | if (string.IsNullOrEmpty(key)) return NotFound("Key is required!"); 73 | 74 | return Ok(await _repository.Find(c => c.Key == key).ToListAsync()); 75 | } 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /SampleApis/obj/SampleApis.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Joever Monceda\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder 9 | PackageReference 10 | 5.9.0 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | C:\Users\Joever Monceda\.nuget\packages\newtonsoft.json\10.0.1 28 | C:\Users\Joever Monceda\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 29 | C:\Users\Joever Monceda\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.10.13 30 | C:\Users\Joever Monceda\.nuget\packages\microsoft.entityframeworkcore.tools\3.1.14 31 | 32 | -------------------------------------------------------------------------------- /SampleApis/obj/SampleApis.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "D:\\.NetCoreMssqlDockerize\\.NetCore-Mssql-Dockerize\\SampleApis\\SampleApis.csproj": {} 5 | }, 6 | "projects": { 7 | "D:\\.NetCoreMssqlDockerize\\.NetCore-Mssql-Dockerize\\SampleApis\\SampleApis.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "D:\\.NetCoreMssqlDockerize\\.NetCore-Mssql-Dockerize\\SampleApis\\SampleApis.csproj", 11 | "projectName": "SampleApis", 12 | "projectPath": "D:\\.NetCoreMssqlDockerize\\.NetCore-Mssql-Dockerize\\SampleApis\\SampleApis.csproj", 13 | "packagesPath": "C:\\Users\\Joever Monceda\\.nuget\\packages\\", 14 | "outputPath": "D:\\.NetCoreMssqlDockerize\\.NetCore-Mssql-Dockerize\\SampleApis\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "fallbackFolders": [ 17 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", 18 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 19 | ], 20 | "configFilePaths": [ 21 | "C:\\Users\\Joever Monceda\\AppData\\Roaming\\NuGet\\NuGet.Config", 22 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", 23 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 24 | ], 25 | "originalTargetFrameworks": [ 26 | "netcoreapp3.1" 27 | ], 28 | "sources": { 29 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 30 | "http://packagesource": {}, 31 | "https://api.nuget.org/v3/index.json": {}, 32 | "https://appmannuget.azurewebsites.net/nuget": {}, 33 | "https://nuget.telerik.com/nuget": {} 34 | }, 35 | "frameworks": { 36 | "netcoreapp3.1": { 37 | "targetAlias": "netcoreapp3.1", 38 | "projectReferences": {} 39 | } 40 | }, 41 | "warningProperties": { 42 | "warnAsError": [ 43 | "NU1605" 44 | ] 45 | } 46 | }, 47 | "frameworks": { 48 | "netcoreapp3.1": { 49 | "targetAlias": "netcoreapp3.1", 50 | "dependencies": { 51 | "Microsoft.EntityFrameworkCore": { 52 | "target": "Package", 53 | "version": "[3.1.14, )" 54 | }, 55 | "Microsoft.EntityFrameworkCore.Design": { 56 | "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", 57 | "suppressParent": "All", 58 | "target": "Package", 59 | "version": "[3.1.14, )" 60 | }, 61 | "Microsoft.EntityFrameworkCore.SqlServer": { 62 | "target": "Package", 63 | "version": "[3.1.14, )" 64 | }, 65 | "Microsoft.EntityFrameworkCore.Tools": { 66 | "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", 67 | "suppressParent": "All", 68 | "target": "Package", 69 | "version": "[3.1.14, )" 70 | }, 71 | "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": { 72 | "target": "Package", 73 | "version": "[1.10.13, )" 74 | }, 75 | "Npgsql.EntityFrameworkCore.PostgreSQL": { 76 | "target": "Package", 77 | "version": "[3.1.11, )" 78 | }, 79 | "Swashbuckle.AspNetCore": { 80 | "target": "Package", 81 | "version": "[5.5.1, )" 82 | } 83 | }, 84 | "imports": [ 85 | "net461", 86 | "net462", 87 | "net47", 88 | "net471", 89 | "net472", 90 | "net48" 91 | ], 92 | "assetTargetFallback": true, 93 | "warn": true, 94 | "frameworkReferences": { 95 | "Microsoft.AspNetCore.App": { 96 | "privateAssets": "none" 97 | }, 98 | "Microsoft.NETCore.App": { 99 | "privateAssets": "all" 100 | } 101 | }, 102 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.200\\RuntimeIdentifierGraph.json" 103 | } 104 | } 105 | } 106 | } 107 | } -------------------------------------------------------------------------------- /SampleApis/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "1XclHScXlYaMI9vFKxegxAZYiSh+BSnF23O86sIbokrnMvP1TLujMX8PG8uzxoPsP/bwdrimoPMOzODm760nuA==", 4 | "success": true, 5 | "projectFilePath": "D:\\.NetCoreMssqlDockerize\\.NetCore-Mssql-Dockerize\\SampleApis\\SampleApis.csproj", 6 | "expectedPackageFiles": [ 7 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", 8 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.bcl.hashcode\\1.1.1\\microsoft.bcl.hashcode.1.1.1.nupkg.sha512", 9 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", 10 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.data.sqlclient\\1.1.3\\microsoft.data.sqlclient.1.1.3.nupkg.sha512", 11 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.entityframeworkcore\\3.1.14\\microsoft.entityframeworkcore.3.1.14.nupkg.sha512", 12 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\3.1.14\\microsoft.entityframeworkcore.abstractions.3.1.14.nupkg.sha512", 13 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\3.1.14\\microsoft.entityframeworkcore.analyzers.3.1.14.nupkg.sha512", 14 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.entityframeworkcore.design\\3.1.14\\microsoft.entityframeworkcore.design.3.1.14.nupkg.sha512", 15 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.14\\microsoft.entityframeworkcore.relational.3.1.14.nupkg.sha512", 16 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\3.1.14\\microsoft.entityframeworkcore.sqlserver.3.1.14.nupkg.sha512", 17 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\3.1.14\\microsoft.entityframeworkcore.tools.3.1.14.nupkg.sha512", 18 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", 19 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\3.1.14\\microsoft.extensions.caching.abstractions.3.1.14.nupkg.sha512", 20 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.extensions.caching.memory\\3.1.14\\microsoft.extensions.caching.memory.3.1.14.nupkg.sha512", 21 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.14\\microsoft.extensions.configuration.3.1.14.nupkg.sha512", 22 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.14\\microsoft.extensions.configuration.abstractions.3.1.14.nupkg.sha512", 23 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.14\\microsoft.extensions.configuration.binder.3.1.14.nupkg.sha512", 24 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.14\\microsoft.extensions.dependencyinjection.3.1.14.nupkg.sha512", 25 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.14\\microsoft.extensions.dependencyinjection.abstractions.3.1.14.nupkg.sha512", 26 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.extensions.logging\\3.1.14\\microsoft.extensions.logging.3.1.14.nupkg.sha512", 27 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.14\\microsoft.extensions.logging.abstractions.3.1.14.nupkg.sha512", 28 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.extensions.options\\3.1.14\\microsoft.extensions.options.3.1.14.nupkg.sha512", 29 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.14\\microsoft.extensions.primitives.3.1.14.nupkg.sha512", 30 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.identity.client\\3.0.8\\microsoft.identity.client.3.0.8.nupkg.sha512", 31 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\5.5.0\\microsoft.identitymodel.jsonwebtokens.5.5.0.nupkg.sha512", 32 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.identitymodel.logging\\5.5.0\\microsoft.identitymodel.logging.5.5.0.nupkg.sha512", 33 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.identitymodel.protocols\\5.5.0\\microsoft.identitymodel.protocols.5.5.0.nupkg.sha512", 34 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\5.5.0\\microsoft.identitymodel.protocols.openidconnect.5.5.0.nupkg.sha512", 35 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.identitymodel.tokens\\5.5.0\\microsoft.identitymodel.tokens.5.5.0.nupkg.sha512", 36 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", 37 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", 38 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.openapi\\1.1.4\\microsoft.openapi.1.1.4.nupkg.sha512", 39 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.10.13\\microsoft.visualstudio.azure.containers.tools.targets.1.10.13.nupkg.sha512", 40 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\microsoft.win32.registry\\4.5.0\\microsoft.win32.registry.4.5.0.nupkg.sha512", 41 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\newtonsoft.json\\10.0.1\\newtonsoft.json.10.0.1.nupkg.sha512", 42 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\npgsql\\4.1.8\\npgsql.4.1.8.nupkg.sha512", 43 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\3.1.11\\npgsql.entityframeworkcore.postgresql.3.1.11.nupkg.sha512", 44 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", 45 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", 46 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", 47 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", 48 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", 49 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\swashbuckle.aspnetcore\\5.5.1\\swashbuckle.aspnetcore.5.5.1.nupkg.sha512", 50 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.5.1\\swashbuckle.aspnetcore.swagger.5.5.1.nupkg.sha512", 51 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.5.1\\swashbuckle.aspnetcore.swaggergen.5.5.1.nupkg.sha512", 52 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\5.5.1\\swashbuckle.aspnetcore.swaggerui.5.5.1.nupkg.sha512", 53 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", 54 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", 55 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512", 56 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", 57 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", 58 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", 59 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", 60 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", 61 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", 62 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", 63 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", 64 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512", 65 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", 66 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", 67 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", 68 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", 69 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", 70 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.identitymodel.tokens.jwt\\5.5.0\\system.identitymodel.tokens.jwt.5.5.0.nupkg.sha512", 71 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", 72 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", 73 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", 74 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", 75 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", 76 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", 77 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", 78 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", 79 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.private.datacontractserialization\\4.3.0\\system.private.datacontractserialization.4.3.0.nupkg.sha512", 80 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", 81 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", 82 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", 83 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", 84 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", 85 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", 86 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", 87 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", 88 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", 89 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.runtime.caching\\4.5.0\\system.runtime.caching.4.5.0.nupkg.sha512", 90 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.6.0\\system.runtime.compilerservices.unsafe.4.6.0.nupkg.sha512", 91 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", 92 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", 93 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", 94 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", 95 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", 96 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.runtime.serialization.json\\4.3.0\\system.runtime.serialization.json.4.3.0.nupkg.sha512", 97 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", 98 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", 99 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", 100 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", 101 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", 102 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", 103 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", 104 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.security.securestring\\4.3.0\\system.security.securestring.4.3.0.nupkg.sha512", 105 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", 106 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.text.encoding.codepages\\4.5.0\\system.text.encoding.codepages.4.5.0.nupkg.sha512", 107 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", 108 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", 109 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", 110 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", 111 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", 112 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", 113 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", 114 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", 115 | "C:\\Users\\Joever Monceda\\.nuget\\packages\\system.xml.xmlserializer\\4.3.0\\system.xml.xmlserializer.4.3.0.nupkg.sha512" 116 | ], 117 | "logs": [] 118 | } -------------------------------------------------------------------------------- /SampleApis/obj/Debug/netcoreapp3.1/SampleApis.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\appsettings.Development.json 2 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\appsettings.json 3 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Properties\launchSettings.json 4 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\SampleApis.exe 5 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\SampleApis.deps.json 6 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\SampleApis.runtimeconfig.json 7 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\SampleApis.runtimeconfig.dev.json 8 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\SampleApis.dll 9 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\SampleApis.pdb 10 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Bcl.AsyncInterfaces.dll 11 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Bcl.HashCode.dll 12 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Data.SqlClient.dll 13 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.dll 14 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Abstractions.dll 15 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Design.dll 16 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Relational.dll 17 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.SqlServer.dll 18 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Abstractions.dll 19 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Memory.dll 20 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.dll 21 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll 22 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Binder.dll 23 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll 24 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll 25 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.dll 26 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll 27 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.dll 28 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll 29 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Identity.Client.dll 30 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.JsonWebTokens.dll 31 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Logging.dll 32 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Protocols.dll 33 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll 34 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Tokens.dll 35 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.OpenApi.dll 36 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll 37 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Npgsql.dll 38 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Npgsql.EntityFrameworkCore.PostgreSQL.dll 39 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.Swagger.dll 40 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.SwaggerGen.dll 41 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.SwaggerUI.dll 42 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\System.Collections.Immutable.dll 43 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\System.Configuration.ConfigurationManager.dll 44 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll 45 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\System.IdentityModel.Tokens.Jwt.dll 46 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\System.Runtime.Caching.dll 47 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\System.Security.Cryptography.ProtectedData.dll 48 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll 49 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll 50 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\runtimes\win-arm64\native\sni.dll 51 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\runtimes\win-x64\native\sni.dll 52 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\runtimes\win-x86\native\sni.dll 53 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.0\System.Runtime.Caching.dll 54 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Runtime.Caching.dll 55 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\bin\Debug\netcoreapp3.1\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll 56 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.csprojAssemblyReference.cache 57 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.AssemblyInfoInputs.cache 58 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.AssemblyInfo.cs 59 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.csproj.CoreCompileInputs.cache 60 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.MvcApplicationPartsAssemblyInfo.cs 61 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.MvcApplicationPartsAssemblyInfo.cache 62 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\obj\Debug\netcoreapp3.1\staticwebassets\SampleApis.StaticWebAssets.Manifest.cache 63 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\obj\Debug\netcoreapp3.1\staticwebassets\SampleApis.StaticWebAssets.xml 64 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\obj\Debug\netcoreapp3.1\scopedcss\bundle\SampleApis.styles.css 65 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.RazorTargetAssemblyInfo.cache 66 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.csproj.CopyComplete 67 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.dll 68 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.pdb 69 | C:\Users\Joever Monceda\source\repos\SampleApis - Copy\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.genruntimeconfig.cache 70 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\appsettings.Development.json 71 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\appsettings.json 72 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Properties\launchSettings.json 73 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\SampleApis.exe 74 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\SampleApis.deps.json 75 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\SampleApis.runtimeconfig.json 76 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\SampleApis.runtimeconfig.dev.json 77 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\SampleApis.dll 78 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\SampleApis.pdb 79 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Bcl.AsyncInterfaces.dll 80 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Bcl.HashCode.dll 81 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Data.SqlClient.dll 82 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.dll 83 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Abstractions.dll 84 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Design.dll 85 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Relational.dll 86 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.SqlServer.dll 87 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Abstractions.dll 88 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Memory.dll 89 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.dll 90 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll 91 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Binder.dll 92 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll 93 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll 94 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.dll 95 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll 96 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.dll 97 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll 98 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.Identity.Client.dll 99 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.JsonWebTokens.dll 100 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Logging.dll 101 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Protocols.dll 102 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll 103 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Tokens.dll 104 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Microsoft.OpenApi.dll 105 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll 106 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Npgsql.dll 107 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Npgsql.EntityFrameworkCore.PostgreSQL.dll 108 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.Swagger.dll 109 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.SwaggerGen.dll 110 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.SwaggerUI.dll 111 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\System.Collections.Immutable.dll 112 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\System.Configuration.ConfigurationManager.dll 113 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll 114 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\System.IdentityModel.Tokens.Jwt.dll 115 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\System.Runtime.Caching.dll 116 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\System.Security.Cryptography.ProtectedData.dll 117 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll 118 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll 119 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\runtimes\win-arm64\native\sni.dll 120 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\runtimes\win-x64\native\sni.dll 121 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\runtimes\win-x86\native\sni.dll 122 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.0\System.Runtime.Caching.dll 123 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Runtime.Caching.dll 124 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\bin\Debug\netcoreapp3.1\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll 125 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.csprojAssemblyReference.cache 126 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.AssemblyInfoInputs.cache 127 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.AssemblyInfo.cs 128 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.csproj.CoreCompileInputs.cache 129 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.MvcApplicationPartsAssemblyInfo.cs 130 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.MvcApplicationPartsAssemblyInfo.cache 131 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\obj\Debug\netcoreapp3.1\staticwebassets\SampleApis.StaticWebAssets.Manifest.cache 132 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\obj\Debug\netcoreapp3.1\staticwebassets\SampleApis.StaticWebAssets.xml 133 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\obj\Debug\netcoreapp3.1\scopedcss\bundle\SampleApis.styles.css 134 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.RazorTargetAssemblyInfo.cache 135 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.csproj.CopyComplete 136 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.dll 137 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.pdb 138 | D:\.NetCoreMssqlDockerize\.NetCore-Mssql-Dockerize\SampleApis\obj\Debug\netcoreapp3.1\SampleApis.genruntimeconfig.cache 139 | -------------------------------------------------------------------------------- /.vs/SampleApis/config/applicationhost.config: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 48 | 49 | 50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 | 59 | 60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 | 79 |
80 |
81 | 82 |
83 |
84 |
85 |
86 |
87 |
88 | 89 |
90 |
91 |
92 |
93 |
94 | 95 |
96 |
97 |
98 | 99 |
100 |
101 | 102 |
103 |
104 | 105 |
106 |
107 |
108 | 109 | 110 |
111 |
112 |
113 |
114 |
115 |
116 | 117 |
118 |
119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | 661 | 662 | 663 | 664 | 665 | 666 | 667 | 668 | 669 | 670 | 671 | 672 | 673 | 674 | 675 | 676 | 677 | 678 | 679 | 680 | 681 | 682 | 683 | 684 | 685 | 686 | 687 | 688 | 689 | 690 | 691 | 692 | 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 706 | 707 | 708 | 709 | 710 | 711 | 712 | 713 | 714 | 715 | 716 | 717 | 718 | 719 | 720 | 721 | 722 | 723 | 724 | 725 | 726 | 727 | 728 | 729 | 730 | 731 | 732 | 733 | 734 | 735 | 736 | 737 | 738 | 739 | 740 | 741 | 742 | 743 | 744 | 745 | 746 | 747 | 748 | 749 | 750 | 751 | 752 | 753 | 754 | 755 | 756 | 757 | 758 | 759 | 760 | 761 | 762 | 763 | 764 | 765 | 766 | 767 | 768 | 769 | 770 | 771 | 772 | 773 | 774 | 775 | 776 | 777 | 778 | 779 | 780 | 781 | 782 | 783 | 784 | 785 | 786 | 787 | 788 | 789 | 790 | 791 | 792 | 793 | 794 | 795 | 796 | 797 | 798 | 799 | 800 | 801 | 802 | 803 | 804 | 805 | 806 | 807 | 808 | 809 | 810 | 811 | 812 | 813 | 814 | 815 | 816 | 817 | 818 | 819 | 820 | 821 | 822 | 823 | 824 | 825 | 826 | 827 | 828 | 829 | 830 | 831 | 832 | 833 | 834 | 835 | 836 | 837 | 838 | 839 | 840 | 841 | 842 | 843 | 844 | 845 | 846 | 847 | 848 | 849 | 850 | 851 | 852 | 853 | 854 | 855 | 856 | 857 | 858 | 859 | 860 | 861 | 862 | 863 | 864 | 865 | 866 | 867 | 868 | 869 | 870 | 871 | 872 | 873 | 874 | 875 | 876 | 877 | 878 | 879 | 880 | 881 | 882 | 883 | 884 | 885 | 886 | 887 | 888 | 889 | 890 | 891 | 892 | 893 | 894 | 895 | 896 | 897 | 898 | 899 | 900 | 901 | 902 | 903 | 904 | 905 | 906 | 907 | 908 | 909 | 910 | 911 | 912 | 913 | 914 | 915 | 916 | 917 | 918 | 919 | 920 | 921 | 922 | 923 | 924 | 925 | 926 | 927 | 928 | 929 | 930 | 931 | 932 | 933 | 934 | 935 | 936 | 937 | 938 | 939 | 940 | 941 | 942 | 943 | 944 | 945 | 946 | 947 | 948 | 949 | 950 | 951 | 952 | 953 | 954 | 955 | 956 | 957 | 958 | 959 | 960 | 961 | 962 | 963 | 964 | 965 | 966 | 967 | 968 | 969 | 970 | 971 | 972 | 973 | 974 | 975 | 976 | 977 | 978 | 979 | 980 | 981 | 982 | 983 | 984 | 985 | 986 | 987 | 988 | 989 | 990 | 991 | 992 | 993 | 994 | 995 | --------------------------------------------------------------------------------