From a6400508da6aa2e38102c666ad4a54c2d980c38a Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz Date: Tue, 25 Nov 2025 17:45:24 -0300 Subject: [PATCH] =?UTF-8?q?[BUGFIX]=20MSTEST0001:=20habilitar=20o=20deshab?= =?UTF-8?q?ilitar=20expl=C3=ADcitamente=20la=20paralelizaci=C3=B3n=20de=20?= =?UTF-8?q?pruebas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://learn.microsoft.com/es-mx/dotnet/core/testing/mstest-analyzers/mstest0001 --- src/algorithm_exercises_csharp_test/AssemblyInfo.cs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/algorithm_exercises_csharp_test/AssemblyInfo.cs diff --git a/src/algorithm_exercises_csharp_test/AssemblyInfo.cs b/src/algorithm_exercises_csharp_test/AssemblyInfo.cs new file mode 100644 index 0000000..3119b2d --- /dev/null +++ b/src/algorithm_exercises_csharp_test/AssemblyInfo.cs @@ -0,0 +1,3 @@ +using Microsoft.VisualStudio.TestTools.UnitTesting; + +[assembly: DoNotParallelize]