diff --git a/dotnetproject/dotnetmsAddCustomer/.config/dotnet-tools.json b/dotnetproject/dotnetmsAddCustomer/.config/dotnet-tools.json new file mode 100644 index 0000000..3ba0fe6 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/.config/dotnet-tools.json @@ -0,0 +1,12 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "dotnet-ef": { + "version": "6.0.0", + "commands": [ + "dotnet-ef" + ] + } + } +} \ No newline at end of file diff --git a/dotnetproject/dotnetmsAddCustomer/Controllers/CustomerController.cs b/dotnetproject/dotnetmsAddCustomer/Controllers/CustomerController.cs index 9acdc08..8d936c4 100644 --- a/dotnetproject/dotnetmsAddCustomer/Controllers/CustomerController.cs +++ b/dotnetproject/dotnetmsAddCustomer/Controllers/CustomerController.cs @@ -1,7 +1,7 @@ using Microsoft.AspNetCore.Mvc; -using dotnetwebapiAddCustomer.Models; +using dotnetmsAddCustomer.Models; -namespace dotnetwebapiAddCustomer.Controllers; +namespace dotnetmsAddCustomer.Controllers; [ApiController] [Route("[controller]")] diff --git a/dotnetproject/dotnetmsAddCustomer/Migrations/20230921141952_SetupTables.Designer.cs b/dotnetproject/dotnetmsAddCustomer/Migrations/20230921141952_SetupTables.Designer.cs new file mode 100644 index 0000000..ded3c19 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/Migrations/20230921141952_SetupTables.Designer.cs @@ -0,0 +1,57 @@ +// +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using dotnetmsAddCustomer.Models; + +#nullable disable + +namespace dotnetmsAddCustomer.Migrations +{ + [DbContext(typeof(CustomerDbContext))] + [Migration("20230921141952_SetupTables")] + partial class SetupTables + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "6.0.0") + .HasAnnotation("Relational:MaxIdentifierLength", 128); + + SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder, 1L, 1); + + modelBuilder.Entity("dotnetmsAddCustomer.Models.Customer", b => + { + b.Property("CustomerId") + .ValueGeneratedOnAdd() + .HasColumnType("int") + .HasColumnName("customer_id"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("CustomerId"), 1L, 1); + + b.Property("CustomerName") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("customer_name"); + + b.Property("Email") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("customer_email"); + + b.Property("MobileNumber") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("customer_mobilenumber"); + + b.HasKey("CustomerId"); + + b.ToTable("customer", "dbo"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/dotnetproject/dotnetmsAddCustomer/Migrations/20230921141952_SetupTables.cs b/dotnetproject/dotnetmsAddCustomer/Migrations/20230921141952_SetupTables.cs new file mode 100644 index 0000000..2c35dd4 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/Migrations/20230921141952_SetupTables.cs @@ -0,0 +1,38 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace dotnetmsAddCustomer.Migrations +{ + public partial class SetupTables : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.EnsureSchema( + name: "dbo"); + + migrationBuilder.CreateTable( + name: "customer", + schema: "dbo", + columns: table => new + { + customer_id = table.Column(type: "int", nullable: false) + .Annotation("SqlServer:Identity", "1, 1"), + customer_name = table.Column(type: "nvarchar(max)", nullable: false), + customer_mobilenumber = table.Column(type: "nvarchar(max)", nullable: false), + customer_email = table.Column(type: "nvarchar(max)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_customer", x => x.customer_id); + }); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "customer", + schema: "dbo"); + } + } +} diff --git a/dotnetproject/dotnetmsAddCustomer/Migrations/CustomerDbContextModelSnapshot.cs b/dotnetproject/dotnetmsAddCustomer/Migrations/CustomerDbContextModelSnapshot.cs new file mode 100644 index 0000000..c7f2d54 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/Migrations/CustomerDbContextModelSnapshot.cs @@ -0,0 +1,55 @@ +// +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using dotnetmsAddCustomer.Models; + +#nullable disable + +namespace dotnetmsAddCustomer.Migrations +{ + [DbContext(typeof(CustomerDbContext))] + partial class CustomerDbContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "6.0.0") + .HasAnnotation("Relational:MaxIdentifierLength", 128); + + SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder, 1L, 1); + + modelBuilder.Entity("dotnetmsAddCustomer.Models.Customer", b => + { + b.Property("CustomerId") + .ValueGeneratedOnAdd() + .HasColumnType("int") + .HasColumnName("customer_id"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("CustomerId"), 1L, 1); + + b.Property("CustomerName") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("customer_name"); + + b.Property("Email") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("customer_email"); + + b.Property("MobileNumber") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("customer_mobilenumber"); + + b.HasKey("CustomerId"); + + b.ToTable("customer", "dbo"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/dotnetproject/dotnetmsAddCustomer/appsettings.json b/dotnetproject/dotnetmsAddCustomer/appsettings.json index 686be58..e2dc0f3 100644 --- a/dotnetproject/dotnetmsAddCustomer/appsettings.json +++ b/dotnetproject/dotnetmsAddCustomer/appsettings.json @@ -7,6 +7,6 @@ }, "AllowedHosts": "*", "ConnectionStrings": { - "MyConnString":"User ID=sa;password=examlyMssql@123;server=dffafdafebcfacbdcbaeadbebabcdebdca-0;Database=CheckDB;trusted_connection=false;Persist Security Info=False;Encrypt=False;" + "MyConnString":"User ID=sa;password=examlyMssql@123;server=localhost;Database=CheckDB;trusted_connection=false;Persist Security Info=False;Encrypt=False;" } } diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Humanizer.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Humanizer.dll new file mode 100755 index 0000000..df62d3f Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Humanizer.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll new file mode 100755 index 0000000..3114e92 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100755 index 0000000..0a79cd4 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll new file mode 100755 index 0000000..c3aee3c Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.InMemory.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.InMemory.dll new file mode 100755 index 0000000..4c6c1c3 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.InMemory.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100755 index 0000000..4abf6c6 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll new file mode 100755 index 0000000..8cedbfd Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll new file mode 100755 index 0000000..e5b45ae Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.Identity.Client.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.Identity.Client.dll new file mode 100755 index 0000000..c01fcbf Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.Identity.Client.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100755 index 0000000..70b84f2 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll new file mode 100755 index 0000000..7ecc3be Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100755 index 0000000..d925b5b Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll new file mode 100755 index 0000000..17423cc Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll new file mode 100755 index 0000000..dd66624 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.OpenApi.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.OpenApi.dll new file mode 100755 index 0000000..14f3ded Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.OpenApi.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100755 index 0000000..e27fe8d Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100755 index 0000000..eeedcc3 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100755 index 0000000..e62acf4 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100755 index 0000000..146c383 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll new file mode 100755 index 0000000..6f34b8d Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Drawing.Common.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Drawing.Common.dll new file mode 100755 index 0000000..69e5f5c Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Drawing.Common.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll new file mode 100755 index 0000000..efd3c61 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Runtime.Caching.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Runtime.Caching.dll new file mode 100755 index 0000000..6fedfab Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Runtime.Caching.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll new file mode 100755 index 0000000..a60b95b Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Security.Permissions.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Security.Permissions.dll new file mode 100755 index 0000000..76faf41 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Security.Permissions.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Windows.Extensions.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Windows.Extensions.dll new file mode 100755 index 0000000..7f075b2 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Windows.Extensions.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/appsettings.Development.json b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/appsettings.Development.json new file mode 100644 index 0000000..ff66ba6 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/appsettings.json b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/appsettings.json new file mode 100644 index 0000000..e2dc0f3 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/appsettings.json @@ -0,0 +1,12 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "ConnectionStrings": { + "MyConnString":"User ID=sa;password=examlyMssql@123;server=localhost;Database=CheckDB;trusted_connection=false;Persist Security Info=False;Encrypt=False;" + } +} diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer new file mode 100755 index 0000000..e4a658c Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer.deps.json b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer.deps.json new file mode 100644 index 0000000..feeb3ad --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer.deps.json @@ -0,0 +1,850 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "dotnetmsAddCustomer/1.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "6.0.0", + "Microsoft.EntityFrameworkCore.Design": "6.0.0", + "Microsoft.EntityFrameworkCore.InMemory": "6.0.0", + "Microsoft.EntityFrameworkCore.SqlServer": "6.0.0", + "Microsoft.EntityFrameworkCore.Tools": "6.0.0", + "Swashbuckle.AspNetCore": "6.0.0" + }, + "runtime": { + "dotnetmsAddCustomer.dll": {} + } + }, + "Humanizer.Core/2.8.26": { + "runtime": { + "lib/netstandard2.0/Humanizer.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.26.1919" + } + } + }, + "Microsoft.CSharp/4.5.0": {}, + "Microsoft.Data.SqlClient/2.1.4": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "Microsoft.EntityFrameworkCore/6.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.0", + "Microsoft.EntityFrameworkCore.Analyzers": "6.0.0", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "System.Collections.Immutable": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52301" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52301" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/6.0.0": {}, + "Microsoft.EntityFrameworkCore.Design/6.0.0": { + "dependencies": { + "Humanizer.Core": "2.8.26", + "Microsoft.EntityFrameworkCore.Relational": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52301" + } + } + }, + "Microsoft.EntityFrameworkCore.InMemory/6.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.InMemory.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52301" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/6.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52301" + } + } + }, + "Microsoft.EntityFrameworkCore.SqlServer/6.0.0": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.4", + "Microsoft.EntityFrameworkCore.Relational": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52301" + } + } + }, + "Microsoft.EntityFrameworkCore.Tools/6.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "6.0.0" + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "Swashbuckle.AspNetCore/6.0.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.0.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.0.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.0.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.0.0": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.0.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.0.0": { + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + } + }, + "System.Collections.Immutable/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + } + } + }, + "libraries": { + "dotnetmsAddCustomer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Humanizer.Core/2.8.26": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==", + "path": "humanizer.core/2.8.26", + "hashPath": "humanizer.core.2.8.26.nupkg.sha512" + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "path": "microsoft.csharp/4.5.0", + "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cDcKBTKILdRuAzJjbgXwGcUQXzMue+SG02kD4tZTXXfoz4ALrGLpCnA5k9khw3fnAMlMnRzLIGuvRdJurqmESA==", + "path": "microsoft.data.sqlclient/2.1.4", + "hashPath": "microsoft.data.sqlclient.2.1.4.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BdHAtHzfQt3rltgSoYamSlHg2qawPtEDT677/bcSJlO8lQ/lj6XWlusM0TOt59O8Sbqm3hAC1a+4cEBxmv56pw==", + "path": "microsoft.entityframeworkcore/6.0.0", + "hashPath": "microsoft.entityframeworkcore.6.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MrMLWEw4JsZdkVci0MkkGj+fSjZrXnm3m6UNuIEwytiAAIZPvJs3iPpnzfK4qM7np82W374voYm96q7QCdL0ow==", + "path": "microsoft.entityframeworkcore.abstractions/6.0.0", + "hashPath": "microsoft.entityframeworkcore.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BqWBL05PUDKwPwLeQCJdc2R4cIUycXV9UmuSjYfux2fcgyet8I2eYnOWlA7NgsDwRVcxW26vxvNQ0wuc8UAcLA==", + "path": "microsoft.entityframeworkcore.analyzers/6.0.0", + "hashPath": "microsoft.entityframeworkcore.analyzers.6.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RFdomymyuPNffl+VPk7osdxCJQ0xlGuxr28ifdfFFNUaMK0OYiJOjr6w9z3kscOM2p2gdPWNI1IFUXllEyphow==", + "path": "microsoft.entityframeworkcore.design/6.0.0", + "hashPath": "microsoft.entityframeworkcore.design.6.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.InMemory/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WJmphvCn0wue9AX+Wvqj3XZ3ehNi9oyYBFNLtHVNvKqZrcimXBOqLo5RNf1fJWYSLWhOia/vzG4JtkAeZxZ8FQ==", + "path": "microsoft.entityframeworkcore.inmemory/6.0.0", + "hashPath": "microsoft.entityframeworkcore.inmemory.6.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rTRzrSbkUXoCGijlT9O7oq7JfuaU1/+VFyfSBjADQuOsfa0FCrWeB8ybue5CDvO/D6uW0kvPvlKfY2kwxXOOdg==", + "path": "microsoft.entityframeworkcore.relational/6.0.0", + "hashPath": "microsoft.entityframeworkcore.relational.6.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.SqlServer/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1rYYHrvOIN1bXyN9qAVd0WhmTjbZNosyrMoAL4wRiw5pu65QazwjuVV6K1IWKD4AXPxQD7+k4CxAMVTPY//UrA==", + "path": "microsoft.entityframeworkcore.sqlserver/6.0.0", + "hashPath": "microsoft.entityframeworkcore.sqlserver.6.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Tools/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m9e6nFnkyRdKcrTFO8rl3ZihCIKrYdECw+fHZVbKz6TBMwKhih/N0sjPnNt0k7sZPvI8izKPkh1d+z4OR2qgXQ==", + "path": "microsoft.entityframeworkcore.tools/6.0.0", + "hashPath": "microsoft.entityframeworkcore.tools.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", + "path": "microsoft.extensions.caching.abstractions/6.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==", + "path": "microsoft.extensions.caching.memory/6.0.0", + "hashPath": "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VxukQYrUrxNUWQocOxmxua/4fZOPBdGCLSaoZYRNthZae0UXB+fzjTBTlj24fZEQrP+QTnsRwSygN9jNBqm/hg==", + "path": "swashbuckle.aspnetcore/6.0.0", + "hashPath": "swashbuckle.aspnetcore.6.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-onkGK5eDFmyNy605E5ZaT5oXEGsQJz2UEKsUOqYCZRBC2Fi6MbByUl+qznyl3pZ9/4nTvukUjt9+v28qvJPk/Q==", + "path": "swashbuckle.aspnetcore.swagger/6.0.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RXY21STD/yo4Uzy1L5GoRrEQQWoOosw0QBYo572VwcjePmpV1yFFHsTeThlMNBWKoTt6xadIdSjZj0FmDFYL2A==", + "path": "swashbuckle.aspnetcore.swaggergen/6.0.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VusRaCFt2As3SXBJmUOGA40IGr6ao+vsvDi7jbCS4AFx69kUUm8zxIHeJVqGov3w4lQowVxv8gmonRXDRh1FvQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.0.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.0.0.nupkg.sha512" + }, + "System.Collections.Immutable/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", + "path": "system.collections.immutable/6.0.0", + "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer.dll new file mode 100644 index 0000000..c77c634 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer.pdb b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer.pdb new file mode 100644 index 0000000..1a28a54 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer.pdb differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer.runtimeconfig.json b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer.runtimeconfig.json new file mode 100644 index 0000000..dfb1b77 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "6.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100755 index 0000000..3a19d3d Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll new file mode 100755 index 0000000..231e75a Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100755 index 0000000..3068646 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100755 index 0000000..965f535 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100755 index 0000000..227b87b Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100755 index 0000000..0add8c2 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll new file mode 100755 index 0000000..c49c358 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100755 index 0000000..9a04b68 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll new file mode 100755 index 0000000..3fb4939 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll new file mode 100755 index 0000000..0269777 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll new file mode 100755 index 0000000..175d085 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll new file mode 100755 index 0000000..d8f2f45 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/apphost b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/apphost new file mode 100755 index 0000000..e4a658c Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/apphost differ diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.CopyComplete b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.CoreCompileInputs.cache b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.CoreCompileInputs.cache index 20c6544..836f17d 100644 --- a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.CoreCompileInputs.cache +++ b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -e63075c3c4154acafa89362d54ef9ddb3976fe87 +7df7e5c37f6b87773a32a7b67584a38ebfc99fb9 diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.FileListAbsolute.txt b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.FileListAbsolute.txt index 0129133..5262685 100644 --- a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.FileListAbsolute.txt +++ b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.FileListAbsolute.txt @@ -5,3 +5,57 @@ /home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.CoreCompileInputs.cache /home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.MvcApplicationPartsAssemblyInfo.cs /home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.MvcApplicationPartsAssemblyInfo.cache +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/appsettings.Development.json +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/appsettings.json +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer.deps.json +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer.runtimeconfig.json +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/dotnetmsAddCustomer.pdb +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Humanizer.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.InMemory.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.Identity.Client.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.OpenApi.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Drawing.Common.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Runtime.Caching.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Security.Permissions.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/System.Windows.Extensions.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/staticwebassets.build.json +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/staticwebassets.development.json +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/scopedcss/bundle/dotnetmsAddCustomer.styles.css +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.CopyComplete +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/refint/dotnetmsAddCustomer.dll +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.pdb +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.genruntimeconfig.cache +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/ref/dotnetmsAddCustomer.dll diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.dll b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.dll new file mode 100644 index 0000000..c77c634 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.genruntimeconfig.cache b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.genruntimeconfig.cache new file mode 100644 index 0000000..0a78b31 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.genruntimeconfig.cache @@ -0,0 +1 @@ +7975e1df69af9adca38cb3b5b175566acd694978 diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.pdb b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.pdb new file mode 100644 index 0000000..1a28a54 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.pdb differ diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/ref/dotnetmsAddCustomer.dll b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/ref/dotnetmsAddCustomer.dll new file mode 100644 index 0000000..2bdae89 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/ref/dotnetmsAddCustomer.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/refint/dotnetmsAddCustomer.dll b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/refint/dotnetmsAddCustomer.dll new file mode 100644 index 0000000..2bdae89 Binary files /dev/null and b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/refint/dotnetmsAddCustomer.dll differ diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/staticwebassets.build.json b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/staticwebassets.build.json new file mode 100644 index 0000000..f4fbdcd --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "jkkfTq2h9EnckOiVB9rYpqaek2f6AGJcFuUXChzhL/0=", + "Source": "dotnetmsAddCustomer", + "BasePath": "_content/dotnetmsAddCustomer", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/dotnetproject/dotnetmsAddCustomer/obj/dotnetmsAddCustomer.csproj.EntityFrameworkCore.targets b/dotnetproject/dotnetmsAddCustomer/obj/dotnetmsAddCustomer.csproj.EntityFrameworkCore.targets new file mode 100644 index 0000000..6b67a59 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/obj/dotnetmsAddCustomer.csproj.EntityFrameworkCore.targets @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dotnetproject/dotnetmsAddCustomer/obj/staticwebassets.pack.sentinel b/dotnetproject/dotnetmsAddCustomer/obj/staticwebassets.pack.sentinel new file mode 100644 index 0000000..e68595a --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/obj/staticwebassets.pack.sentinel @@ -0,0 +1,5 @@ +2.0 +2.0 +2.0 +2.0 +2.0