From b777d0c78caf1fee271ec67b7400b84cf30aff51 Mon Sep 17 00:00:00 2001 From: duckdoom5 Date: Wed, 22 Jan 2025 19:01:23 +0100 Subject: [PATCH] Enable native debugging when running *.Gen test projects from vs2022 --- tests/dotnet/CLI/Properties/launchSettings.json | 8 ++++++++ tests/dotnet/CSharp/Properties/launchSettings.json | 8 ++++++++ tests/dotnet/Common/Properties/launchSettings.json | 8 ++++++++ tests/dotnet/Encodings/Properties/launchSettings.json | 8 ++++++++ .../NamespacesDerived/Properties/launchSettings.json | 8 ++++++++ tests/dotnet/StandardLib/Properties/launchSettings.json | 8 ++++++++ tests/dotnet/VTables/Properties/launchSettings.json | 8 ++++++++ 7 files changed, 56 insertions(+) create mode 100644 tests/dotnet/CLI/Properties/launchSettings.json create mode 100644 tests/dotnet/CSharp/Properties/launchSettings.json create mode 100644 tests/dotnet/Common/Properties/launchSettings.json create mode 100644 tests/dotnet/Encodings/Properties/launchSettings.json create mode 100644 tests/dotnet/NamespacesDerived/Properties/launchSettings.json create mode 100644 tests/dotnet/StandardLib/Properties/launchSettings.json create mode 100644 tests/dotnet/VTables/Properties/launchSettings.json diff --git a/tests/dotnet/CLI/Properties/launchSettings.json b/tests/dotnet/CLI/Properties/launchSettings.json new file mode 100644 index 00000000..332995c4 --- /dev/null +++ b/tests/dotnet/CLI/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "CLI.Gen": { + "commandName": "Project", + "nativeDebugging": true + } + } +} \ No newline at end of file diff --git a/tests/dotnet/CSharp/Properties/launchSettings.json b/tests/dotnet/CSharp/Properties/launchSettings.json new file mode 100644 index 00000000..eb494868 --- /dev/null +++ b/tests/dotnet/CSharp/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "CSharp.Gen": { + "commandName": "Project", + "nativeDebugging": true + } + } +} \ No newline at end of file diff --git a/tests/dotnet/Common/Properties/launchSettings.json b/tests/dotnet/Common/Properties/launchSettings.json new file mode 100644 index 00000000..ab6655bb --- /dev/null +++ b/tests/dotnet/Common/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "Common.Gen": { + "commandName": "Project", + "nativeDebugging": true + } + } +} \ No newline at end of file diff --git a/tests/dotnet/Encodings/Properties/launchSettings.json b/tests/dotnet/Encodings/Properties/launchSettings.json new file mode 100644 index 00000000..3874f6c7 --- /dev/null +++ b/tests/dotnet/Encodings/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "Encodings.Gen": { + "commandName": "Project", + "nativeDebugging": true + } + } +} \ No newline at end of file diff --git a/tests/dotnet/NamespacesDerived/Properties/launchSettings.json b/tests/dotnet/NamespacesDerived/Properties/launchSettings.json new file mode 100644 index 00000000..3777ef37 --- /dev/null +++ b/tests/dotnet/NamespacesDerived/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "NamespacesDerived.Gen": { + "commandName": "Project", + "nativeDebugging": true + } + } +} \ No newline at end of file diff --git a/tests/dotnet/StandardLib/Properties/launchSettings.json b/tests/dotnet/StandardLib/Properties/launchSettings.json new file mode 100644 index 00000000..f03f46f0 --- /dev/null +++ b/tests/dotnet/StandardLib/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "StandardLib.Gen": { + "commandName": "Project", + "nativeDebugging": true + } + } +} \ No newline at end of file diff --git a/tests/dotnet/VTables/Properties/launchSettings.json b/tests/dotnet/VTables/Properties/launchSettings.json new file mode 100644 index 00000000..dfb622c7 --- /dev/null +++ b/tests/dotnet/VTables/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "VTables.Gen": { + "commandName": "Project", + "nativeDebugging": true + } + } +} \ No newline at end of file