~ubuntu-branches/ubuntu/saucy/monodevelop/saucy-proposed

« back to all changes in this revision

Viewing changes to debian/patches/avoid-dependency-on-Mono.Addins-0.5.patch

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2012-06-22 20:35:35 UTC
  • mfrom: (10.3.2)
  • Revision ID: package-import@ubuntu.com-20120622203535-zrozwvcf6kfk6l6i
Tags: 3.0.3.2+dfsg-1
* [3fd89ae] Imported Upstream version 3.0.3.2+dfsg
* [379a680] Remove old patches we haven't used for ages from git.
* [d71161d] Remove correct_paths_in_monodevelop-core-addins.pc.patch.
  Upstream claim to have fixed this by moving assembly install locations.
* [15dbfb9] Fix install location for MonoDevelop.Gettext.dll.config.
* [26eb434] Fix install location for MonoDevelop.SourceEditor2.dll.config.
* [4169974] Upstream commit 53282c9 which finally reconciles the 
  MonoDevelop.Gettext.dll install location with the 
  monodevelop-core-addins.pc location.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
From 5a628ccfeed02aaee060ce563ff6bd2d468bfb9e Mon Sep 17 00:00:00 2001
2
 
From: Lluis Sanchez <lluis@novell.com>
3
 
Date: Mon, 13 Dec 2010 16:19:16 +0100
4
 
Subject: [PATCH] Avoid dependency on Mono.Addins 0.5
5
 
 
6
 
---
7
 
 .../DotNetProjectSubtypeNode.cs                    |   18 ++++++++++++++----
8
 
 1 files changed, 14 insertions(+), 4 deletions(-)
9
 
 
10
 
diff --git a/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Extensions/DotNetProjectSubtypeNode.cs b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Extensions/DotNetProjectSubtypeNode.cs
11
 
index adcd5ce..2ca5640 100644
12
 
--- a/src/core/MonoDevelop.Core/MonoDevelop.Projects.Extensions/DotNetProjectSubtypeNode.cs
13
 
+++ b/src/core/MonoDevelop.Core/MonoDevelop.Projects.Extensions/DotNetProjectSubtypeNode.cs
14
 
@@ -142,17 +142,27 @@ namespace MonoDevelop.Projects.Extensions
15
 
        
16
 
        class DotNetProjectSubtypeNodeImport: ExtensionNode
17
 
        {
18
 
+               [NodeAttribute ("language")]
19
 
+               string language;
20
 
+
21
 
+               [NodeAttribute ("projects")]
22
 
+               string projects;
23
 
+
24
 
                protected override void Read (NodeElement elem)
25
 
                {
26
 
                        IsAdd = elem.NodeName == "AddImport";
27
 
                        base.Read (elem);
28
 
                }
29
 
                
30
 
-               [NodeAttribute ("language")]
31
 
-               public string Language { get; set; }
32
 
+               public string Language {
33
 
+                       get { return language; }
34
 
+                       set { language = value; }
35
 
+               }
36
 
                
37
 
-               [NodeAttribute ("projects")]
38
 
-               public string Projects { get; set; }
39
 
+               public string Projects {
40
 
+                       get { return projects; }
41
 
+                       set { projects = value; }
42
 
+               }
43
 
                
44
 
                public bool IsAdd { get; private set; }
45
 
        }
46
 
1.7.3.3
47