2025-01-03 16:21:03 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
2025-03-07 00:17:08 +01:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2025-01-03 16:21:03 +00:00
|
|
|
|
|
2025-03-07 00:17:08 +01:00
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
|
<IsTestProject>true</IsTestProject>
|
|
|
|
|
|
</PropertyGroup>
|
2025-01-03 16:21:03 +00:00
|
|
|
|
|
2025-03-07 00:17:08 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="coverlet.collector" Version="6.0.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>
|
2025-01-03 16:21:03 +00:00
|
|
|
|
|
2025-03-07 00:17:08 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Application\PlanTempus.Application.csproj"/>
|
|
|
|
|
|
<ProjectReference Include="..\Database\PlanTempus.Database.csproj"/>
|
|
|
|
|
|
</ItemGroup>
|
2025-01-03 16:21:03 +00:00
|
|
|
|
|
2025-03-07 00:17:08 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting"/>
|
|
|
|
|
|
</ItemGroup>
|
2025-01-03 16:21:03 +00:00
|
|
|
|
|
2025-03-07 00:17:08 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="appconfiguration.dev.json">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="ConfigurationTests\appconfiguration.dev.json">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="ConfigurationTests\appconfiguration.dev.json">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
2025-01-03 16:21:03 +00:00
|
|
|
|
|
|
|
|
|
|
</Project>
|