2025-02-27 17:24:58 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2025-03-12 00:13:53 +01:00
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
2025-02-27 17:24:58 +01:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<IsTestProject>true</IsTestProject>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2026-01-10 11:13:33 +01:00
|
|
|
<PackageReference Include="Autofac" Version="8.2.0" />
|
2025-02-27 17:24:58 +01:00
|
|
|
<PackageReference Include="coverlet.collector" Version="6.0.0" />
|
2026-01-10 11:13:33 +01:00
|
|
|
<PackageReference Include="CrypticWizard.RandomWordGenerator" Version="0.9.5" />
|
2025-02-27 17:24:58 +01:00
|
|
|
<PackageReference Include="LightBDD.Core" Version="3.10.0" />
|
|
|
|
|
<PackageReference Include="LightBDD.MSTest3" Version="3.10.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
|
|
|
|
<PackageReference Include="moq" Version="4.20.72" />
|
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
|
|
|
|
|
<PackageReference Include="Shouldly" Version="4.3.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2026-01-10 20:39:17 +01:00
|
|
|
<ProjectReference Include="..\PlanTempus.Application\PlanTempus.Application.csproj" />
|
2026-01-10 11:13:33 +01:00
|
|
|
<ProjectReference Include="..\PlanTempus.Components\PlanTempus.Components.csproj" />
|
2026-01-10 20:39:17 +01:00
|
|
|
<ProjectReference Include="..\PlanTempus.Core\PlanTempus.Core.csproj" />
|
|
|
|
|
<ProjectReference Include="..\PlanTempus.Database\PlanTempus.Database.csproj" />
|
2025-02-27 17:24:58 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="appconfiguration.dev.json">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|