27 lines
803 B
XML
27 lines
803 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AutoMapper" Version="15.1.0" />
|
|
<PackageReference Include="ClosedXML" Version="0.105.0" />
|
|
<PackageReference Include="FluentValidation" Version="12.1.1" />
|
|
<PackageReference Include="QuestPDF" Version="2025.12.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Koogle.Domain\Koogle.Domain.csproj" />
|
|
<ProjectReference Include="..\Koogle.Infrastructure\Koogle.Infrastructure.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Games\ChristmasTree\" />
|
|
<Folder Include="Validators\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|