2025-02-04 18:23:58 +03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="coverlet.collector" Version="6.0.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
|
2025-02-18 10:55:27 +03:00
|
|
|
|
<PackageReference Include="Moq" Version="4.20.72" />
|
2025-02-04 18:23:58 +03:00
|
|
|
|
<PackageReference Include="NUnit" Version="4.2.2" />
|
|
|
|
|
<PackageReference Include="NUnit.Analyzers" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-02-18 10:55:27 +03:00
|
|
|
|
<ProjectReference Include="..\PapaCarloBusinessLogic\PapaCarloBusinessLogic.csproj" />
|
2025-02-04 18:23:58 +03:00
|
|
|
|
<ProjectReference Include="..\PapaCarloContracts\PapaCarloContracts.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Using Include="NUnit.Framework" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|