| 12345678910111213141516171819202122 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\Products.Common\Products.Common.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.11">
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- <PrivateAssets>all</PrivateAssets>
- </PackageReference>
- <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.4" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.3" />
- </ItemGroup>
- </Project>
|