[svn] r6940: vs-plugin/trunk/Nemerle.VsIntegration: Nemerle.VsIntegration.csproj Project/NemerleProjectNod...

IT svnadmin at nemerle.org
Sat Nov 18 20:30:35 CET 2006


Log:
Fixed colorizing.

Author: IT
Date: Sat Nov 18 20:30:32 2006
New Revision: 6940

Modified:
   vs-plugin/trunk/Nemerle.VsIntegration/Nemerle.VsIntegration.csproj
   vs-plugin/trunk/Nemerle.VsIntegration/Project/NemerleProjectNode.cs

Modified: vs-plugin/trunk/Nemerle.VsIntegration/Nemerle.VsIntegration.csproj
==============================================================================
--- vs-plugin/trunk/Nemerle.VsIntegration/Nemerle.VsIntegration.csproj	(original)
+++ vs-plugin/trunk/Nemerle.VsIntegration/Nemerle.VsIntegration.csproj	Sat Nov 18 20:30:32 2006
@@ -145,7 +145,9 @@
     <Compile Include="Project\NemerleAssemblyReference.cs" />
     <Compile Include="Project\NemerleAssemblyReferenceNode.cs" />
     <Compile Include="Project\NemerleDependentFileNode.cs" />
-    <Compile Include="Project\NemerleFileNodeCodeDomProvider.cs" />
+    <Compile Include="Project\NemerleFileNodeCodeDomProvider.cs">
+      <SubType>Component</SubType>
+    </Compile>
     <Compile Include="Project\NemerleOAFileItem.cs" />
     <Compile Include="Project\HierarchyEventArgs.cs" />
     <Compile Include="Project\INemerleLibraryManager.cs" />

Modified: vs-plugin/trunk/Nemerle.VsIntegration/Project/NemerleProjectNode.cs
==============================================================================
--- vs-plugin/trunk/Nemerle.VsIntegration/Project/NemerleProjectNode.cs	(original)
+++ vs-plugin/trunk/Nemerle.VsIntegration/Project/NemerleProjectNode.cs	Sat Nov 18 20:30:32 2006
@@ -534,12 +534,13 @@
 
 		public int GetSpecificLanguageService(string mkDocument, out Guid guidLanguageService)
 		{
-            // guidLanguageService = Guid.Empty;
-			// return VSConstants.E_NOTIMPL;
+			guidLanguageService = Guid.Empty;
+			return VSConstants.E_NOTIMPL;
 
             // AKhropov: looks like it's more appropriate
-            guidLanguageService = Utils.GetService<NemerleLanguageService>(Site).GetLanguageServiceGuid();
-            return VSConstants.S_OK;
+			// IT: No, it is not.
+            //guidLanguageService = Utils.GetService<NemerleLanguageService>(Site).GetLanguageServiceGuid();
+            //return VSConstants.S_OK;
 		}
 
 		public int SetSpecificEditorProperty(string mkDocument, int propid, object value)



More information about the svn mailing list