Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVsevolod Kukol <sevoku@microsoft.com>2019-05-02 21:08:45 +0300
committerVsevolod Kukol <sevoku@microsoft.com>2019-05-02 21:08:45 +0300
commit14b60517fcdf2768de35556f5f543a01c7be8218 (patch)
treeab7c2480f23feff4320d784736486ef27d2faa4a /main/src/addins/MonoDevelop.Autotools
parent42cee92c506d8e7192f6a4324103d0049d92ee30 (diff)
Revert "Fixes VSTS Bug 705785: [Feedback] Search result tab has temporary"
This reverts commit 88f33f6fc58e6afa01d849f076a45456d746e7a1.
Diffstat (limited to 'main/src/addins/MonoDevelop.Autotools')
-rw-r--r--main/src/addins/MonoDevelop.Autotools/MakefileData.cs2
-rw-r--r--main/src/addins/MonoDevelop.Autotools/SimpleProjectMakefileHandler.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/main/src/addins/MonoDevelop.Autotools/MakefileData.cs b/main/src/addins/MonoDevelop.Autotools/MakefileData.cs
index f82e9abe77..3a092218be 100644
--- a/main/src/addins/MonoDevelop.Autotools/MakefileData.cs
+++ b/main/src/addins/MonoDevelop.Autotools/MakefileData.cs
@@ -1426,7 +1426,7 @@ namespace MonoDevelop.Autotools
List<string> files = new List<string> ();
foreach (ProjectFile pf in OwnerProject.Files) {
- if (pf.Subtype != Subtype.Code && pf.Subtype != Subtype.Designer)
+ if (pf.Subtype != Subtype.Code)
continue;
if (IsFileExcluded (pf.FilePath))
continue;
diff --git a/main/src/addins/MonoDevelop.Autotools/SimpleProjectMakefileHandler.cs b/main/src/addins/MonoDevelop.Autotools/SimpleProjectMakefileHandler.cs
index 1eeae4a276..04956c63e2 100644
--- a/main/src/addins/MonoDevelop.Autotools/SimpleProjectMakefileHandler.cs
+++ b/main/src/addins/MonoDevelop.Autotools/SimpleProjectMakefileHandler.cs
@@ -152,7 +152,7 @@ namespace MonoDevelop.Autotools
{
case BuildAction.Compile:
- if (projectFile.Subtype != Subtype.Code && projectFile.Subtype != Subtype.Designer) continue;
+ if ( projectFile.Subtype != Subtype.Code ) continue;
files.AppendFormat ( "\\\n\t{0} ", MakefileData.ToMakefilePath (pfpath));
break;