From b30aa0d9fa15c421791be6c64d463a4bc41a8fcc Mon Sep 17 00:00:00 2001 From: Andre Hofmeister <9199345+HofmeisterAn@users.noreply.github.com> Date: Mon, 27 Feb 2023 09:20:44 +0100 Subject: [PATCH] fix: Pin Testcontainers for .NET version --- language/dotnet/run-tests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/dotnet/run-tests.md b/language/dotnet/run-tests.md index 66a9c70d14..d537860922 100644 --- a/language/dotnet/run-tests.md +++ b/language/dotnet/run-tests.md @@ -26,7 +26,7 @@ $ dotnet new xunit -n myWebApp.Tests -o tests Next, we'll update the test project and add the Testcontainers for .NET package that allows us to run tests against Docker resources. Switch to the `tests` directory and run the following command: ```console -$ dotnet add package Testcontainers +$ dotnet add package Testcontainers --version 2.3.0 ``` ## Add a test