PlanTempusApp/Tests/PlanTempus.X.TDD.csproj

43 lines
1.6 KiB
XML
Raw Normal View History

2025-01-03 16:21:03 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2025-03-07 00:17:08 +01:00
<PropertyGroup>
2025-03-12 00:13:53 +01:00
<TargetFramework>net9.0</TargetFramework>
2025-03-07 00:17:08 +01:00
<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"/>
2025-03-10 15:56:22 +01:00
<ProjectReference Include="..\PlanTempus.Components\PlanTempus.Components.csproj" />
2025-03-07 00:17:08 +01:00
</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>