| 1234567891011121314151617181920212223242526 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net10.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <ItemGroup>
- <Folder Include="Authentication\" />
- <Folder Include="Behaviors\" />
- <Folder Include="Features\Member\Logs\" />
- <Folder Include="Features\ReferenceData\Dtos\" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="MediatR" Version="14.0.0" />
- <PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.2" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Domain\Domain.csproj" />
- <ProjectReference Include="..\SharedKernel\SharedKernel.csproj" />
- </ItemGroup>
- </Project>
|