Author: mkrueger
Date: 2008-02-19 04:34:02 -0500 (Tue, 19 Feb 2008)
New Revision: 96125
Added:
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests/
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests/DocumentTests.cs
Removed:
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/DocumentTests.cs
Modified:
trunk/monodevelop/main/src/addins/Mono.Texteditor/ChangeLog
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/CaretMoveTests.cs
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/InsertNewLineTests.cs
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.mdp
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.mdp
Log:
* Mono.TextEditor.Tests/Mono.TextEditor.Tests.mdp,
Mono.TextEditor.Tests/Mono.TextEditor.Tests,
Mono.TextEditor.Tests/Mono.TextEditor.Tests/DocumentTests.cs,
Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/DocumentTests.cs,
Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/CaretMoveTests.cs,
Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/InsertNewLineTests.cs:
Worked on text editor unit tests.
Modified: trunk/monodevelop/main/src/addins/Mono.Texteditor/ChangeLog
===================================================================
--- trunk/monodevelop/main/src/addins/Mono.Texteditor/ChangeLog 2008-02-19
09:28:43 UTC (rev 96124)
+++ trunk/monodevelop/main/src/addins/Mono.Texteditor/ChangeLog 2008-02-19
09:34:02 UTC (rev 96125)
@@ -1,3 +1,13 @@
+2008-02-19 Mike Krüger <[EMAIL PROTECTED]>
+
+ * Mono.TextEditor.Tests/Mono.TextEditor.Tests.mdp,
+ Mono.TextEditor.Tests/Mono.TextEditor.Tests,
+ Mono.TextEditor.Tests/Mono.TextEditor.Tests/DocumentTests.cs,
+
Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/DocumentTests.cs,
+
Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/CaretMoveTests.cs,
+
Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/InsertNewLineTests.cs:
+ Worked on text editor unit tests.
+
2008-02-19 Lluis Sanchez Gual <[EMAIL PROTECTED]>
* Makefile.am, Mono.TextEditor.mdp: Fixed assembly references.
Copied:
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests/DocumentTests.cs
(from rev 96114,
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/DocumentTests.cs)
===================================================================
---
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/DocumentTests.cs
2008-02-19 00:16:15 UTC (rev 96114)
+++
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests/DocumentTests.cs
2008-02-19 09:34:02 UTC (rev 96125)
@@ -0,0 +1,180 @@
+//
+// DocumentTests.cs
+//
+// Author:
+// Mike Krüger <[EMAIL PROTECTED]>
+//
+// Copyright (C) 2008 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System;
+using NUnit.Framework;
+
+namespace Mono.TextEditor.Tests
+{
+ [TestFixture()]
+ public class DocumentTests
+ {
+ [Test()]
+ public void TestDocumentCreation ()
+ {
+ Document document = new Mono.TextEditor.Document ();
+
+ string text =
+ "1234567890\n" +
+ "12345678\n" +
+ "1234567\n" +
+ "123456\n" +
+ "12345\n" +
+ "1234\n" +
+ "123\n" +
+ "12\n" +
+ "1\n" +
+ "\n";
+ document.Text = text;
+
+ Assert.AreEqual (text, document.Text);
+ Assert.AreEqual (11, document.LineCount);
+ }
+
+ [Test]
+ public void TestDocumentInsert ()
+ {
+ Document document = new Mono.TextEditor.Document ();
+
+ string top = "1234567890\n";
+ string text =
+ "12345678\n" +
+ "1234567\n" +
+ "123456\n" +
+ "12345\n" +
+ "1234\n" +
+ "123\n" +
+ "12\n" +
+ "1\n" +
+ "\n";
+
+ document.Text = top;
+ document.Insert (top.Length, text);
+ Assert.AreEqual (top + text, document.Text);
+ }
+
+ [Test]
+ public void TestDocumentRemove ()
+ {
+ Document document = new Mono.TextEditor.Document ();
+
+ string top = "1234567890\n";
+ string testText =
+ "12345678\n" +
+ "1234567\n" +
+ "123456\n" +
+ "12345\n" +
+ "1234\n" +
+ "123\n" +
+ "12\n" +
+ "1\n" +
+ "\n";
+ document.Text = top + testText;
+ document.Remove (0, top.Length);
+ Assert.AreEqual (document.Text, testText);
+
+ document.Remove (0, document.Length);
+ LineSegment line = document.GetLine (0);
+ Assert.AreEqual (0, line.Offset);
+ Assert.AreEqual (0, line.Length);
+ Assert.AreEqual (0, document.Length);
+ Assert.AreEqual (1, document.LineCount);
+ }
+
+ [Test]
+ public void TestDocumentBug1Test()
+ {
+ Document document = new Mono.TextEditor.Document ();
+
+ string top = "1234567890";
+ document.Text = top;
+
+ Assert.AreEqual (document.GetLine (0).Length,
document.Length);
+
+ document.Remove(0, document.Length);
+
+ LineSegment line = document.GetLine (0);
+ Assert.AreEqual(0, line.Offset);
+ Assert.AreEqual(0, line.Length);
+ Assert.AreEqual(0, document.Length);
+ Assert.AreEqual(1, document.LineCount);
+ }
+
+ [Test]
+ public void TestDocumentBug2Test()
+ {
+ Document document = new Mono.TextEditor.Document ();
+
+ string top = "123\n456\n789\n0";
+ string testText = "Hello World!";
+
+ document.Text = top;
+
+ document.Insert (top.Length, testText);
+
+ LineSegment line = document.GetLine (document.LineCount
- 1);
+
+ Assert.AreEqual (top.Length - 1, line.Offset);
+ Assert.AreEqual (testText.Length + 1, line.Length);
+ }
+
+ [Test]
+ public void SplitterTest ()
+ {
+ Document document = new Mono.TextEditor.Document ();
+ for (int i = 0; i < 100; i++) {
+ document.Insert (0, new string ('c', i) +
Environment.NewLine);
+ }
+ Assert.AreEqual (101, document.LineCount);
+ for (int i = 0; i < 100; i++) {
+ LineSegment line = document.GetLine (i);
+ Assert.AreEqual (99 - i, line.EditableLength);
+ Assert.AreEqual (Environment.NewLine.Length,
line.DelimiterLength);
+ }
+
+ for (int i = 0; i < 100; i++) {
+ LineSegment line = document.GetLine (0);
+ document.Remove (line.EditableLength,
line.DelimiterLength);
+ }
+ Assert.AreEqual (1, document.LineCount);
+ }
+
+ [TestFixtureSetUp]
+ public void SetUp()
+ {
+ Gtk.Application.Init ();
+ }
+
+ [TestFixtureTearDown]
+ public void Dispose()
+ {
+ }
+
+
+ }
+}
Modified:
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/CaretMoveTests.cs
===================================================================
---
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/CaretMoveTests.cs
2008-02-19 09:28:43 UTC (rev 96124)
+++
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/CaretMoveTests.cs
2008-02-19 09:34:02 UTC (rev 96125)
@@ -33,48 +33,45 @@
[TestFixture()]
public class CaretMoveTests
{
-//
-// [Test()]
-// public void TestCaretMoveDown ()
-// {
-// Document document = new Document ();
-// document.Buffer.Text = "1\n2\n3";
-//
-// Caret caret = new Caret (document);
-// caret.Location = new DocumentLocation (1, 0);
-// new CaretMoveDown ().Run (document, caret);
-// Assert.AreEqual (2, caret.Line);
-// Assert.AreEqual (0, caret.Column);
-// }
-//
-// [Test()]
-// public void TestCaretMoveLeft ()
-// {
-// Document document = new Document ();
-// document.Buffer.Text = "test";
-//
-// Caret caret = new Caret (document);
-// caret.Location = new DocumentLocation (0, 1);
-// new CaretMoveLeft ().Run (document, caret);
-// Assert.AreEqual (0, caret.Line);
-// Assert.AreEqual (0, caret.Column);
-// new CaretMoveLeft ().Run (document, caret);
-// Assert.AreEqual (0, caret.Line);
-// Assert.AreEqual (0, caret.Column);
-// }
-//
-// [Test()]
-// public void TestCaretMoveRight ()
-// {
-// Document document = new Document ();
-// document.Buffer.Text = "test";
-//
-// Caret caret = new Caret (document);
-// caret.Location = new DocumentLocation (0, 3);
-// new CaretMoveRight ().Run (document, caret);
-// Assert.AreEqual (4, caret.Column);
-// }
+ [Test()]
+ public void TestCaretMoveDown ()
+ {
+ TextEditorData data = new
Mono.TextEditor.TextEditorData ();
+ data.Document.Text = "1\n2\n3";
+
+ data.Caret.Location = new DocumentLocation (1, 0);
+ new CaretMoveDown ().Run (data);
+ Assert.AreEqual (2, data.Caret.Line);
+ Assert.AreEqual (0, data.Caret.Column);
+ }
+
+ [Test()]
+ public void TestCaretMoveLeft ()
+ {
+ TextEditorData data = new
Mono.TextEditor.TextEditorData ();
+ data.Document.Text = "test";
+
+ data.Caret.Location = new DocumentLocation (0, 1);
+ new CaretMoveLeft ().Run (data);
+ Assert.AreEqual (0, data.Caret.Line);
+ Assert.AreEqual (0, data.Caret.Column);
+ new CaretMoveLeft ().Run (data);
+ Assert.AreEqual (0, data.Caret.Line);
+ Assert.AreEqual (0, data.Caret.Column);
+ }
+
+ [Test()]
+ public void TestCaretMoveRight ()
+ {
+ TextEditorData data = new
Mono.TextEditor.TextEditorData ();
+ data.Document.Text = "test";
+
+ data.Caret.Location = new DocumentLocation (0, 3);
+ new CaretMoveRight ().Run (data);
+ Assert.AreEqual (4, data.Caret.Column);
+ }
+
[TestFixtureSetUp]
public void SetUp()
{
Deleted:
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/DocumentTests.cs
===================================================================
---
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/DocumentTests.cs
2008-02-19 09:28:43 UTC (rev 96124)
+++
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/DocumentTests.cs
2008-02-19 09:34:02 UTC (rev 96125)
@@ -1,159 +0,0 @@
-//
-// DocumentTests.cs
-//
-// Author:
-// Mike Krüger <[EMAIL PROTECTED]>
-//
-// Copyright (C) 2008 Novell, Inc (http://www.novell.com)
-//
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-//
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-//
-
-using System;
-using NUnit.Framework;
-
-namespace Mono.TextEditor.Tests
-{
- [TestFixture()]
- public class DocumentTests
- {
- [Test()]
- public void TestDocumentCreation ()
- {
- Document document = new Mono.TextEditor.Document ();
-
- string text =
- "1234567890\n" +
- "12345678\n" +
- "1234567\n" +
- "123456\n" +
- "12345\n" +
- "1234\n" +
- "123\n" +
- "12\n" +
- "1\n" +
- "\n";
- document.Text = text;
-
- Assert.AreEqual (text, document.Text);
- Assert.AreEqual (11, document.LineCount);
- }
-
- [Test]
- public void TestDocumentInsert ()
- {
- Document document = new Mono.TextEditor.Document ();
-
- string top = "1234567890\n";
- string text =
- "12345678\n" +
- "1234567\n" +
- "123456\n" +
- "12345\n" +
- "1234\n" +
- "123\n" +
- "12\n" +
- "1\n" +
- "\n";
-
- document.Text = top;
- document.Insert (top.Length, text);
- Assert.AreEqual (top + text, document.Text);
- }
-
- [Test]
- public void TestDocumentRemove ()
- {
- Document document = new Mono.TextEditor.Document ();
-
- string top = "1234567890\n";
- string testText =
- "12345678\n" +
- "1234567\n" +
- "123456\n" +
- "12345\n" +
- "1234\n" +
- "123\n" +
- "12\n" +
- "1\n" +
- "\n";
- document.Text = top + testText;
- document.Remove (0, top.Length);
- Assert.AreEqual (document.Text, testText);
-
- document.Remove (0, document.Length);
- LineSegment line = document.GetLine (0);
- Assert.AreEqual (0, line.Offset);
- Assert.AreEqual (0, line.Length);
- Assert.AreEqual (0, document.Length);
- Assert.AreEqual (1, document.LineCount);
- }
-
- [Test]
- public void TestDocumentBug1Test()
- {
- Document document = new Mono.TextEditor.Document ();
-
- string top = "1234567890";
- document.Text = top;
-
- Assert.AreEqual (document.GetLine (0).Length,
document.Length);
-
- document.Remove(0, document.Length);
-
- LineSegment line = document.GetLine (0);
- Assert.AreEqual(0, line.Offset);
- Assert.AreEqual(0, line.Length);
- Assert.AreEqual(0, document.Length);
- Assert.AreEqual(1, document.LineCount);
- }
-
- [Test]
- public void TestDocumentBug2Test()
- {
- Document document = new Mono.TextEditor.Document ();
-
- string top = "123\n456\n789\n0";
- string testText = "Hello World!";
-
- document.Text = top;
-
- document.Insert (top.Length, testText);
-
- LineSegment line = document.GetLine (document.LineCount
- 1);
-
- Assert.AreEqual (top.Length - 1, line.Offset);
- Assert.AreEqual (testText.Length + 1, line.Length);
- }
-
- [TestFixtureSetUp]
- public void SetUp()
- {
- Gtk.Application.Init ();
- }
-
- [TestFixtureTearDown]
- public void Dispose()
- {
- }
-
-
- }
-}
Modified:
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/InsertNewLineTests.cs
===================================================================
---
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/InsertNewLineTests.cs
2008-02-19 09:28:43 UTC (rev 96124)
+++
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.DefaultEditActions/InsertNewLineTests.cs
2008-02-19 09:34:02 UTC (rev 96125)
@@ -36,16 +36,26 @@
[Test()]
public void TestInsertNewLine ()
{
-// Document document = new Document ();
-// document.Buffer.Text = "Hello World!";
-//
-// Caret caret = new Caret (document);
-// caret.Location = new DocumentLocation (0,
"Hello".Length);
-// new InsertNewLine().Run (document, caret);
-// Assert.AreEqual (2, document.Splitter.LineCount);
-// Assert.AreEqual (1, caret.Line);
-// Assert.AreEqual (0, caret.Column);
-// Assert.AreEqual ("Hello\n World!",
document.Buffer.Text);
+ TextEditorData data = new
Mono.TextEditor.TextEditorData ();
+ data.Document.Text = "Hello World!";
+ data.Caret.Location = new DocumentLocation (0,
"Hello".Length);
+ new InsertNewLine().Run (data);
+ Assert.AreEqual (2, data.Document.LineCount);
+ Assert.AreEqual (1, data.Caret.Line);
+ Assert.AreEqual (0, data.Caret.Column);
+ Assert.AreEqual ("Hello\n World!", data.Document.Text);
}
+
+
+ [TestFixtureSetUp]
+ public void SetUp()
+ {
+ Gtk.Application.Init ();
+ }
+
+ [TestFixtureTearDown]
+ public void Dispose()
+ {
+ }
}
}
Modified:
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.mdp
===================================================================
---
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.mdp
2008-02-19 09:28:43 UTC (rev 96124)
+++
trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.Tests/Mono.TextEditor.Tests.mdp
2008-02-19 09:34:02 UTC (rev 96125)
@@ -17,7 +17,8 @@
<File name="Mono.TextEditor.Tests.DefaultEditActions" subtype="Directory"
buildaction="Compile" />
<File
name="Mono.TextEditor.Tests.DefaultEditActions/InsertNewLineTests.cs"
subtype="Code" buildaction="Compile" />
<File name="Mono.TextEditor.Tests.DefaultEditActions/CaretMoveTests.cs"
subtype="Code" buildaction="Compile" />
- <File name="Mono.TextEditor.Tests.DefaultEditActions/DocumentTests.cs"
subtype="Code" buildaction="Compile" />
+ <File name="Mono.TextEditor.Tests" subtype="Directory"
buildaction="Compile" />
+ <File name="Mono.TextEditor.Tests/DocumentTests.cs" subtype="Code"
buildaction="Compile" />
</Contents>
<References>
<ProjectReference type="Project" localcopy="True" refto="Mono.TextEditor"
/>
Modified: trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.mdp
===================================================================
--- trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.mdp
2008-02-19 09:28:43 UTC (rev 96124)
+++ trunk/monodevelop/main/src/addins/Mono.Texteditor/Mono.TextEditor.mdp
2008-02-19 09:34:02 UTC (rev 96125)
@@ -79,11 +79,11 @@
<ProjectReference type="Gac" localcopy="True" refto="System.Xml,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<ProjectReference type="Gac" localcopy="True" refto="Mono.Posix,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
<ProjectReference type="Gac" localcopy="True" refto="Mono.Cairo,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
- <ProjectReference type="Gac" localcopy="True" refto="glib-sharp,
Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
- <ProjectReference type="Gac" localcopy="True" refto="pango-sharp,
Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
- <ProjectReference type="Gac" localcopy="True" refto="atk-sharp,
Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
- <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp,
Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
- <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp,
Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
+ <ProjectReference type="Gac" localcopy="True" refto="glib-sharp,
Version=2.10.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
+ <ProjectReference type="Gac" localcopy="True" refto="pango-sharp,
Version=2.10.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
+ <ProjectReference type="Gac" localcopy="True" refto="atk-sharp,
Version=2.10.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
+ <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp,
Version=2.10.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
+ <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp,
Version=2.10.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
</References>
<GtkDesignInfo isWidgetLibrary="True" gtkVersion="2.10.2">
<ExportedWidgets>
_______________________________________________
Mono-patches maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches