~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.Refactoring/MonoDevelop.Refactoring.addin.xml

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
        url = "http://www.monodevelop.com/"
8
8
        description = "Provides refactoring support to MonoDevelop"
9
9
        category = "IDE extensions"
10
 
        version = "2.4">
 
10
        version = "2.6">
11
11
 
12
12
        <Runtime>
13
13
                <Import assembly = "MonoDevelop.Refactoring.dll"/>
14
14
        </Runtime>
15
15
 
16
16
        <Dependencies>
17
 
                <Addin id="Core" version="2.4"/>
18
 
                <Addin id="Ide" version="2.4"/>
19
 
                <Addin id="DesignerSupport" version="2.4"/>
20
 
                <Addin id="Autotools" version="2.4"/>
21
 
                <Addin id="Deployment" version="2.4"/>
22
 
                <Addin id="SourceEditor2" version="2.4"/>
 
17
                <Addin id="Core" version="2.6"/>
 
18
                <Addin id="Ide" version="2.6"/>
 
19
                <Addin id="DesignerSupport" version="2.6"/>
 
20
                <Addin id="Autotools" version="2.6"/>
 
21
                <Addin id="Deployment" version="2.6"/>
 
22
                <Addin id="SourceEditor2" version="2.6"/>
23
23
        </Dependencies>
24
24
        
25
25
        <!-- Extension Points -->
39
39
        
40
40
        <Extension path = "/MonoDevelop/Refactoring/Refactorings">
41
41
                <Class id="Rename" class = "MonoDevelop.Refactoring.Rename.RenameRefactoring" />
42
 
                <Class id="ExtractMethod" class = "MonoDevelop.Refactoring.ExtractMethod.ExtractMethodRefactoring" />
43
42
                <Class id="IntegrateTemporaryVariable" class = "MonoDevelop.Refactoring.IntegrateTemporaryVariable.IntegrateTemporaryVariableRefactoring" />
44
 
                <Class id="CreateMethod" class = "MonoDevelop.Refactoring.CreateMethod.CreateMethodCodeGenerator" />
45
43
                <Class id="DeclareLocal" class = "MonoDevelop.Refactoring.DeclareLocal.DeclareLocalCodeGenerator" />
46
44
                <Class id="IntroduceConstant" class = "MonoDevelop.Refactoring.IntroduceConstant.IntroduceConstantRefactoring" />
47
45
                <Class id="CreateClass" class = "MonoDevelop.Refactoring.CreateClass.CreateClassCodeGenerator" />
87
85
                </Category>
88
86
                
89
87
                <Category _name = "Refactoring" id = "Refactoring">
90
 
                <Command id = "MonoDevelop.Refactoring.RefactoryCommands.Rename"
91
 
                                        defaultHandler = "MonoDevelop.Refactoring.Rename.RenameHandler"
92
 
                                        _label = "_Rename..." 
93
 
                                        shortcut = "F2"
94
 
                                        macShortcut = "Meta|R"/>
95
88
                <Command id = "MonoDevelop.Refactoring.RefactoryCommands.CurrentRefactoryOperations"
96
89
                                defaultHandler = "MonoDevelop.Refactoring.CurrentRefactoryOperationsHandler"
97
90
                                type="array"
120
113
                                        defaultHandler = "MonoDevelop.Refactoring.RefactorImports.RemoveSortImportsHandler"
121
114
                                        _label = "R_emove and Sort usings"/>
122
115
                
123
 
                <Command id = "MonoDevelop.Refactoring.RefactoryCommands.ExtractMethod"
124
 
                                        defaultHandler = "MonoDevelop.Refactoring.ExtractMethod.ExtractMethodHandler"
125
 
                                        _label = "Extract Method"
126
 
                                        shortcut = "Control|Alt|M"/>
127
 
                <Command id = "MonoDevelop.Refactoring.RefactoryCommands.CreateMethod"
128
 
                                        defaultHandler = "MonoDevelop.Refactoring.CreateMethod.CreateMethodHandler"
129
 
                                        _label = "Create Method"/>
130
116
                <Command id = "MonoDevelop.Refactoring.RefactoryCommands.IntroduceConstant"
131
117
                                        defaultHandler = "MonoDevelop.Refactoring.CreateMethod.IntroduceConstantHandler"
132
118
                                        _label = "_Introduce Constant..."/>
134
120
                <Command id = "MonoDevelop.Refactoring.RefactoryCommands.QuickFix"
135
121
                                        defaultHandler = "MonoDevelop.Refactoring.QuickFixHandler"
136
122
                                        _label = "Quick fix..."
137
 
                                        shortcut = "Alt|Return" />
 
123
                                        shortcut = "Alt|Return"
 
124
                                        macShortcut = "Alt|Return" />
138
125
                
139
126
                <Command id = "MonoDevelop.Refactoring.RefactoryCommands.IntegrateTemporaryVariable"
140
127
                                        defaultHandler = "MonoDevelop.Refactoring.IntegrateTemporaryVariable.IntegrateTemporaryVariableHandler"
162
149
                             insertafter="MonoDevelop.Ide.Commands.TextEditorCommands.ShowCodeTemplateWindow" />
163
150
        </Extension>
164
151
        
 
152
        <Extension path = "/MonoDevelop/Ide/TextEditorExtensions">
 
153
                <Class class = "MonoDevelop.Refactoring.Rename.RenameTextEditorExtension" />
 
154
        </Extension>
 
155
        
165
156
        <Extension path = "/MonoDevelop/Ide/MainMenu/Edit">
166
157
                <CommandItem id = "MonoDevelop.CodeGeneration.CodeGenerationCommands.ShowCodeGenerationWindow"
167
158
                             insertafter="MonoDevelop.Ide.Commands.TextEditorCommands.ShowCodeTemplateWindow" />