Files
Teamup/tests/TeamUp.IntegrationTests/TeamUp.IntegrationTests.csproj
T

22 lines
858 B
XML
Raw Normal View History

2026-06-09 06:41:28 +03:30
<Project Sdk="Microsoft.NET.Sdk">
<!-- Boots the real web host (WebApplicationFactory) against a throwaway pgvector container
(Testcontainers). References ONLY the web host — not the worker — so there is a single,
unambiguous top-level `Program` to drive. Needs a running Docker daemon. -->
<PropertyGroup>
<!-- Testcontainers 4.12 deprecated the parameterless PostgreSqlBuilder() ctor in favour of an
image-parameter ctor; the documented .WithImage(...) fluent path still works. -->
<NoWarn>$(NoWarn);CS0618</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" />
<PackageReference Include="Testcontainers.PostgreSql" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Hosts\TeamUp.Web\TeamUp.Web.csproj" />
</ItemGroup>
</Project>