[mono/monodevelop] [2 commits] 93977297: Bump nrefactory.

Mike Krüger ([email protected]) <[email protected]>
Newsgroups gmane.comp.gnome.mono.patches
Message-ID <00000141dc077b3a-2cb1e2d5-4dbd-4f7e-80e6-23db8f76ae80-000000@email.amazonses.com>
   Branch: refs/heads/master
     Home: https://github.com/mono/monodevelop
  Compare: https://github.com/mono/monodevelop/compare/4e1329c51daa...0e449709a79c

   Commit: 93977297080442bae05fa24a7d144276716982e4
   Author: Mike Krüger <[email protected]> (mkrueger)
     Date: 2013-10-21 17:17:04 GMT
      URL: https://github.com/mono/monodevelop/commit/93977297080442bae05fa24a7d144276716982e4

Bump nrefactory.

Changed paths:
  M main/external/nrefactory

Modified: main/external/nrefactory
===================================================================
@@ -1 +1 @@
-Subproject commit 3ddebb399b0f04714ff57c56cb1b186fb330aadc
+Subproject commit ad45f0292f393a7586137df9df132b1e9738cc91

   Commit: 0e449709a79c74149ffda98c3f239bc2ae274972
   Author: Mike Krüger <[email protected]> (mkrueger)
     Date: 2013-10-21 17:17:04 GMT
      URL: https://github.com/mono/monodevelop/commit/0e449709a79c74149ffda98c3f239bc2ae274972

[Ide] References finder only searches compileable files.

Changed paths:
  M main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.FindInFiles/SearchCollector.cs

Modified: main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.FindInFiles/SearchCollector.cs
===================================================================
@@ -161,7 +161,7 @@ IEnumerable<FileList> CollectFiles ()
 				if (searchProjectAdded) break;
 			}
 			foreach (var project in collectedProjects)
-				yield return new FileList (project, TypeSystemService.GetProjectContext (project), project.Files.Select (f => f.FilePath));
+				yield return new FileList (project, TypeSystemService.GetProjectContext (project), project.Files.Where (f => f.BuildAction == BuildAction.Compile).Select (f => f.FilePath));
 			
 			foreach (var files in collectedFiles)
 				yield return new FileList (files.Key, TypeSystemService.GetProjectContext (files.Key), files.Value.Select (f => (FilePath)f));
_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.