Entity-Framework-DBZ/EntityFrameworkCore.Data/EntityFrameworkCore.Data.csproj
Kevin Matsubara 601aff07c1 Add reference to Domain for the Data project.
Note that this command, did not work in Ubuntu. I just added the html to the project file myself.

dotnet reference add

https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-reference-add
2025-04-04 16:25:46 +02:00

19 lines
450 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../EntityFrameworkCore.Domain/EntityFrameworkCore.Domain.csproj" />
</ItemGroup>
</Project>