From 73c46d377ae54e93c7a675b328a45298b35ca215 Mon Sep 17 00:00:00 2001 From: SergeyMenshykh Date: Tue, 17 Feb 2026 14:46:49 +0000 Subject: [PATCH] Add dotnet.automaticallySyncWithActiveItem to VS Code settings Enable automatic synchronization with the active item in VS Code for better developer experience when working with .NET projects. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- dotnet/.vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dotnet/.vscode/settings.json b/dotnet/.vscode/settings.json index 4fa848ae28..27248d1b4b 100644 --- a/dotnet/.vscode/settings.json +++ b/dotnet/.vscode/settings.json @@ -1,5 +1,6 @@ { "dotnet.defaultSolution": "agent-framework-dotnet.slnx", "git.openRepositoryInParentFolders": "always", - "chat.agent.enabled": true + "chat.agent.enabled": true, + "dotnet.automaticallySyncWithActiveItem": true }