WIP dependency Injection
This commit is contained in:
@@ -14,9 +14,15 @@ namespace DaSaSo.EntityFramework
|
||||
{
|
||||
}
|
||||
|
||||
public DbSet<Client> Clients { get; set; }
|
||||
public DbSet<Project> Projects { get; set; }
|
||||
public DbSet<Buildingsite> Buildingsites { get; set; }
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
|
||||
base.OnModelCreating(modelBuilder);
|
||||
}
|
||||
|
||||
public DbSet<Client>? Clients { get; set; }
|
||||
public DbSet<Project>? Projects { get; set; }
|
||||
public DbSet<Buildingsite>? Buildingsites { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,10 +10,10 @@ namespace DaSaSo.EntityFramework
|
||||
{
|
||||
public class DaSaSoDbContextFactory : IDesignTimeDbContextFactory<DaSaSoDbContext>
|
||||
{
|
||||
public DaSaSoDbContext CreateDbContext(string[] args = null)
|
||||
public DaSaSoDbContext CreateDbContext(string[]? args = null)
|
||||
{
|
||||
var options = new DbContextOptionsBuilder<DaSaSoDbContext>();
|
||||
options.UseNpgsql("Host = 192.168.122.1; Database = dasaso; Username = kansan; Password = kansan");
|
||||
options.UseNpgsql("Host = localhost; Database = dasaso; Username = kansan; Password = kansan");
|
||||
return new DaSaSoDbContext(options.Options);
|
||||
}
|
||||
}
|
||||
|
||||
191
DaSaSo.EntityFramework/Migrations/20210913113208_StreetAdded.Designer.cs
generated
Normal file
191
DaSaSo.EntityFramework/Migrations/20210913113208_StreetAdded.Designer.cs
generated
Normal file
@@ -0,0 +1,191 @@
|
||||
// <auto-generated />
|
||||
using System;
|
||||
using DaSaSo.EntityFramework;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||
|
||||
namespace DaSaSo.EntityFramework.Migrations
|
||||
{
|
||||
[DbContext(typeof(DaSaSoDbContext))]
|
||||
[Migration("20210913113208_StreetAdded")]
|
||||
partial class StreetAdded
|
||||
{
|
||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||
{
|
||||
#pragma warning disable 612, 618
|
||||
modelBuilder
|
||||
.HasAnnotation("Relational:MaxIdentifierLength", 63)
|
||||
.HasAnnotation("ProductVersion", "6.0.0-preview.7.21378.4")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
modelBuilder.Entity("DaSaSo.Domain.Model.Buildingsite", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<string>("BuildingSiteNumber")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("ContactPerson")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("Country")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<int?>("ProjectId")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("ProjectId");
|
||||
|
||||
b.ToTable("Buildingsites");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DaSaSo.Domain.Model.Client", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<string>("Country")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("Firstname")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("LastName")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("Postcode")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("Street")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Clients");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DaSaSo.Domain.Model.Project", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<int>("ClientId")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("Name")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("ClientId");
|
||||
|
||||
b.ToTable("Projects");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DaSaSo.Domain.Model.SewerObjects", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<int>("BuildingSiteId")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<int>("DN")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("ObjektName")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("PointFrom")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("PointTo")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<decimal>("SewerLength")
|
||||
.HasColumnType("numeric");
|
||||
|
||||
b.Property<string>("StreetName")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("BuildingSiteId");
|
||||
|
||||
b.ToTable("SewerObjects");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DaSaSo.Domain.Model.Buildingsite", b =>
|
||||
{
|
||||
b.HasOne("DaSaSo.Domain.Model.Project", null)
|
||||
.WithMany("BuildingSites")
|
||||
.HasForeignKey("ProjectId");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DaSaSo.Domain.Model.Project", b =>
|
||||
{
|
||||
b.HasOne("DaSaSo.Domain.Model.Client", "Client")
|
||||
.WithMany("Projects")
|
||||
.HasForeignKey("ClientId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("Client");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DaSaSo.Domain.Model.SewerObjects", b =>
|
||||
{
|
||||
b.HasOne("DaSaSo.Domain.Model.Buildingsite", "BuildingSite")
|
||||
.WithMany("SewerObjects")
|
||||
.HasForeignKey("BuildingSiteId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("BuildingSite");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DaSaSo.Domain.Model.Buildingsite", b =>
|
||||
{
|
||||
b.Navigation("SewerObjects");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DaSaSo.Domain.Model.Client", b =>
|
||||
{
|
||||
b.Navigation("Projects");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DaSaSo.Domain.Model.Project", b =>
|
||||
{
|
||||
b.Navigation("BuildingSites");
|
||||
});
|
||||
#pragma warning restore 612, 618
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
namespace DaSaSo.EntityFramework.Migrations
|
||||
{
|
||||
public partial class StreetAdded : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "Street",
|
||||
table: "Clients",
|
||||
type: "text",
|
||||
nullable: false,
|
||||
defaultValue: "");
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "Street",
|
||||
table: "Clients");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -71,6 +71,10 @@ namespace DaSaSo.EntityFramework.Migrations
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("Street")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Clients");
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using DaSaSo.Domain.Model;
|
||||
using DaSaSo.Domain.Service;
|
||||
using DaSaSo.Domain.Services;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.ChangeTracking;
|
||||
using System;
|
||||
@@ -72,3 +72,6 @@ namespace DaSaSo.EntityFramework.Services
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//764 / 21
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1,400 +0,0 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"DaSaSo.EntityFramework/1.0.0": {
|
||||
"dependencies": {
|
||||
"DaSaSo.Domain": "1.0.0",
|
||||
"Microsoft.EntityFrameworkCore": "6.0.0-preview.7.21378.4",
|
||||
"Microsoft.EntityFrameworkCore.Tools": "6.0.0-preview.7.21378.4",
|
||||
"Npgsql.EntityFrameworkCore.PostgreSQL": "6.0.0-preview7"
|
||||
},
|
||||
"runtime": {
|
||||
"DaSaSo.EntityFramework.dll": {}
|
||||
}
|
||||
},
|
||||
"Humanizer.Core/2.8.26": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Humanizer.dll": {
|
||||
"assemblyVersion": "2.8.0.0",
|
||||
"fileVersion": "2.8.26.1919"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore/6.0.0-preview.7.21378.4": {
|
||||
"dependencies": {
|
||||
"Microsoft.EntityFrameworkCore.Abstractions": "6.0.0-preview.7.21378.4",
|
||||
"Microsoft.EntityFrameworkCore.Analyzers": "6.0.0-preview.7.21378.4",
|
||||
"Microsoft.Extensions.Caching.Memory": "6.0.0-preview.7.21377.19",
|
||||
"Microsoft.Extensions.DependencyInjection": "6.0.0-preview.7.21377.19",
|
||||
"Microsoft.Extensions.Logging": "6.0.0-preview.7.21377.19",
|
||||
"System.Collections.Immutable": "6.0.0-preview.7.21377.19",
|
||||
"System.Diagnostics.DiagnosticSource": "6.0.0-preview.7.21377.19"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.21.37804"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Abstractions/6.0.0-preview.7.21378.4": {
|
||||
"runtime": {
|
||||
"lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.21.37804"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Analyzers/6.0.0-preview.7.21378.4": {},
|
||||
"Microsoft.EntityFrameworkCore.Design/6.0.0-preview.7.21378.4": {
|
||||
"dependencies": {
|
||||
"Humanizer.Core": "2.8.26",
|
||||
"Microsoft.EntityFrameworkCore.Relational": "6.0.0-preview.7.21378.4"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.21.37804"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Relational/6.0.0-preview.7.21378.4": {
|
||||
"dependencies": {
|
||||
"Microsoft.EntityFrameworkCore": "6.0.0-preview.7.21378.4",
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "6.0.0-preview.7.21377.19"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.21.37804"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Tools/6.0.0-preview.7.21378.4": {
|
||||
"dependencies": {
|
||||
"Microsoft.EntityFrameworkCore.Design": "6.0.0-preview.7.21378.4"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Caching.Abstractions/6.0.0-preview.7.21377.19": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.21.37719"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Caching.Memory/6.0.0-preview.7.21377.19": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Caching.Abstractions": "6.0.0-preview.7.21377.19",
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "6.0.0-preview.7.21377.19",
|
||||
"Microsoft.Extensions.Options": "6.0.0-preview.7.21377.19",
|
||||
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.21.37719"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Abstractions/6.0.0-preview.7.21377.19": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.21.37719"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection/6.0.0-preview.7.21377.19": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
|
||||
"System.Runtime.CompilerServices.Unsafe": "6.0.0-preview.7.21377.19"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.21.37719"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0-preview.7.21377.19": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.21.37719"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging/6.0.0-preview.7.21377.19": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection": "6.0.0-preview.7.21377.19",
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "6.0.0-preview.7.21377.19",
|
||||
"Microsoft.Extensions.Options": "6.0.0-preview.7.21377.19",
|
||||
"System.Diagnostics.DiagnosticSource": "6.0.0-preview.7.21377.19"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.21.37719"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/6.0.0-preview.7.21377.19": {
|
||||
"dependencies": {
|
||||
"System.Buffers": "4.5.1",
|
||||
"System.Memory": "4.5.4"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.21.37719"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Options/6.0.0-preview.7.21377.19": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0-preview.7.21377.19",
|
||||
"Microsoft.Extensions.Primitives": "6.0.0-preview.7.21377.19"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.21.37719"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/6.0.0-preview.7.21377.19": {
|
||||
"dependencies": {
|
||||
"System.Runtime.CompilerServices.Unsafe": "6.0.0-preview.7.21377.19"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/Microsoft.Extensions.Primitives.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.21.37719"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Npgsql/6.0.0-preview7": {
|
||||
"dependencies": {
|
||||
"System.Runtime.CompilerServices.Unsafe": "6.0.0-preview.7.21377.19"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/Npgsql.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Npgsql.EntityFrameworkCore.PostgreSQL/6.0.0-preview7": {
|
||||
"dependencies": {
|
||||
"Microsoft.EntityFrameworkCore": "6.0.0-preview.7.21378.4",
|
||||
"Microsoft.EntityFrameworkCore.Abstractions": "6.0.0-preview.7.21378.4",
|
||||
"Microsoft.EntityFrameworkCore.Relational": "6.0.0-preview.7.21378.4",
|
||||
"Npgsql": "6.0.0-preview7"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Buffers/4.5.1": {},
|
||||
"System.Collections.Immutable/6.0.0-preview.7.21377.19": {},
|
||||
"System.Diagnostics.DiagnosticSource/6.0.0-preview.7.21377.19": {},
|
||||
"System.Memory/4.5.4": {},
|
||||
"System.Runtime.CompilerServices.Unsafe/6.0.0-preview.7.21377.19": {},
|
||||
"DaSaSo.Domain/1.0.0": {
|
||||
"runtime": {
|
||||
"DaSaSo.Domain.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"DaSaSo.EntityFramework/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.EntityFrameworkCore/6.0.0-preview.7.21378.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-BdupTWakC6DOZ4/+nsTXDYiyshJsdNvxIq3e++qHYyOU12awyHHF//ISmqJvZgC6lKTEn/0gKHQcMZwtLZiAnA==",
|
||||
"path": "microsoft.entityframeworkcore/6.0.0-preview.7.21378.4",
|
||||
"hashPath": "microsoft.entityframeworkcore.6.0.0-preview.7.21378.4.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Abstractions/6.0.0-preview.7.21378.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-OBWmLgRYZLKu+umANQVnYCSvQbjEkQOfOSVAbyTUfvkAAKZXbSGr9DWi9uFjTk6E5/6a+aBQP4onnEfHhYwPsg==",
|
||||
"path": "microsoft.entityframeworkcore.abstractions/6.0.0-preview.7.21378.4",
|
||||
"hashPath": "microsoft.entityframeworkcore.abstractions.6.0.0-preview.7.21378.4.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Analyzers/6.0.0-preview.7.21378.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-4TYb+ZCPZ2/+pj4d/cpYXKQm4g7cP4J5jZR9UfJJXvOkOyakxcckYZVU3UT118UDTNW4D6YAB11ItsJ/+9J7GQ==",
|
||||
"path": "microsoft.entityframeworkcore.analyzers/6.0.0-preview.7.21378.4",
|
||||
"hashPath": "microsoft.entityframeworkcore.analyzers.6.0.0-preview.7.21378.4.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Design/6.0.0-preview.7.21378.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-3buBoJUKSAF61I43t23OoRoZk8oeWxrqCC1r7c9fbf+FNPhMV+6VNHZ7xV0uGA23qYptG/PDoyuWmpjn5da24Q==",
|
||||
"path": "microsoft.entityframeworkcore.design/6.0.0-preview.7.21378.4",
|
||||
"hashPath": "microsoft.entityframeworkcore.design.6.0.0-preview.7.21378.4.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Relational/6.0.0-preview.7.21378.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-thmbe4H6s2h4XpKMOGSO5ke/XOU5xF5Y3r1nc9GP9fPORTbNtheOiXL2ivVJ7TyGN83d105iCr693SKlM2Sc1A==",
|
||||
"path": "microsoft.entityframeworkcore.relational/6.0.0-preview.7.21378.4",
|
||||
"hashPath": "microsoft.entityframeworkcore.relational.6.0.0-preview.7.21378.4.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Tools/6.0.0-preview.7.21378.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-cE2oI9+LPys+xwVhdp8SVwa0g8gXJzrjRlCjOL5Ew05WHlxC08h0sOx6SHRPyVDLqGw37/O4RZXh1FafrVUARQ==",
|
||||
"path": "microsoft.entityframeworkcore.tools/6.0.0-preview.7.21378.4",
|
||||
"hashPath": "microsoft.entityframeworkcore.tools.6.0.0-preview.7.21378.4.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Caching.Abstractions/6.0.0-preview.7.21377.19": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-8W2Ywl5KuZ+qSPFipRXse8FaqeH4Fj5fxmqgvbScGoNdgOMjkSR/5ms1Q2FsZbVAiwx09Ww82MBNCFarwccGfg==",
|
||||
"path": "microsoft.extensions.caching.abstractions/6.0.0-preview.7.21377.19",
|
||||
"hashPath": "microsoft.extensions.caching.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Caching.Memory/6.0.0-preview.7.21377.19": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-MEIhC9Oog1Jlxn0wRHdkaZ6rdJQHEOPNuCYeI9skMKwilY52R3ak+oXQXYNoTGcvyH4g9zYlUVpHmu4t7R/pOA==",
|
||||
"path": "microsoft.extensions.caching.memory/6.0.0-preview.7.21377.19",
|
||||
"hashPath": "microsoft.extensions.caching.memory.6.0.0-preview.7.21377.19.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Abstractions/6.0.0-preview.7.21377.19": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-E7jldErD3SGhDuxilC2H7UaATGpJJc+pYpYpsiSEhIveM6ldSwjRCqg3iousXnF1zdDMRESsCROYwPIVygoyVQ==",
|
||||
"path": "microsoft.extensions.configuration.abstractions/6.0.0-preview.7.21377.19",
|
||||
"hashPath": "microsoft.extensions.configuration.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection/6.0.0-preview.7.21377.19": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-BjESHgE6sL2YfUsc7fyA6zWax/ByG0We+F5hRk9hvlSupFMzaMvKWhjAAzZnQG+tvqsrZxydrZtganxDpuqqeQ==",
|
||||
"path": "microsoft.extensions.dependencyinjection/6.0.0-preview.7.21377.19",
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.6.0.0-preview.7.21377.19.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0-preview.7.21377.19": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-atV1M3Bmuc9+mIW1/AxgfYhZBH74P5897+sOq5zXQaNA/OBqAax1NQ/LZrIVqpFMYk5aPVv4vn2uirQ4Peuglg==",
|
||||
"path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0-preview.7.21377.19",
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging/6.0.0-preview.7.21377.19": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-kOrN0Tazrui2vh1tSqdI33lwZPBCPeyR7z8pWOR3i4LembIq5LBtZ6kNQMcp4vrrkMwafu6vPcbgaZy0gPKb1g==",
|
||||
"path": "microsoft.extensions.logging/6.0.0-preview.7.21377.19",
|
||||
"hashPath": "microsoft.extensions.logging.6.0.0-preview.7.21377.19.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/6.0.0-preview.7.21377.19": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-cZMOsb9rKHMIPs170MUOnX3vB6lJJG3N4mO+ViX9o838Qvkq2+IEJus1B7oE2u3zCCqCUB9foa/t7qgUeSaRHg==",
|
||||
"path": "microsoft.extensions.logging.abstractions/6.0.0-preview.7.21377.19",
|
||||
"hashPath": "microsoft.extensions.logging.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Options/6.0.0-preview.7.21377.19": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-OiAS21Wg1X1qm4yE54PPJahF+nogKn5A+1UYcewvsASDcUudjllpCGMrqh5cI27pIst5VbFhq1KGTwzhU/GywA==",
|
||||
"path": "microsoft.extensions.options/6.0.0-preview.7.21377.19",
|
||||
"hashPath": "microsoft.extensions.options.6.0.0-preview.7.21377.19.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/6.0.0-preview.7.21377.19": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-dbYTaKld3fbZETLzYknl5np8/rnas3isR3RQi0xvZNrz4S1bhn7lsEbu8ACwMAQxPxiKBgl59RKUNVmqjJ4Aww==",
|
||||
"path": "microsoft.extensions.primitives/6.0.0-preview.7.21377.19",
|
||||
"hashPath": "microsoft.extensions.primitives.6.0.0-preview.7.21377.19.nupkg.sha512"
|
||||
},
|
||||
"Npgsql/6.0.0-preview7": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-dOdWAo4aYu5RgEtbcXqKBHFp4s6TOSsUSwTC2rcsZd5quFS7geeUaXHnJlCxOYq2tNcFpTHNVFRlHB1OgKAw7w==",
|
||||
"path": "npgsql/6.0.0-preview7",
|
||||
"hashPath": "npgsql.6.0.0-preview7.nupkg.sha512"
|
||||
},
|
||||
"Npgsql.EntityFrameworkCore.PostgreSQL/6.0.0-preview7": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-nzDmkNImvzXtgQK8gN1C5F1eYUr9XSKGidWY+T0EjCeaKzuQnvg2Rac785/CtYsdC4/JWsgeI0oZaH1+Yb6JdQ==",
|
||||
"path": "npgsql.entityframeworkcore.postgresql/6.0.0-preview7",
|
||||
"hashPath": "npgsql.entityframeworkcore.postgresql.6.0.0-preview7.nupkg.sha512"
|
||||
},
|
||||
"System.Buffers/4.5.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
|
||||
"path": "system.buffers/4.5.1",
|
||||
"hashPath": "system.buffers.4.5.1.nupkg.sha512"
|
||||
},
|
||||
"System.Collections.Immutable/6.0.0-preview.7.21377.19": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-TnnzExYnPymCOxNLnOgpTl0GAnXtm3urz/XNnLxutN5uRFMT6TRaUpL2j8ADyXX4JkSJcyXOQ3GI9DLqBzRmIA==",
|
||||
"path": "system.collections.immutable/6.0.0-preview.7.21377.19",
|
||||
"hashPath": "system.collections.immutable.6.0.0-preview.7.21377.19.nupkg.sha512"
|
||||
},
|
||||
"System.Diagnostics.DiagnosticSource/6.0.0-preview.7.21377.19": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-bnq8waIAuRZSU63bQQYzCTyfhqCSKTKWfy2oxBcVWh79d8WaiC4vtvyR0kAcF4YMrhK4YwjlXLblgfifXImPGw==",
|
||||
"path": "system.diagnostics.diagnosticsource/6.0.0-preview.7.21377.19",
|
||||
"hashPath": "system.diagnostics.diagnosticsource.6.0.0-preview.7.21377.19.nupkg.sha512"
|
||||
},
|
||||
"System.Memory/4.5.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
|
||||
"path": "system.memory/4.5.4",
|
||||
"hashPath": "system.memory.4.5.4.nupkg.sha512"
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe/6.0.0-preview.7.21377.19": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-G9eKxgKE5UoyJdB4tpBFCWlgky34N11QDIjn92g6BwqII03yra4raegNNt3y3lmN6k+VDLIzgVMuddZ7LT6TEw==",
|
||||
"path": "system.runtime.compilerservices.unsafe/6.0.0-preview.7.21377.19",
|
||||
"hashPath": "system.runtime.compilerservices.unsafe.6.0.0-preview.7.21377.19.nupkg.sha512"
|
||||
},
|
||||
"DaSaSo.Domain/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0-preview.7.21377.19"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,25 +1,23 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj": {}
|
||||
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
|
||||
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
|
||||
"projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
|
||||
"projectName": "DaSaSo.Domain",
|
||||
"projectPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
|
||||
"packagesPath": "C:\\Users\\Damian\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\obj\\",
|
||||
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj",
|
||||
"packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages",
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Damian\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config",
|
||||
"C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
@@ -27,7 +25,6 @@
|
||||
"net6.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {},
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
@@ -65,22 +62,20 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj": {
|
||||
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
|
||||
"projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
|
||||
"projectName": "DaSaSo.EntityFramework",
|
||||
"projectPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
|
||||
"packagesPath": "C:\\Users\\Damian\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\obj\\",
|
||||
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
|
||||
"packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages",
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Damian\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config",
|
||||
"C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
@@ -88,7 +83,6 @@
|
||||
"net6.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {},
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
@@ -96,8 +90,8 @@
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
|
||||
"projectPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj"
|
||||
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
|
||||
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,13 +5,12 @@
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Damian\.nuget\packages\;C:\Program Files (x86)\DevExpress 20.2\Components\Offline Packages;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\KFZ\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Damian\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\DevExpress 20.2\Components\Offline Packages\" />
|
||||
<SourceRoot Include="C:\Users\KFZ\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
@@ -21,6 +20,6 @@
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore.design\6.0.0-preview.7.21378.4\build\net6.0\Microsoft.EntityFrameworkCore.Design.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore.design\6.0.0-preview.7.21378.4\build\net6.0\Microsoft.EntityFrameworkCore.Design.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgMicrosoft_EntityFrameworkCore_Tools Condition=" '$(PkgMicrosoft_EntityFrameworkCore_Tools)' == '' ">C:\Users\Damian\.nuget\packages\microsoft.entityframeworkcore.tools\6.0.0-preview.7.21378.4</PkgMicrosoft_EntityFrameworkCore_Tools>
|
||||
<PkgMicrosoft_EntityFrameworkCore_Tools Condition=" '$(PkgMicrosoft_EntityFrameworkCore_Tools)' == '' ">C:\Users\KFZ\.nuget\packages\microsoft.entityframeworkcore.tools\6.0.0-preview.7.21378.4</PkgMicrosoft_EntityFrameworkCore_Tools>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
||||
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("DaSaSo.EntityFramework")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("DaSaSo.EntityFramework")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("DaSaSo.EntityFramework")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
209fb1fff91e60334a458c398f6d98537494640b
|
||||
@@ -0,0 +1,10 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = DaSaSo.EntityFramework
|
||||
build_property.ProjectDir = C:\Users\KFZ\Desktop\source\DaSaSo\DaSaSo.EntityFramework\
|
||||
@@ -0,0 +1,8 @@
|
||||
// <autogenerated />
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.IO;
|
||||
global using global::System.Linq;
|
||||
global using global::System.Net.Http;
|
||||
global using global::System.Threading;
|
||||
global using global::System.Threading.Tasks;
|
||||
@@ -790,26 +790,23 @@
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages": {},
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
|
||||
"projectUniqueName": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
|
||||
"projectName": "DaSaSo.EntityFramework",
|
||||
"projectPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
|
||||
"packagesPath": "C:\\Users\\Damian\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\obj\\",
|
||||
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
|
||||
"packagesPath": "C:\\Users\\KFZ\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages",
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Damian\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config",
|
||||
"C:\\Users\\KFZ\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
@@ -817,7 +814,6 @@
|
||||
"net6.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {},
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
@@ -825,8 +821,8 @@
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
|
||||
"projectPath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj"
|
||||
"C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj": {
|
||||
"projectPath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.Domain\\DaSaSo.Domain.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,32 +1,32 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "ltaGqGeX0iu5Z9cTRhLMwsgZN+zOtTzXhxUoEJ54YQ/unxriLkawwc9vnDqB6q95WnHan7OEFO/zl+CY8fzIUQ==",
|
||||
"dgSpecHash": "W8J6vnEaQQzzX+xNuuFk3QkPQp8TCGbDg7RMivw1twPpX1cvOVaAnsP7ozFqi2MUXKWJy9+YP9jrMcw58SrSxA==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\Damian\\source\\repos\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
|
||||
"projectFilePath": "C:\\Users\\KFZ\\Desktop\\source\\DaSaSo\\DaSaSo.EntityFramework\\DaSaSo.EntityFramework.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\humanizer.core\\2.8.26\\humanizer.core.2.8.26.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.6.0.0-preview.7.21378.4.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.abstractions.6.0.0-preview.7.21378.4.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.analyzers.6.0.0-preview.7.21378.4.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.entityframeworkcore.design\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.design.6.0.0-preview.7.21378.4.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.relational.6.0.0-preview.7.21378.4.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.tools.6.0.0-preview.7.21378.4.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.caching.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.0-preview.7.21377.19\\microsoft.extensions.caching.memory.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.configuration.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0-preview.7.21377.19\\microsoft.extensions.dependencyinjection.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.dependencyinjection.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0-preview.7.21377.19\\microsoft.extensions.logging.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.logging.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.options\\6.0.0-preview.7.21377.19\\microsoft.extensions.options.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0-preview.7.21377.19\\microsoft.extensions.primitives.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\npgsql\\6.0.0-preview7\\npgsql.6.0.0-preview7.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\6.0.0-preview7\\npgsql.entityframeworkcore.postgresql.6.0.0-preview7.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\system.collections.immutable\\6.0.0-preview.7.21377.19\\system.collections.immutable.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0-preview.7.21377.19\\system.diagnostics.diagnosticsource.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
|
||||
"C:\\Users\\Damian\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0-preview.7.21377.19\\system.runtime.compilerservices.unsafe.6.0.0-preview.7.21377.19.nupkg.sha512"
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\humanizer.core\\2.8.26\\humanizer.core.2.8.26.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.6.0.0-preview.7.21378.4.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.abstractions.6.0.0-preview.7.21378.4.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.analyzers.6.0.0-preview.7.21378.4.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.design\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.design.6.0.0-preview.7.21378.4.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.relational.6.0.0-preview.7.21378.4.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\6.0.0-preview.7.21378.4\\microsoft.entityframeworkcore.tools.6.0.0-preview.7.21378.4.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.caching.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.0-preview.7.21377.19\\microsoft.extensions.caching.memory.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.configuration.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0-preview.7.21377.19\\microsoft.extensions.dependencyinjection.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.dependencyinjection.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0-preview.7.21377.19\\microsoft.extensions.logging.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0-preview.7.21377.19\\microsoft.extensions.logging.abstractions.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.options\\6.0.0-preview.7.21377.19\\microsoft.extensions.options.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0-preview.7.21377.19\\microsoft.extensions.primitives.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\npgsql\\6.0.0-preview7\\npgsql.6.0.0-preview7.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\6.0.0-preview7\\npgsql.entityframeworkcore.postgresql.6.0.0-preview7.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\system.collections.immutable\\6.0.0-preview.7.21377.19\\system.collections.immutable.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0-preview.7.21377.19\\system.diagnostics.diagnosticsource.6.0.0-preview.7.21377.19.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
|
||||
"C:\\Users\\KFZ\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0-preview.7.21377.19\\system.runtime.compilerservices.unsafe.6.0.0-preview.7.21377.19.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
Reference in New Issue
Block a user