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
19 lines
450 B
XML
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>
|