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:
authorLluis Sanchez Gual <lluis@xamarin.com>2015-02-11 12:52:05 +0300
committerLluis Sanchez Gual <lluis@xamarin.com>2015-02-11 12:52:05 +0300
commit020840c5b1b764f7a0a43316f6f8816eb0b2f5e2 (patch)
treee0c7f274164564fe58184d7149cdb4578d12fd1d /main/src/addins/MonoDevelop.Autotools
parent0c39b3df9d3cee8fe342230f901d1c7f05b5135b (diff)
Track api changes
Diffstat (limited to 'main/src/addins/MonoDevelop.Autotools')
-rw-r--r--main/src/addins/MonoDevelop.Autotools/MakefileProject.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/main/src/addins/MonoDevelop.Autotools/MakefileProject.cs b/main/src/addins/MonoDevelop.Autotools/MakefileProject.cs
index d7d1e1e995..4be0cdfd12 100644
--- a/main/src/addins/MonoDevelop.Autotools/MakefileProject.cs
+++ b/main/src/addins/MonoDevelop.Autotools/MakefileProject.cs
@@ -2,6 +2,7 @@
using System;
using MonoDevelop.Projects;
using System.Collections.Generic;
+using System.Collections.Immutable;
namespace MonoDevelop.Autotools
{
@@ -18,9 +19,9 @@ namespace MonoDevelop.Autotools
return conf;
}
- protected override void OnGetProjectTypes (HashSet<string> types)
+ protected override ImmutableHashSet<string> OnGetProjectTypes ()
{
- types.Add ("MakefileProject");
+ return base.OnGetProjectTypes ().Add ("MakefileProject");
}
}