From 88e46c0c1cd0eb6145d9282f35d531e61c5307b8 Mon Sep 17 00:00:00 2001 From: Gen Lu Date: Tue, 29 Jan 2019 14:47:48 -0800 Subject: [PATCH] Fix rootnamespce property name we received from project-system --- .../ProjectSystem/CPS/AdditionalPropertyNames.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/VisualStudio/Core/Def/Implementation/ProjectSystem/CPS/AdditionalPropertyNames.cs b/src/VisualStudio/Core/Def/Implementation/ProjectSystem/CPS/AdditionalPropertyNames.cs index b8982ea47d1..a1067298f58 100644 --- a/src/VisualStudio/Core/Def/Implementation/ProjectSystem/CPS/AdditionalPropertyNames.cs +++ b/src/VisualStudio/Core/Def/Implementation/ProjectSystem/CPS/AdditionalPropertyNames.cs @@ -7,6 +7,9 @@ namespace Microsoft.VisualStudio.LanguageServices.ProjectSystem /// internal static class AdditionalPropertyNames { - public const string RootNamespace = "rootnamespace"; + // All supported properties can be found in dotnet/project-system repo + // https://github.com/dotnet/project-system/blob/master/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/Rules/LanguageService.xaml + + public const string RootNamespace = "RootNamespace"; } } -- GitLab