feat: Hinzufügen der erforderlichen EF Core-Bibliotheken

This commit is contained in:
Developer 02
2024-08-02 20:26:38 +02:00
parent d0dfd342b8
commit b8e48a9f4d
2 changed files with 13 additions and 0 deletions

View File

@@ -7,6 +7,13 @@
<FileVersion>2.3.7.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.32">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HRD.LDAPService\HRD.LDAPService.csproj" />
<ProjectReference Include="..\HRD.WebApi\HRD.WebApi.csproj" />

View File

@@ -14,6 +14,12 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.32" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.32">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.32" />
<PackageReference Include="Microsoft.Extensions.PlatformAbstractions" Version="1.1.0" />
<PackageReference Include="NSwag.AspNetCore" Version="14.0.7" />
</ItemGroup>