From 1aa409de388c9dabd6766b28abbdb78f4499b461 Mon Sep 17 00:00:00 2001 From: Brad Wilson Date: Fri, 30 Jun 2023 17:23:52 -0700 Subject: [PATCH] Add net472 build of test.harness which turns off app domains (for performance testing) --- test/test.harness/test.harness.csproj | 6 +++++- test/test.harness/xunit.runner.json | 7 +++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 test/test.harness/xunit.runner.json diff --git a/test/test.harness/test.harness.csproj b/test/test.harness/test.harness.csproj index 579c1a88..26ad2717 100644 --- a/test/test.harness/test.harness.csproj +++ b/test/test.harness/test.harness.csproj @@ -1,7 +1,7 @@ - net462;net6.0 + net462;net472;net6.0 @@ -9,6 +9,10 @@ + + + + diff --git a/test/test.harness/xunit.runner.json b/test/test.harness/xunit.runner.json new file mode 100644 index 00000000..c288610c --- /dev/null +++ b/test/test.harness/xunit.runner.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://xunit.net/schema/v2.5/xunit.runner.schema.json", + "appDomain": "denied", + "diagnosticMessages": true, + "methodDisplay": "classAndMethod", + "parallelizeAssembly": true +}