From bb900dbb0d77b33d053e64d6badd0828e6b4056d Mon Sep 17 00:00:00 2001 From: Ilya Siamionau Date: Tue, 26 Aug 2025 14:21:23 +0200 Subject: [PATCH 1/4] CM-52090 - Fix null pointer exception of ErrorTaggerProvider on rerender --- .../Services/ErrorList/ErrorTaskCreatorService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extension/Cycode.VisualStudio.Extension.Shared/Services/ErrorList/ErrorTaskCreatorService.cs b/src/extension/Cycode.VisualStudio.Extension.Shared/Services/ErrorList/ErrorTaskCreatorService.cs index 3694721..685973a 100644 --- a/src/extension/Cycode.VisualStudio.Extension.Shared/Services/ErrorList/ErrorTaskCreatorService.cs +++ b/src/extension/Cycode.VisualStudio.Extension.Shared/Services/ErrorList/ErrorTaskCreatorService.cs @@ -18,7 +18,7 @@ public async Task RecreateAsync() { errorListService.ClearErrors(); await CreateErrorTasksAsync(); - CycodePackage.ErrorTaggerProvider.Rerender(); + CycodePackage.ErrorTaggerProvider?.Rerender(); toolWindowMessengerService.Send(new MessageEventArgs(MessengerCommand.TreeViewRefresh)); } From 2c67967f1058393778a4299469147d0eeb0cc855 Mon Sep 17 00:00:00 2001 From: Ilya Siamionau Date: Tue, 26 Aug 2025 14:47:52 +0200 Subject: [PATCH 2/4] bump sdk --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index f77a0a3..e3a3e7f 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.408", + "version": "8.0.413", "rollForward": "disable" } } \ No newline at end of file From e84a4ecc03305eda9a20afeb9b08d95272d357f4 Mon Sep 17 00:00:00 2001 From: Ilya Siamionau Date: Tue, 26 Aug 2025 14:51:15 +0200 Subject: [PATCH 3/4] format executable?? --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index e3a3e7f..2f66197 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.413", + "version": "8.0.316", "rollForward": "disable" } } \ No newline at end of file From 988396aa6a4cb43c5a0ee9ac2848345fde1ca72f Mon Sep 17 00:00:00 2001 From: Ilya Siamionau Date: Tue, 26 Aug 2025 14:58:58 +0200 Subject: [PATCH 4/4] downgrade one more time --- .github/workflows/lint_build_publish.yml | 2 +- global.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint_build_publish.yml b/.github/workflows/lint_build_publish.yml index 4321001..4660b17 100644 --- a/.github/workflows/lint_build_publish.yml +++ b/.github/workflows/lint_build_publish.yml @@ -20,7 +20,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.x # dotnet 9 breaks "dotnet format" command: https://github.com/dotnet/sdk/issues/43017 + dotnet-version: 8.0.x # dotnet 9 breaks "dotnet format" command: https://github.com/dotnet/sdk/issues/43017 - name: Format check run: dotnet format --verify-no-changes --verbosity diagnostic diff --git a/global.json b/global.json index 2f66197..2c0437e 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.316", + "version": "8.0.206", "rollForward": "disable" } } \ No newline at end of file