From eebc8ea22226145b3666dc487da688891f5144c5 Mon Sep 17 00:00:00 2001 From: Youssef Victor Date: Wed, 15 Oct 2025 16:54:05 +0200 Subject: [PATCH] Move from dotnet.config to global.json (#3553) * Delete dotnet.config * Update global.json --- dotnet.config | 2 -- global.json | 5 ++++- 2 files changed, 4 insertions(+), 3 deletions(-) delete mode 100644 dotnet.config diff --git a/dotnet.config b/dotnet.config deleted file mode 100644 index b87edde3a..000000000 --- a/dotnet.config +++ /dev/null @@ -1,2 +0,0 @@ -[dotnet.test.runner] -name = "Microsoft.Testing.Platform" \ No newline at end of file diff --git a/global.json b/global.json index 42b44a1ed..91af2aeac 100644 --- a/global.json +++ b/global.json @@ -3,5 +3,8 @@ "version": "10.0.0", "rollForward": "major", "allowPrerelease": true + }, + "test": { + "runner": "Microsoft.Testing.Platform" } -} \ No newline at end of file +}