From da10ea1b653806b4475d6dd00bea3792e3ae8426 Mon Sep 17 00:00:00 2001 From: Russ Cam Date: Sat, 6 Apr 2024 16:31:25 +1000 Subject: [PATCH] Also target net462 The qdrant gRPC client uses .NET Framework build of Grpc.Net.Client, which uses WinHttpHandler. The wiring up is easier on net462 if net462 is targeted specifically. Same reason why the Milvus container also targets net462 (https://github.com/testcontainers/testcontainers-dotnet/pull/1131#discussion_r1507712752). --- src/Testcontainers.Qdrant/Testcontainers.Qdrant.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Testcontainers.Qdrant/Testcontainers.Qdrant.csproj b/src/Testcontainers.Qdrant/Testcontainers.Qdrant.csproj index 83255ca49..85b539f53 100644 --- a/src/Testcontainers.Qdrant/Testcontainers.Qdrant.csproj +++ b/src/Testcontainers.Qdrant/Testcontainers.Qdrant.csproj @@ -1,6 +1,6 @@ - net6.0;net8.0;netstandard2.0;netstandard2.1 + net6.0;net8.0;netstandard2.0;netstandard2.1;net462 latest