From de7edf9e786429e3a9d67510cc3f911fba8bf5d1 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Wed, 25 Jan 2023 20:10:40 +0100 Subject: [PATCH] Fix ccatching C# exceptions in Visual Studio Code when debugging native code --- .../VisualStudioCode/VisualStudioCodeProjectGenerator.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Source/Tools/Flax.Build/Projects/VisualStudioCode/VisualStudioCodeProjectGenerator.cs b/Source/Tools/Flax.Build/Projects/VisualStudioCode/VisualStudioCodeProjectGenerator.cs index be67c4cd6..81c8d2893 100644 --- a/Source/Tools/Flax.Build/Projects/VisualStudioCode/VisualStudioCodeProjectGenerator.cs +++ b/Source/Tools/Flax.Build/Projects/VisualStudioCode/VisualStudioCodeProjectGenerator.cs @@ -356,7 +356,11 @@ namespace Flax.Build.Projects.VisualStudioCode json.AddField("ignoreFailures", true); json.EndObject(); - // Ignore signals used by Mono + // Ignore signals used by C# runtime + json.BeginObject(); + json.AddField("description", "ignore SIG34 signal"); + json.AddField("text", "handle SIG34 nostop noprint pass"); + json.EndObject(); json.BeginObject(); json.AddField("description", "ignore SIG35 signal"); json.AddField("text", "handle SIG35 nostop noprint pass");