From fd9f1c5b583aac94a69ebf6ba890a91b2264187d Mon Sep 17 00:00:00 2001 From: Tomas Matousek Date: Wed, 4 Feb 2026 17:44:28 -0800 Subject: [PATCH] Add .code-workspace files for all solutions --- TemplateEngine.code-workspace | 10 ++++++++++ cli.code-workspace | 10 ++++++++++ containers.code-workspace | 10 ++++++++++ sdk.code-workspace | 10 ++++++++++ source-build.code-workspace | 10 ++++++++++ tasks.code-workspace | 10 ++++++++++ 6 files changed, 60 insertions(+) create mode 100644 TemplateEngine.code-workspace create mode 100644 cli.code-workspace create mode 100644 containers.code-workspace create mode 100644 sdk.code-workspace create mode 100644 source-build.code-workspace create mode 100644 tasks.code-workspace diff --git a/TemplateEngine.code-workspace b/TemplateEngine.code-workspace new file mode 100644 index 000000000000..a0cf99055cd9 --- /dev/null +++ b/TemplateEngine.code-workspace @@ -0,0 +1,10 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": { + "dotnet.defaultSolution": "TemplateEngine.slnf" + } + } diff --git a/cli.code-workspace b/cli.code-workspace new file mode 100644 index 000000000000..4e3fcba684cd --- /dev/null +++ b/cli.code-workspace @@ -0,0 +1,10 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": { + "dotnet.defaultSolution": "cli.slnf" + } + } diff --git a/containers.code-workspace b/containers.code-workspace new file mode 100644 index 000000000000..b7441acdeb5b --- /dev/null +++ b/containers.code-workspace @@ -0,0 +1,10 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": { + "dotnet.defaultSolution": "containers.slnf" + } + } diff --git a/sdk.code-workspace b/sdk.code-workspace new file mode 100644 index 000000000000..22494f2d1d58 --- /dev/null +++ b/sdk.code-workspace @@ -0,0 +1,10 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": { + "dotnet.defaultSolution": "sdk.slnx" + } + } diff --git a/source-build.code-workspace b/source-build.code-workspace new file mode 100644 index 000000000000..55d94da909d0 --- /dev/null +++ b/source-build.code-workspace @@ -0,0 +1,10 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": { + "dotnet.defaultSolution": "source-build.slnf" + } + } diff --git a/tasks.code-workspace b/tasks.code-workspace new file mode 100644 index 000000000000..67a217bc7698 --- /dev/null +++ b/tasks.code-workspace @@ -0,0 +1,10 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": { + "dotnet.defaultSolution": "tasks.slnf" + } + }