2024-12-17 09:35:28 +05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2024-12-25 13:54:07 +05:00
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
2024-12-17 09:35:28 +05:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-12-25 17:49:05 +05:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.0" />
|
2024-12-18 17:09:32 +05:00
|
|
|
|
<PackageReference Include="System.Drawing.Common" Version="9.0.0" />
|
2024-12-17 09:35:28 +05:00
|
|
|
|
<PackageReference Include="xunit.extensibility.core" Version="2.9.2" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-12-17 13:40:17 +05:00
|
|
|
|
<ProjectReference Include="..\DD.Persistence.API\DD.Persistence.API.csproj" />
|
|
|
|
|
<ProjectReference Include="..\DD.Persistence.App\DD.Persistence.App.csproj" />
|
|
|
|
|
<ProjectReference Include="..\DD.Persistence.Client\DD.Persistence.Client.csproj" />
|
|
|
|
|
<ProjectReference Include="..\DD.Persistence.Database.Postgres\DD.Persistence.Database.Postgres.csproj" />
|
|
|
|
|
<ProjectReference Include="..\DD.Persistence.Database\DD.Persistence.Database.csproj" />
|
2024-12-17 09:35:28 +05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|