diff --git a/CodeiumVS/LanguageServer/LanguageServer.cs b/CodeiumVS/LanguageServer/LanguageServer.cs index fb5b3f0..c0a75d7 100644 --- a/CodeiumVS/LanguageServer/LanguageServer.cs +++ b/CodeiumVS/LanguageServer/LanguageServer.cs @@ -732,11 +732,13 @@ private async Task InitializeTrackedWorkspaceAsync() { await ThreadHelper.JoinableTaskFactory.SwitchToMainThreadAsync(); DTE dte = (DTE)ServiceProvider.GlobalProvider.GetService(typeof(DTE)); + await _package.LogAsync($"Number of projects: {dte.Solution.Projects.Count}"); foreach (EnvDTE.Project project in dte.Solution.Projects) { try { string projectDir = Path.GetDirectoryName(project.FullName); + await _package.LogAsync($"Project Dir: {projectDir}"); if (!string.IsNullOrEmpty(projectDir)) { AddTrackedWorkspaceResponse response = await AddTrackedWorkspaceAsync(projectDir); @@ -746,8 +748,9 @@ private async Task InitializeTrackedWorkspaceAsync() } } } - catch (Exception) + catch (Exception ex) { + await _package.LogAsync("Error: Failed to initialize tracked workspace: " + ex.Message); continue; } } diff --git a/CodeiumVS/source.extension.cs b/CodeiumVS/source.extension.cs index 33c91f1..51eaf9b 100644 --- a/CodeiumVS/source.extension.cs +++ b/CodeiumVS/source.extension.cs @@ -11,7 +11,7 @@ internal sealed partial class Vsix public const string Name = "Codeium"; public const string Description = @"The modern coding superpower: free AI code acceleration plugin for your favorite languages. Type less. Code more. Ship faster."; public const string Language = "en-US"; - public const string Version = "1.8.81"; + public const string Version = "1.8.82"; public const string Author = "Codeium"; public const string Tags = ""; } diff --git a/CodeiumVS/source.extension.vsixmanifest b/CodeiumVS/source.extension.vsixmanifest index 571851a..4fcbf5b 100644 --- a/CodeiumVS/source.extension.vsixmanifest +++ b/CodeiumVS/source.extension.vsixmanifest @@ -1,7 +1,7 @@ - + Codeium The modern coding superpower: free AI code acceleration plugin for your favorite languages. Type less. Code more. Ship faster. https://www.codeium.com @@ -12,6 +12,9 @@ amd64 + + arm64 +