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 <lluis@novell.com>2009-09-28 16:23:22 +0400
committerLluis Sanchez <lluis@novell.com>2009-09-28 16:23:22 +0400
commitcc055a04930f1a889e14eacd42af674bdda8d576 (patch)
treecf219116a8830f37befc8f693ec9f60d21f3ba8f /extras/BooBinding
parentd83141a37f87b97a67d7a7ff31dbc5c6ad1573e6 (diff)
Use the new DotNetAssemblyProject class instead of DotNetProject, which is now abstract.
svn path=/trunk/monodevelop/; revision=142749
Diffstat (limited to 'extras/BooBinding')
-rw-r--r--extras/BooBinding/ChangeLog5
-rw-r--r--extras/BooBinding/Gui/ShellTextView.boo2
2 files changed, 6 insertions, 1 deletions
diff --git a/extras/BooBinding/ChangeLog b/extras/BooBinding/ChangeLog
index 6494fc0193..8500c03f97 100644
--- a/extras/BooBinding/ChangeLog
+++ b/extras/BooBinding/ChangeLog
@@ -1,3 +1,8 @@
+2009-09-28 Lluis Sanchez Gual <lluis@novell.com>
+
+ * Gui/ShellTextView.boo: Use the new DotNetAssemblyProject
+ class instead of DotNetProject, which is now abstract.
+
2009-08-26 Lluis Sanchez Gual <lluis@novell.com>
* configure:
diff --git a/extras/BooBinding/Gui/ShellTextView.boo b/extras/BooBinding/Gui/ShellTextView.boo
index 10ee0e3e84..5500cd7168 100644
--- a/extras/BooBinding/Gui/ShellTextView.boo
+++ b/extras/BooBinding/Gui/ShellTextView.boo
@@ -100,7 +100,7 @@ class ShellTextView (SourceView, ICompletionWidget):
if not System.IO.File.Exists (_fakeFileName):
_fileInfo = System.IO.File.Create (_fakeFileName)
_fileInfo.Close ()
- _fakeProject = DotNetProject(Model.LanguageName, Name: "___ShellProject", FileName: shellProjectFile)
+ _fakeProject = DotNetAssemblyProject(Model.LanguageName, Name: "___ShellProject", FileName: shellProjectFile)
_fakeSolution = Solution()
_fakeSolution.RootFolder.AddItem(_fakeProject)
ProjectDomService.Load (_fakeSolution)