From 55cc695697638de593ac3763d2edb0f96be02264 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Fri, 19 Jun 2020 14:41:22 +0200 Subject: [PATCH] [xharness] Disable project generation for .NET projects for now. --- tests/xharness/Harness.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/xharness/Harness.cs b/tests/xharness/Harness.cs index d1fd833e11..a07323548a 100644 --- a/tests/xharness/Harness.cs +++ b/tests/xharness/Harness.cs @@ -519,6 +519,7 @@ namespace Xharness { TemplateProjectPath = file, Harness = this, TestProject = proj, + ShouldSkipProjectGeneration = proj.IsDotNetProject, }; unified.Execute (); unified_targets.Add (unified); @@ -528,6 +529,7 @@ namespace Xharness { TemplateProjectPath = file, Harness = this, TestProject = proj, + ShouldSkipProjectGeneration = proj.IsDotNetProject, }; today.Execute (); today_targets.Add (today);