PlanTempusApp/Tests/PlanTempus.Tests.csproj

42 lines
1.3 KiB
XML
Raw Normal View History

2025-01-03 16:21:03 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.0" />
<PackageReference Include="FluentAssertions" Version="8.0.1" />
2025-01-03 16:21:03 +00:00
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
2025-01-26 22:57:27 +01:00
<PackageReference Include="moq" Version="4.20.72" />
2025-01-03 16:21:03 +00:00
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Application\PlanTempus.Application.csproj" />
<ProjectReference Include="..\Database\PlanTempus.Database.csproj" />
2025-01-03 16:21:03 +00:00
</ItemGroup>
<ItemGroup>
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
</ItemGroup>
<ItemGroup>
2025-02-19 14:21:40 +01:00
<None Update="appconfiguration.dev.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="ConfigurationTests\appconfiguration.dev.json">
2025-01-03 16:21:03 +00:00
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
2025-02-18 17:35:00 +01:00
<None Update="ConfigurationTests\appconfiguration.dev.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
2025-01-03 16:21:03 +00:00
</ItemGroup>
</Project>