22 lines
858 B
XML
22 lines
858 B
XML
|
|
<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>
|