Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MonoDevelop.Ide.addin.xml « MonoDevelop.Ide « core « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a3aa87ef2977269b2c8f7f920f671319ba03326f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
<Addin id          = "Ide"
       namespace   = "MonoDevelop"
       name        = "MonoDevelop Ide"
       author      = "Todd Berman, Pedro Abelleira Seco, John Luke, Daniel Kornhauser, Alex Graveley, nricciar, John Bou Antoun, Ben Maurer, Jeroen Zwartepoorte, Gustavo Giráldez, Miguel de Icaza, Inigo Illan, Iain McCoy, Nick Drochak, Paweł Różański, Richard Torkar, Paco Martinez, Lluis Sanchez Gual, Christian Hergert, Mike Krueger"
       copyright   = "LGPL"
       url         = "http://www.monodevelop.com"
       description = "The MonoDevelop IDE application."
       category    = "MonoDevelop Core"
       isroot      = "true"
       version     = "2.4"
       compatVersion = "2.4">
	
	<Runtime>
		<Import assembly="MonoDevelop.Ide.dll"/>
	</Runtime>
	
	<Dependencies>
		<Addin id="Core" version="2.4"/>
	</Dependencies>

	<!-- Extension ponts -->
	
	<ConditionType id="combineopen" type="MonoDevelop.Ide.Codons.CombineOpenCondition" />
	<ConditionType id="activeproject" type="MonoDevelop.Ide.Codons.ProjectActiveCondition" />
	<ConditionType id="activelanguage" type="MonoDevelop.Ide.Codons.LanguageActiveCondition" />
	
	<ExtensionNodeSet id="MonoDevelop.Ide.OptionsDialogSection">
		<ExtensionNode name="Section" type="MonoDevelop.Ide.Extensions.OptionsDialogSection" />
	</ExtensionNodeSet>
	
	<ExtensionPoint path = "/MonoDevelop/Core/PlatformService" name = "Platform Service">
		<Description>Implementations of platform-dependent code wrapped in a platform-agnostic API. Specified classes must inherit from MonoDevelop.Ide.Desktop.PlatformService.</Description>
		<ExtensionNode name="Class" />
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Core/StockIcons" name = "Stock icons">
		<Description>Available from MonoDevelop.Ide.ImageService</Description>
		<ExtensionNode name="StockIcon" type="MonoDevelop.Ide.Extensions.StockIconCodon" />
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Core/WebBrowsers" name = "Web Browsers">
		<Description>Used optionally to provides a web browser widget. Must implement MonoDevelop.Ide.WebBrowser.IWebBrowserLoader</Description>
		<ExtensionNode name="Class" />
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Core/MimeTypes" name = "Mime types">
		<Description>Mime type to file extension mappings. Mime types defined here override the ones provided by the operating system.</Description>
		<ExtensionNode name="MimeType" type="MonoDevelop.Ide.Extensions.MimeTypeNode"/>
	</ExtensionPoint>
	
	<!-- This item set can be used to define extension points for extensible menus and toolbars -->
	
	<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet">
		<ExtensionNode name="CommandItem" type="MonoDevelop.Components.Commands.ExtensionNodes.CommandItemCodon" />
		<ExtensionNode name="SeparatorItem" type="MonoDevelop.Components.Commands.ExtensionNodes.SeparatorItemCodon" />
		<ExtensionNode name="ItemSet" type="MonoDevelop.Components.Commands.ExtensionNodes.ItemSetCodon">
			<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet" />
		</ExtensionNode>
		<ExtensionNode name="LinkItem" type="MonoDevelop.Components.Commands.ExtensionNodes.LinkItemCodon" />
		<ExtensionNode name="LocalCommandItem" type="MonoDevelop.Components.Commands.ExtensionNodes.LocalCommandItemCodon" />
	</ExtensionNodeSet>

	<ExtensionNodeSet id="MonoDevelop.Components.Commands.CommandSet">
		<ExtensionNode name="Command" type="MonoDevelop.Components.Commands.ExtensionNodes.CommandCodon" />
		<ExtensionNode name="Category" type="MonoDevelop.Components.Commands.ExtensionNodes.CommandCategoryCodon">
			<ExtensionNode name="Command" type="MonoDevelop.Components.Commands.ExtensionNodes.CommandCodon" />
		</ExtensionNode>
	</ExtensionNodeSet>

	<ExtensionNodeSet id="MonoDevelop.Components.Commands.KeyBindingScheme">
		<ExtensionNode name="Scheme" type="MonoDevelop.Components.Commands.ExtensionNodes.SchemeExtensionNode" />
	</ExtensionNodeSet>
	
	<ExtensionPoint path = "/MonoDevelop/Components/DialogHandlers" name = "Dialog Handlers">
		<Description>Allows providing platform-specific implementations for common dialogs</Description>
		<ExtensionNode name="Class" />
	</ExtensionPoint>


	<ExtensionPoint path = "/MonoDevelop/ProjectModel/Gui/ItemOptionPanels" name="Dialog panels for item options">
		<Description>Dialog panels for item options. Those panels will be shown for all kind of solution items, solutions and workspaces.</Description>
		<ExtensionNodeSet id="MonoDevelop.Ide.OptionsDialogSection"/>
		<ConditionType id="ItemType" type="MonoDevelop.Projects.Extensions.ItemTypeCondition">
			<Description>Type of the item. If no namespace is provided, MonoDevelop.Projects is assumed.</Description>
		</ConditionType>
		<ConditionType id="ActiveLanguage" type="MonoDevelop.Projects.Extensions.ProjectLanguageCondition">
			<Description>Language of the project. It will evaluate to false if the project is not a .NET project.</Description>
		</ConditionType>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/ProjectModel/Gui/DefaultPolicyPanels" name = "Default policy panels">
		<Description>Panels for editing default policies. Must derive from PolicyOptionsPanel. 
		Should be the same policy panel registered for ItemOptionPanels.</Description>
		<ExtensionNodeSet id="MonoDevelop.Ide.OptionsDialogSection"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/ProjectModel/Gui/MimeTypePolicyPanels" name = "Mime Type policy panels">
		<Description>Panels for editing mime type policies. Must derive from MimeTypePolicyOptionsPanel.</Description>
		<ExtensionNode name="Panel" type="MonoDevelop.Ide.Extensions.MimeTypeOptionsPanelNode"/>
	</ExtensionPoint>

	
	<ExtensionPoint path = "/MonoDevelop/Ide/DisplayBindings" name = "Display bindings">
		<Description>Display bindings.</Description>
		<ExtensionNode name="DisplayBinding" type="MonoDevelop.Ide.Codons.DisplayBindingCodon" />
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/StartupHandlers" name = "Startup handlers">
		<Description>Commands to be automatically executed when the IDE starts.</Description>
		<ExtensionNode name="Class">
			<Description>A subclass of MonoDevelop.Components.Commands.CommandHandler</Description>
		</ExtensionNode>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/Commands" name = "User interface commands">
		<Description>User interface commands.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.CommandSet"/>
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/Ide/KeyBindingSchemes" name = "Key binding schemes">
		<Description>Key binding schemes.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.KeyBindingScheme"/>
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/Ide/ContextMenu/ClassPad/Namespace" name = "Namespace node context menu in the class pad">
		<Description>Context menu for namespaces in the class pad.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/Ide/ContextMenu/ClassPad/Method" name = "Method node context menu in the class pad">
		<Description>Context menu for methods in the class pad.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/Ide/ContextMenu/ClassPad/Field" name = "Field node context menu in the class pad">
		<Description>Context menu for fields in the class pad.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/Ide/ContextMenu/ClassPad/Event" name = "Event node context menu in the class pad">
		<Description>Context menu for events in the class pad.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/Ide/ContextMenu/ClassPad/Combine" name = "Combine node context menu in the class pad">
		<Description>Context menu for combines in the class pad.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/Ide/ContextMenu/ClassPad/Class" name = "Class node context menu in the class pad">
		<Description>Context menu for classes in the class pad.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/Ide/ContextMenu/ClassPad/Property" name = "Property node context menu in the class pad">
		<Description>Context menu for properties in the class pad.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/ContextMenu/ClassPad/Project" name = "Project node context menu in the class pad">
		<Description>Context menu for projects in the class pad.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/Ide/ContextMenu/ClassPad/References" name = "Reference node context menu in the class pad">
		<Description>Context menu for references in the class pad.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/ContextMenu/ProjectPad" name = "Project pad context menu">
		<Description>Context menu for nodes in the solution pad.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
		<ConditionType id="ItemType" type="MonoDevelop.Projects.Extensions.ItemTypeCondition">
			<Description>Type of the item. If no namespace is provided, MonoDevelop.Projects is assumed.</Description>
		</ConditionType>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/TaskList/View" name = "Task list views">
		<Description>Task list views to be shown in the task list pad.</Description>
		<ExtensionNode name="TaskListView" type="MonoDevelop.Ide.Codons.TaskListViewCodon"/>
	</ExtensionPoint>
	
	<ExtensionNodeSet id="MonoDevelop.Ide.Pads">
		<ExtensionNode name="Pad" type="MonoDevelop.Ide.Codons.PadCodon">
			<ExtensionNode name="NodeBuilder" type="MonoDevelop.Ide.Codons.NodeBuilderCodon"/>
			<ExtensionNode name="PadOption" type="MonoDevelop.Ide.Codons.PadOptionCodon"/>
		</ExtensionNode>
		<ExtensionNode name="SolutionPad" type="MonoDevelop.Ide.Codons.SolutionPadCodon">
			<ExtensionNode name="NodeBuilder" type="MonoDevelop.Ide.Codons.NodeBuilderCodon"/>
			<ExtensionNode name="PadOption" type="MonoDevelop.Ide.Codons.PadOptionCodon"/>
			<ExtensionNode name="ContextMenu" type="MonoDevelop.Ide.Codons.PadContextMenuExtensionNode"/>
		</ExtensionNode>
		<ExtensionNode name="Category" type="MonoDevelop.Ide.Codons.CategoryNode">
			<ExtensionNodeSet id="MonoDevelop.Ide.Pads"/>
		</ExtensionNode>
	</ExtensionNodeSet>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/Pads" name = "Workbench pads">
		<Description>Pads shown in the workbench.</Description>
		<ExtensionNodeSet id="MonoDevelop.Ide.Pads" />
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/WorkbenchContexts" name = "Workbench contexts">
		<Description>Workbench contexts.</Description>
		<ExtensionNode name="WorkbenchContext" type="MonoDevelop.Ide.Codons.WorkbenchContextCodon">
			<ExtensionNode name ="ContextPad" type="MonoDevelop.Ide.Codons.ContextPadCodon" />
		</ExtensionNode>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/GlobalOptionsDialog" name = "Global options panels">
		<Description>Dialog panels for global MonoDevelop options.</Description>
		<ExtensionNodeSet id="MonoDevelop.Ide.OptionsDialogSection"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/ProjectFileFilters" name = "Combine file filters">
		<Description>File filters to be shown in the Project Open dialog.</Description>
		<ExtensionNode name="FileFilter" type="MonoDevelop.Ide.Codons.FileFilterCodon"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/FileFilters" name = "File filters">
		<Description>File filters to be shown in the File Open dialog.</Description>
		<ExtensionNode name="FileFilter" type="MonoDevelop.Ide.Codons.FileFilterCodon"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/Toolbar" name = "Main toolbar">
		<Description>Main toolbar items.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/MainMenu" name = "Main menu">
		<Description>Main menu items.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/FileTemplates" name = "File templates">
		<Description>File templates to be shown in the New File dialog.</Description>
		<ExtensionNode name="FileTemplate" type="MonoDevelop.Ide.Codons.ProjectTemplateCodon"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/FileTemplateTypes" name = "File template types">
		<Description>Template types which can be used to create file templates.</Description>
		<ExtensionNode name="FileTemplateType" type="MonoDevelop.Ide.Codons.FileTemplateTypeCodon"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/FileTemplateConditionTypes" name = "File template condition types">
		<Description>Condition types which can be used to limit when file templates can be created.</Description>
		<ExtensionNode name="FileTemplateConditionType" type="MonoDevelop.Ide.Codons.FileTemplateConditionTypeCodon"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/ProjectTemplates" name = "File template types">
		<Description>Project templates to be shown in the New Project dialog.</Description>
		<ExtensionNode name="ProjectTemplate" type="MonoDevelop.Ide.Codons.ProjectTemplateCodon"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/TextEditorExtensions" name = "Text editor extensions">
		<Description>Extensions to the text editor. Classes must be a subclass of TextEditorExtension.</Description>
		<ExtensionNode name="Class" type="MonoDevelop.Ide.Extensions.TextEditorExtensionNode"/>
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/Ide/ProjectFeatures" name = "Project feature editors">
		<ExtensionNode name="Class"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/ContextMenu/DocumentTab" name = "View Context Menu">
		<Description>The context menu for all open files.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/ExecutionCommandEditors" name = "View Context Menu">
		<Description>Widgets which allow editing the configuration of execution commands.</Description>
		<ExtensionNode name="Customizer" type="MonoDevelop.Ide.Execution.ExecutionCommandCustomizer" objectType="MonoDevelop.Ide.Execution.IExecutionCommandCustomizer"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/CodeTemplates" name = "Code Templates">
		<Description>Custom code templates.</Description>
		<ExtensionNode name="CodeTemplate" type="MonoDevelop.Ide.CodeTemplates.CodeTemplateCodon"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/TextEditorResolver" name = "Text Editor Resolver">
		<Description>Text editor resolvers are responsible for getting resolve results inside text editor locations.</Description>
		<ExtensionNode name="Resolver" type="MonoDevelop.Ide.Gui.Content.TextEditorResolverProviderCodon"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/WorkbenchLayouts" name = "Workbench Layouts">
		<Description>This extension point allows registering layouts and pads to be shown in each layout</Description>
		<ExtensionNode name="Layout" type="MonoDevelop.Ide.Extensions.LayoutExtensionNode"/>
	</ExtensionPoint>
	
	<ExtensionPoint path = "/MonoDevelop/Ide/CustomTools" name = "Custom code generation tools">
		<Description>Extensions to the text editor. Classes must be a subclass of TextEditorExtension.</Description>
		<ExtensionNode name="Tool" type="MonoDevelop.Ide.Extensions.CustomToolExtensionNode"/>
	</ExtensionPoint>
	
	<!-- Extensions -->
	
	<Extension path = "/MonoDevelop/Core/Applications">
		<Application id = "gsetup"
		       description = "Graphical add-in setup utility"
		       class = "MonoDevelop.Ide.Gui.Dialogs.SetupApp"/>
	</Extension>

	<Extension path = "/MonoDevelop/Core/StockIcons">
		<StockIcon stockid = "md-add-namespace" resource = "add-namespace-16.png"/>
		<StockIcon stockid = "md-breakpoint" resource = "breakpoint-22.png"/>
		<StockIcon stockid = "md-breakpoint" resource = "breakpoint-16.png" size="Menu"/>
		<StockIcon stockid = "md-breakpoint-new" resource = "breakpoint-new-22.png"/>
		<StockIcon stockid = "md-breakpoint-new" resource = "breakpoint-new-16.png" size="Menu"/>
		<StockIcon stockid = "md-breakpoint-disabled" resource = "breakpoint-disabled-22.png"/>
		<StockIcon stockid = "md-breakpoint-disabled" resource = "breakpoint-disabled-16.png" size="Menu"/>
		<StockIcon stockid = "md-breakpoint-invalid" resource = "breakpoint-invalid-22.png"/>
		<StockIcon stockid = "md-breakpoint-invalid" resource = "breakpoint-invalid-16.png" size="Menu"/>
		<StockIcon stockid = "md-breakpoint-on-off" resource = "breakpoint-on-off-22.png"/>
		<StockIcon stockid = "md-breakpoint-on-off" resource = "breakpoint-on-off-16.png" size="Menu"/>
		<StockIcon stockid = "md-breakpoint-disable-all" resource = "breakpoint-disable-all-22.png"/>
		<StockIcon stockid = "md-breakpoint-disable-all" resource = "breakpoint-disable-all-16.png" size="Menu"/>
		<StockIcon stockid = "md-breakpoint-remove-all" resource = "breakpoint-remove-all-22.png"/>
		<StockIcon stockid = "md-breakpoint-remove-all" resource = "breakpoint-remove-all-16.png" size="Menu"/>
		<StockIcon stockid = "md-build-combine" resource = "build-solution-22.png" />
		<StockIcon stockid = "md-build-combine" resource = "build-solution-16.png" size="Menu"/>
		<StockIcon stockid = "md-build-current-selected-project" resource = "build-project-22.png" />
		<StockIcon stockid = "md-build-current-selected-project" resource = "build-project-16.png" size="Menu"/>
		<StockIcon stockid = "md-class" resource = "element-class-16.png" />
		<StockIcon stockid = "md-clear-all-bookmarks" resource = "Icons.16x16.ClearAllBookmarks" size="Menu"/>
		<StockIcon stockid = "md-clear-all-bookmarks" resource = "Icons.22x22.ClearAllBookmarks.png" />
		<StockIcon stockid = "md-close-all-documents" resource = "Icons.16x16.CloseAllDocuments" />
		<StockIcon stockid = "md-close-combine-icon" resource = "Icons.16x16.CloseCombineIcon" />
		<StockIcon stockid = "md-closed-folder" resource = "Icons.16x16.ClosedFolderBitmap" />
		<StockIcon stockid = "md-closed-reference-folder" resource = "Icons.16x16.ClosedReferenceFolder" />
		<StockIcon stockid = "md-closed-resource-folder" resource = "Icons.16x16.ClosedResourceFolder" />
		<StockIcon stockid = "md-solution" resource = "solution-16.png" size = "Menu" />
		<StockIcon stockid = "md-solution" resource = "solution-32.png" size = "Dnd" />
		<StockIcon stockid = "md-delegate" resource = "element-delegate-16.png" />
		<StockIcon stockid = "md-empty" resource = "Icons.16x16.Empty" />
		<StockIcon stockid = "md-empty-file-icon" resource = "Icons.32x32.EmptyFileIcon" />
		<StockIcon stockid = "md-enum" resource = "element-enumeration-16.png" />
		<StockIcon stockid = "md-event" resource = "element-event-16.png" />
		<StockIcon stockid = "md-static-event" icon = "res:element-event-16.png|res:static-16.png" size="Menu"/>
		<StockIcon stockid = "md-execution-marker" resource = "ExecutionMarker.png" />
		<StockIcon stockid = "md-extensionmethod" resource = "element-extensionmethod-16.png" />
		<StockIcon stockid = "md-field" resource = "element-field-16.png" />
		<StockIcon stockid = "md-static-field" icon = "res:element-field-16.png|res:static-16.png" size="Menu" />
		<StockIcon stockid = "md-find-in-files" resource = "Icons.16x16.FindInFiles" />
		<StockIcon stockid = "md-find-next-icon" resource = "edit-find-next-16.png" size="Menu"/>
		<StockIcon stockid = "md-find-next-icon" resource = "edit-find-next-24.png" />
		<StockIcon stockid = "md-fullscreen" resource = "view-fullscreen.png"  size = "Menu" />
		<StockIcon stockid = "md-fullscreen" resource = "view-fullscreen_22.png" />
		<StockIcon stockid = "md-goto-nextbookmark" resource = "Icons.16x16.GotoNextbookmark" size="Menu"/>
		<StockIcon stockid = "md-goto-nextbookmark" resource = "Icons.22x22.GotoNextbookmark.png"/>
		<StockIcon stockid = "md-goto-prevbookmark" resource = "Icons.16x16.GotoPrevbookmark" size="Menu"/>
		<StockIcon stockid = "md-goto-prevbookmark" resource = "Icons.22x22.GotoPrevbookmark.png" />
		<StockIcon stockid = "md-interface" resource = "element-interface-16.png" />
		<StockIcon stockid = "md-internal-class" icon = "res:element-class-16.png|res:visibility-internal-16.png" size="Menu"/>
		<StockIcon stockid = "md-internal-delegate" icon = "res:element-delegate-16.png|res:visibility-internal-16.png" size="Menu" />
		<StockIcon stockid = "md-internal-enum" icon = "res:element-enumeration-16.png|res:visibility-internal-16.png" size="Menu" />
		<StockIcon stockid = "md-internal-event" icon = "res:element-event-16.png|res:visibility-internal-16.png" size="Menu" />
		<StockIcon stockid = "md-internal-static-event" icon = "res:element-event-16.png|res:static-16.png|res:visibility-internal-16.png" size="Menu" />
		<StockIcon stockid = "md-internal-extensionmethod" resource = "res:element-extensionmethod-16.png|res:visibility-internal-16.png" />
		<StockIcon stockid = "md-internal-field" icon = "res:element-field-16.png|res:visibility-internal-16.png" size="Menu" />
		<StockIcon stockid = "md-internal-static-field" icon = "res:element-field-16.png|res:static-16.png|res:visibility-internal-16.png" size="Menu" />
		<StockIcon stockid = "md-internal-interface" icon = "res:element-interface-16.png|res:visibility-internal-16.png" size="Menu" />
		<StockIcon stockid = "md-internal-method" icon = "res:element-method-16.png|res:visibility-internal-16.png" size="Menu" />
		<StockIcon stockid = "md-internal-static-method" icon = "res:element-method-16.png|res:static-16.png|res:visibility-internal-16.png" size="Menu" />
		<StockIcon stockid = "md-internal-property" icon = "res:element-property-16.png|res:visibility-internal-16.png" size="Menu" />
		<StockIcon stockid = "md-internal-static-property" icon = "res:element-property-16.png|res:static-16.png|res:visibility-internal-16.png" size="Menu" />
		<StockIcon stockid = "md-internal-struct" icon = "res:element-structure-16.png|res:visibility-internal-16.png" size="Menu" />
		<StockIcon stockid = "md-literal" resource = "element-literal-16.png" />
		<StockIcon stockid = "md-method" resource = "element-method-16.png" />
		<StockIcon stockid = "md-static-method" icon = "res:element-method-16.png|res:static-16.png" size="Menu" />
		<StockIcon stockid = "md-newmethod" resource = "element-method-new-16.png" />
		<StockIcon stockid = "md-misc-files" resource = "Icons.16x16.MiscFiles" />
		<StockIcon stockid = "md-name-space" resource = "element-namespace-16.png" />
		<StockIcon stockid = "md-new-folder-icon" resource = "folder-new-16.png" />
		<StockIcon stockid = "md-new-project" resource = "project-new-16.png" />
		<StockIcon stockid = "md-new-solution" resource = "solution-new-16.png" />
		<StockIcon stockid = "md-open-folder" resource = "Icons.16x16.OpenFolderBitmap" />
		<StockIcon stockid = "md-open-project-icon" resource = "Icons.16x16.OpenProjectIcon" />
		<StockIcon stockid = "md-open-reference-folder" resource = "Icons.16x16.OpenReferenceFolder" />
		<StockIcon stockid = "md-open-resource-folder" resource = "Icons.16x16.OpenResourceFolder" />
		<StockIcon stockid = "md-output-icon" resource = "Icons.16x16.OutputIcon" />
		<StockIcon stockid = "md-private-class" icon = "res:element-class-16.png|res:visibility-private-16.png" size="Menu" />
		<StockIcon stockid = "md-private-delegate" icon = "res:element-delegate-16.png|res:visibility-private-16.png" size="Menu" />
		<StockIcon stockid = "md-private-enum" icon = "res:element-enumeration-16.png|res:visibility-private-16.png" size="Menu" />
		<StockIcon stockid = "md-private-static-event" icon = "res:element-event-16.png|res:static-16.png|res:visibility-private-16.png" size="Menu" />
		<StockIcon stockid = "md-private-extensionmethod" resource = "res:element-extensionmethod-16.png|res:visibility-private-16.png" />
		<StockIcon stockid = "md-private-field" icon = "res:element-field-16.png|res:visibility-private-16.png" size="Menu" />
		<StockIcon stockid = "md-private-static-field" icon = "res:element-field-16.png|res:visibility-private-16.png|res:static-16.png" size="Menu" />
		<StockIcon stockid = "md-private-interface" icon = "res:element-interface-16.png|res:visibility-private-16.png" size="Menu" />
		<StockIcon stockid = "md-private-method" icon = "res:element-method-16.png|res:visibility-private-16.png" size="Menu" />
		<StockIcon stockid = "md-private-static-method" icon = "res:element-method-16.png|res:static-16.png|res:visibility-private-16.png" size="Menu" />
		<StockIcon stockid = "md-private-property" icon = "res:element-property-16.png|res:visibility-private-16.png" size="Menu" />
		<StockIcon stockid = "md-private-static-property" icon = "res:element-property-16.png|res:static-16.png|res:visibility-private-16.png" size="Menu" />
		<StockIcon stockid = "md-private-struct" icon = "res:element-structure-16.png|res:visibility-private-16.png" size="Menu" />
		<StockIcon stockid = "md-properties-icon" resource = "Icons.16x16.PropertiesIcon" />
		<StockIcon stockid = "md-property" resource = "element-property-16.png" />
		<StockIcon stockid = "md-static-property" icon = "res:element-property-16.png|res:static-16.png" size="Menu" />
		<StockIcon stockid = "md-protected-class" icon = "res:element-class-16.png|res:visibility-protected-16.png" size="Menu" />
		<StockIcon stockid = "md-protected-delegate" icon = "res:element-delegate-16.png|res:visibility-protected-16.png" size="Menu" />
		<StockIcon stockid = "md-protected-enum" icon = "res:element-enumeration-16.png|res:visibility-protected-16.png" size="Menu" />
		<StockIcon stockid = "md-protected-event" icon = "res:element-event-16.png|res:visibility-protected-16.png" size="Menu" />
		<StockIcon stockid = "md-protected-static-event" icon = "res:element-event-16.png|res:static-16.png|res:visibility-protected-16.png" size="Menu" />
		<StockIcon stockid = "md-protected-extensionmethod" resource = "res:element-extensionmethod-16.png|res:visibility-protected-16.png" />
		<StockIcon stockid = "md-protected-field" icon = "res:element-field-16.png|res:visibility-protected-16.png" size="Menu" />
		<StockIcon stockid = "md-protected-static-field" icon = "res:element-field-16.png|res:static-16.png|res:visibility-protected-16.png" size="Menu" />
		<StockIcon stockid = "md-protected-interface" icon = "res:element-interface-16.png|res:visibility-protected-16.png" size="Menu" />
		<StockIcon stockid = "md-protected-method" icon = "res:element-method-16.png|res:visibility-protected-16.png" size="Menu" />
		<StockIcon stockid = "md-protected-static-method" icon = "res:element-method-16.png|res:static-16.png|res:visibility-protected-16.png" size="Menu" />
		<StockIcon stockid = "md-protected-property" icon = "res:element-property-16.png|res:visibility-protected-16.png" size="Menu" />
		<StockIcon stockid = "md-protected-static-property" icon = "res:element-property-16.png|res:static-16.png|res:visibility-protected-16.png" size="Menu" />
		<StockIcon stockid = "md-protected-struct" icon = "res:element-structure-16.png|res:visibility-protected-16.png" size="Menu" />
		<StockIcon stockid = "md-reference" resource = "project-reference-16.png" />
		<StockIcon stockid = "md-reference-package" resource = "project-reference-package-16.png" />
		<StockIcon stockid = "md-reference-folder" resource = "project-reference-folder-16.png" />
		<StockIcon stockid = "md-reference-project" resource = "project-reference-project-16.png" />
		<StockIcon stockid = "md-remove-namespace" resource = "remove-namespace-16.png" />
		<StockIcon stockid = "md-warning-overlay" resource = "res:warning-overlay.png" />
		<StockIcon stockid = "md-reference-warning" icon = "res:project-reference-16.png|res:warning-overlay.png" size = "Menu"/>
		<StockIcon stockid = "md-replace-in-files" resource = "Icons.16x16.ReplaceInFiles" />
		<StockIcon stockid = "md-resource-file-icon" resource = "Icons.16x16.ResourceFileIcon" size = "Menu" />
		<StockIcon stockid = "md-resource-file-icon" resource = "Icons.32x32.ResourceFileIcon" size = "Dnd" />
		<StockIcon stockid = "md-save-all-icon" resource = "Icons.16x16.SaveAllIcon" size = "Menu"/>
		<StockIcon stockid = "md-save-all-icon" resource = "Icons.24x24.SaveAllIcon" />
		<StockIcon stockid = "md-monodevelop" resource = "monodevelop-16.png" size="Menu"/>
		<StockIcon stockid = "md-monodevelop" resource = "monodevelop-22.png" />
		<StockIcon stockid = "md-monodevelop" resource = "monodevelop-32.png" size="Dnd"/>
		<StockIcon stockid = "md-monodevelop" resource = "monodevelop-22.png" size="Button"/>
		<StockIcon stockid = "md-monodevelop" resource = "monodevelop-48.png" size="Dialog"/>
		<StockIcon stockid = "md-project" resource = "project-16.png" size="Menu"/>
		<StockIcon stockid = "md-project" resource = "project-32.png" size="Dnd" />
		<StockIcon stockid = "md-project-gui" icon = "md-project|res:project-gui-32.png" size="Dnd" />
		<StockIcon stockid = "md-project-console" icon = "md-project|res:project-console-32.png" size="Dnd" />
		<StockIcon stockid = "md-project-library" icon = "md-project|res:project-library-32.png" size="Dnd" />
		<StockIcon stockid = "md-project-web" icon = "md-project|res:web-overlay-32.png" size="Dnd" />
		<StockIcon stockid = "md-sort-namespace" resource = "sort-namespace-16.png" />
		<StockIcon stockid = "md-split-window" resource = "Icons.16x16.SplitWindow" />
		<StockIcon stockid = "md-struct" resource = "element-structure-16.png" />
		<StockIcon stockid = "md-task-list-icon" resource = "pad-task-list-16.png" size="Menu"/>
		<StockIcon stockid = "md-task-list-icon" resource = "pad-task-list-24.png" />
		<StockIcon stockid = "md-text-file-icon" resource = "Icons.16x16.TextFileIcon" size = "Menu" />
		<StockIcon stockid = "md-text-file-icon" resource = "Icons.32x32.TextFileIcon" size = "Dnd" />
		<StockIcon stockid = "md-html-file-icon" icon = "md-text-file-icon|res:web-overlay-32.png" size = "Dnd" />
		<StockIcon stockid = "md-html-file-icon" icon = "md-text-file-icon|res:web-overlay-16.png" size = "Menu" />
		<StockIcon stockid = "md-class-file" resource = "file-class-32.png" size = "Dnd" />
		<StockIcon stockid = "md-interface-file" resource = "file-interface-32.png" size = "Dnd" />
		<StockIcon stockid = "md-enum-file" resource = "file-enum-32.png" size = "Dnd" />
		<StockIcon stockid = "md-struct-file" resource = "file-struct-32.png" size = "Dnd" />
		<StockIcon stockid = "md-gui-file" icon = "md-text-file-icon|res:project-gui-32.png" size = "Dnd" />
		<StockIcon stockid = "md-tip-of-the-day" resource = "Icons.16x16.TipOfTheDay" />
		<StockIcon stockid = "md-toggle-bookmark" resource = "Icons.16x16.ToggleBookmark" size="Menu"/>
		<StockIcon stockid = "md-toggle-bookmark" resource = "Icons.22x22.ToggleBookmark.png" />
		<StockIcon stockid = "md-web-search-icon" resource = "Icons.16x16.WebSearchIcon" />
		<StockIcon stockid = "md-xml-file-icon" resource = "file-xml-16.png" size = "Menu" />
		<StockIcon stockid = "md-xml-file-icon" resource = "file-xml-32.png" size = "Dnd" />
		<StockIcon stockid = "md-addin-file" resource = "file-addin-16.png" size = "Menu" />
		<StockIcon stockid = "md-package" resource = "package-x-generic_22.png" />
		<StockIcon stockid = "md-package" resource = "package-x-generic.png" size = "Dialog" />
		<StockIcon stockid = "md-select-all" resource = "edit-select-all_22.png" />
		<StockIcon stockid = "md-select-all" resource = "edit-select-all.png" size = "Menu" />
		<StockIcon stockid = "md-software-update" resource = "system-software-update_22.png" />
		<StockIcon stockid = "md-software-update" resource = "system-software-update_22.png" size = "Button" />
		<StockIcon stockid = "md-software-update" resource = "system-software-update.png" size = "Dialog" />
		<StockIcon stockid = "md-user-package" resource = "user-package.png" />
		<StockIcon stockid = "md-visual-studio" resource = "visual-studio.png" />
		<StockIcon stockid = "md-comment" resource = "comment.png" />
		<StockIcon stockid = "md-uncomment" resource = "uncomment.png" />
		<StockIcon stockid = "md-addin" resource = "plugin-16.png" />
		<StockIcon stockid = "md-addin" resource = "plugin-16.png" size = "Menu"/>
		<StockIcon stockid = "md-addin" resource = "plugin-22.png" size = "Button"/>
		<StockIcon stockid = "md-addin" resource = "plugin-32.png" size = "LargeToolbar"/>
		<StockIcon stockid = "md-workspace" resource = "workspace-16.png" size="Menu"/>
		<StockIcon stockid = "md-workspace" resource = "workspace-32.png" size="Dnd" />
		<StockIcon stockid = "md-new-solution-folder" resource = "solution-folder-new-16.png"/>
		<StockIcon stockid = "md-solution-folder-open" resource = "solution-folder-open-16.png" size="Menu"/>
		<StockIcon stockid = "md-solution-folder-closed" resource = "solution-folder-closed-16.png" size="Menu"/>
		<StockIcon stockid = "md-regular-file" resource = "gnome-fs-regular.png" />
		<StockIcon stockid = "md-empty-category" resource = "empty-category-22.png" />
		<StockIcon stockid = "md-empty-category" resource = "empty-category-16.png" size = "Menu"/>
		<StockIcon stockid = "md-keyword" resource = "keyword-16.png" size = "Menu"/>
		<StockIcon stockid = "md-template" resource = "template-16.png" size = "Menu"/>
		<StockIcon stockid = "md-template-surroundwith" resource = "template-surroundwith-16.png" size = "Menu"/>
		<StockIcon stockid = "md-author-information" resource = "author-information-16.png" size = "Menu"/>
		<StockIcon stockid = "md-author-information" resource = "author-information-24.png" />
		<StockIcon stockid = "md-code-template" resource = "code-template-16.png" size = "Menu"/>
		<StockIcon stockid = "md-code-template" resource = "code-template-24.png" />
		<StockIcon stockid = "md-compiler-options" resource = "compiler-options-16.png" size = "Menu"/>
		<StockIcon stockid = "md-compiler-options" resource = "compiler-options-24.png" />
		<StockIcon stockid = "md-custom-commands" resource = "custom-commands-16.png" size = "Menu"/>
		<StockIcon stockid = "md-custom-commands" resource = "custom-commands-24.png" />
		<StockIcon stockid = "md-formatting" resource = "formatting-16.png" size = "Menu"/>
		<StockIcon stockid = "md-formatting" resource = "formatting-24.png" />
		<StockIcon stockid = "md-markers-rulers" resource = "markers-rulers-16.png" size = "Menu"/>
		<StockIcon stockid = "md-markers-rulers" resource = "markers-rulers-24.png" />
		<StockIcon stockid = "md-syntax-highlighting" resource = "syntax-highlighting-16.png" size = "Menu"/>
		<StockIcon stockid = "md-syntax-highlighting" resource = "syntax-highlighting-24.png" />
		<StockIcon stockid = "md-text-editor-behavior" resource = "text-editor-behavior-16.png" size = "Menu"/>
		<StockIcon stockid = "md-text-editor-behavior" resource = "text-editor-behavior-24.png" />
		<StockIcon stockid = "md-message-log" resource = "view-message-log-16.png" size = "Menu"/>
		<StockIcon stockid = "md-visual-style" resource = "visual-style-16.png" size = "Menu"/>
		<StockIcon stockid = "md-visual-style" resource = "visual-style-24.png" />
		<StockIcon stockid = "md-pin-active" resource = "hicolor_status_16x16_pin-active.png" />
		<StockIcon stockid = "md-pin-down" resource = "hicolor_status_16x16_pin-down.png" />
		<StockIcon stockid = "md-pin-up" resource = "hicolor_status_16x16_pin-up.png" />
		<StockIcon stockid = "md-assembly-project" resource = "assembly-project-16.png" />
	</Extension>

	<Extension path = "/MonoDevelop/Core/MimeTypes">
		<MimeType id="text/x-resource" _description=".NET resource" icon="md-resource-file-icon" isText="true">
			<File pattern="*.resources" />
		</MimeType>
		<MimeType id="application/x-resource" _description=".NET resource" icon="md-resource-file-icon" isText="true">
			<File pattern="*.resx" />
		</MimeType>
		<MimeType id="application/x-addin+xml" _description="Add-in manifest" icon="md-addin-file">
			<File pattern="*.addin.xml" />
			<File pattern="*.addin" />
		</MimeType>
		<MimeType id="application/xml" _description="XML document" icon="md-xml-file-icon" isText="true">
			<File pattern="*.xml" />
		</MimeType>
		<MimeType id="application/config+xml" _description="Configuration File" baseType="application/xml">
			<File pattern="*.config" />
		</MimeType>
		<MimeType id="application/glade+xml" _description="Glade File" baseType="application/xml">
			<File pattern="*.glade" />
		</MimeType>
		<MimeType id="text/x-changelog" _description="ChangeLog document" isText="true">
			<File pattern="ChangeLog|Changelog|CHANGELOG|Changelog"/>
		</MimeType>
		<MimeType id="application/x-executable" _description=".NET program" icon="md-empty-file-icon">
			<File pattern="*.exe" />
			<File pattern="*.dll" />
		</MimeType>
		<MimeType id="application/x-sln" _description="MonoDevelop/MSBuild Solution" icon="md-solution" >
			<File pattern="*.sln" />
		</MimeType>
		<MimeType id="application/x-mds" _description="MonoDevelop 1.0 Solution" icon="md-solution" baseType="application/xml">
			<File pattern="*.mds" />
		</MimeType>
		
		<MimeType id="text/x-patch" _description="diff files" isText="true">
			<File pattern="*.patch" />
			<File pattern="*.diff" />
		</MimeType>
		
		<MimeType id="text/x-makefile" _description="Makefile" isText="true">
			<File pattern="Makefile|Makefile.am|Makefile.in"/>
		</MimeType>
		
		<MimeType id="text/x-lua" _description="lua files" isText="true">
			<File pattern="*.lua" />
		</MimeType>
		
		<MimeType id="text/x-ilasm" _description="il files" isText="true">
			<File pattern="*.il" />
		</MimeType>
		
		<MimeType id="text/x-jay" _description="jay files" isText="true">
			<File pattern="*.jay" />
		</MimeType>
	</Extension>	

	
	<Extension path = "/MonoDevelop/ProjectModel/Gui/ItemOptionPanels">
		<Section id="Common" _label="General">
			<Section id="General" _label="Main Settings">
				<Condition id="ItemType" value="Project">
					<Panel id = "GeneralProjectPanel" _label = "Project" class = "MonoDevelop.Ide.Projects.OptionPanels.GeneralProjectOptions" />
					<Panel id = "BaseDirectoryPanel" _label = "Location of Project Files" class = "MonoDevelop.Ide.Projects.OptionPanels.BaseDirectoryPanel"/>
				</Condition>
				<Condition id="ItemType" value="Solution">
					<Panel id = "GeneralSolutionPanel" _label = "Solution" class = "MonoDevelop.Ide.Projects.OptionPanels.CombineInformationPanel" />
					<Panel id = "BaseDirectoryPanel" _label = "Location of Project Files" class = "MonoDevelop.Ide.Projects.OptionPanels.BaseDirectoryPanel"/>
				</Condition>
				<Condition id="ItemType" value="SolutionFolder">
					<Panel id = "BaseDirectoryPanel" _label = "Location of Project Files" class = "MonoDevelop.Ide.Projects.OptionPanels.BaseDirectoryPanel"/>
				</Condition>
				<Condition id="ItemType" value="Workspace">
					<Panel id = "BaseDirectoryPanel" _label = "Location of Project Files" class = "MonoDevelop.Ide.Projects.OptionPanels.BaseDirectoryPanel"/>
				</Condition>
			</Section>
			<Condition id="ItemType" value="SolutionEntityItem">
				<Section id = "CustomCommands" _label = "Custom Commands" icon="md-custom-commands" fill = "true" class = "MonoDevelop.Ide.Projects.OptionPanels.CustomCommandPanel"/>
			</Condition>
		</Section>
		<Section id="Build" _label="Build">
			<Section id="General" _label="General" icon="md-build-combine">
				<Condition id="ItemType" value="Project">
					<Panel id = "RuntimeOptionsPanel" _label = "Runtime Options" class = "MonoDevelop.Ide.Projects.OptionPanels.RuntimeOptionsPanel"/>
				</Condition>
				<Condition id="ItemType" value="Solution">
					<Panel id = "SolutionGeneral" _label = "Build" class = "MonoDevelop.Ide.Projects.OptionPanels.CombineBuildOptions"/>
				</Condition>
			</Section>
			<Condition id="ItemType" value="Project">
				<Section id = "ProjectConfigurations" _label = "Configurations" fill = "true" class = "MonoDevelop.Ide.Projects.OptionPanels.SolutionItemConfigurationsPanel"/>
				<Section id = "Compiler" _label="Compiler" icon="md-compiler-options" />
				<Section id = "SigningPreferences" _label = "Assembly Signing" class = "MonoDevelop.Ide.Projects.OptionPanels.CommonAssemblySigningPreferencesPanel"/>
				<Section id = "OutputOptionsPanel" _label = "Output" class = "MonoDevelop.Ide.Projects.OptionPanels.OutputOptionsPanel"/>
			</Condition>
			<Condition id="ItemType" value="Solution">
				<Section id = "SolutionConfigurations" _label="Configurations">
					<Panel id = "Configurations" _label = "Configurations" fill = "true" class = "MonoDevelop.Ide.Projects.OptionPanels.SolutionItemConfigurationsPanel"/>
					<Panel id = "EntryConfigurations" _label = "Configuration Mappings" fill = "true" grouping="Tab" class = "MonoDevelop.Ide.Projects.OptionPanels.CombineConfigurationPanel"/>
				</Section>
			</Condition>
		</Section>
		<Section id="Run" _label="Run">
			<Section id="General" _label="General" icon="gtk-execute">
				<Condition id="ItemType" value="Project">
					<Panel id = "RunOptionsPanel" _label = "Run" fill = "true" class = "MonoDevelop.Ide.Projects.OptionPanels.RunOptionsPanel"/>
				</Condition>
			</Section>
			<Condition id="ItemType" value="Solution">
				<Section id = "StartupOptionsPanel" _label = "Startup Project" fill = "true" class = "MonoDevelop.Ide.Projects.OptionPanels.StartupOptionsPanel"/>
			</Condition>
		</Section>
		<Section id="SourceCode" _label="Source Code">
			<Condition id="ItemType" value="DotNetProject">
				<Section id="DotNetNamingPolicies" _label=".NET Naming Policies">
					<Panel id = "NamespaceSynchronisationPanel" class = "MonoDevelop.Ide.Projects.OptionPanels.NamespaceSynchronisationPanel" />
				</Section>
			</Condition>
			<Condition id="ItemType" value="Solution">
				<Section id="CodeFormattingPolicies" _label="Code Formatting" icon="md-formatting" fill = "true" class="MonoDevelop.Ide.Projects.OptionPanels.CodeFormattingPanel" />
			</Condition>
			<Condition id="ItemType" value="SolutionItem">
				<Section id="CodeFormattingPolicies" _label="Code Formatting" icon="md-formatting" fill = "true" class="MonoDevelop.Ide.Projects.OptionPanels.CodeFormattingPanel" />
			</Condition>
		</Section>
	</Extension>
	
	<Extension path = "/MonoDevelop/ProjectModel/Gui/DefaultPolicyPanels">
		<Section id="Common" _label="General">
		</Section>
		<Section id="Build" _label="Build">
		</Section>
		<Section id="Run" _label="Run">
		</Section>
		<Section id="SourceCode" _label="Source Code">
			<Section id="DefaultDotNetNamingPolicies" _label=".NET Naming Policies">
				<Panel id = "NamespaceSynchronisationPanel" class = "MonoDevelop.Ide.Projects.OptionPanels.NamespaceSynchronisationPanel" />
			</Section>
			<Section id="CodeFormattingPolicies" _label="Code Formatting" icon="md-formatting" fill = "true" class="MonoDevelop.Ide.Projects.OptionPanels.CodeFormattingPanel" />
		</Section>
	</Extension>

	<Extension path = "/MonoDevelop/Ide/DisplayBindings">
		<DisplayBinding id    = "DefaultDisplayBinding"
		                class = "MonoDevelop.Ide.Gui.DefaultDisplayBinding"/>
	</Extension>

	<Extension path = "/MonoDevelop/Ide/StartupHandlers">
		<Class class = "MonoDevelop.Ide.Gui.AddinUpdateHandler"/>
		<Class class = "MonoDevelop.Ide.Gui.Dialogs.TipOfTheDayStartup"/>
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/Commands">

		<!-- WARNING WARNING WARNING WARNING WARNING WARNING
			Please don't change the default command shorcuts.
			If a shortcut has to be changed, please create a new binding
			scheme for the next MD version and do the change there.
		-->
	
		<!-- Hidden commands -->
		<!-- The commands in the hidden category are not shown in the key bindings configuration panel -->
		<Category id="Hidden" _name="Hidden">
			<!-- The EditCommands.DeleteKey command can be used to easily bind the Delete key to a command handler -->
			<!-- Notice that the EditCommands.Delete command is not bound to the Delete key since it is not always -->
			<!-- convenient to fire the Delete command when pressing Delete (for example, while editing the name of -->
			<!-- a file in the solution pad. -->
			<Command id = "MonoDevelop.Ide.Commands.EditCommands.DeleteKey"
					_label = "_Delete"
					defaultHandler = "MonoDevelop.Ide.Commands.DefaultDeleteKeyHandler"
					shortcut = "Delete"/>
		</Category>
		
		<!-- EditCommands -->
		<Category _name = "Edit" id="Edit">
				
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.Copy"
				_label = "_Copy"
				icon = "gtk-copy" 
				_description = "Copy the selection" 
				defaultHandler = "MonoDevelop.Ide.Commands.DefaultCopyHandler"
				shortcut = "Control|C"
				macShortcut = "Meta|C" />
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.Cut"
				_label = "Cu_t"
				icon = "gtk-cut" 
				_description = "Cut the selection" 
				defaultHandler = "MonoDevelop.Ide.Commands.DefaultCutHandler"
				shortcut = "Control|X"
				macShortcut = "Meta|X" />
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.Paste"
				_label = "_Paste" 
				icon = "gtk-paste"
				_description = "Paste the clipboard" 
				defaultHandler = "MonoDevelop.Ide.Commands.DefaultPasteHandler"
				shortcut = "Control|V"
				macShortcut = "Meta|V" />
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.Delete"
				_label = "_Delete" 
				_description = "Delete the selection"
				defaultHandler = "MonoDevelop.Ide.Commands.DefaultDeleteHandler"
				icon  = "gtk-delete" />
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.Rename"
				_label = "Re_name"
				_description = "Rename the selection"
				shortcut = "F2"
				macShortcut = "Meta|R"/>
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.Undo"
				_label = "_Undo" 
				icon = "gtk-undo" 
				_description = "Undo last action" 
				shortcut = "Control|Z"
				macShortcut = "Meta|Z" />
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.Redo" 
				_label = "_Redo" 
				icon = "gtk-redo" 
				_description = "Redo last undone action" 
				shortcut = "Control|Shift|Z"
				macShortcut = "Meta|Shift|Z" />
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.SelectAll" 
				_label = "Select _All" 
				_description = "Select all text" 
				shortcut = "Control|A"
				macShortcut = "Meta|A"
				defaultHandler = "MonoDevelop.Ide.Commands.DefaultSelectAllHandler"
				icon = "md-select-all" />
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.ToggleCodeComment"
				shortcut = "Control|Alt|C"
				_description = "Comment/Uncomment selected lines of code" 
				_label = "_Toggle Line Comment(s)"
				icon = "md-comment" />
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.IndentSelection"
				shortcut = "Control|Alt|End"
				_description = "Indent selected lines of code" 
				_label = "_Indent Selection"
				macShortcut = "Meta|]"
				icon = "gtk-indent" />
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.UnIndentSelection"
				shortcut = "Control|Alt|Home"
				_description = "Unindent selected lines of code" 
				macShortcut = "Meta|["
				_label = "_Unindent Selection"
				icon = "gtk-unindent" />
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.UppercaseSelection"
				_description = "Convert the selected text to uppercase" 
				_label = "_Uppercase Selection" />
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.LowercaseSelection"
				_description = "Convert the selected text to lowercase" 
				_label = "_Lowercase Selection" />
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.RemoveTrailingWhiteSpaces"
				description = "Remove trailing white spaces" 
				_label = "_Remove trailing white spaces" />
 		<Command id = "MonoDevelop.Ide.Commands.EditCommands.JoinWithNextLine"
				shortcut = "Control|Shift|J"
				_description = "Join the current line with the next line" 
				_label = "_Join Lines" />
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.WordCount"
				_label = "_Word Count..." 
				description = "Count words in a text file"/>
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.MonodevelopPreferences"
				defaultHandler = "MonoDevelop.Ide.Commands.MonodevelopPreferencesHandler"
				_label = "Pr_eferences"
				icon = "gtk-preferences"
				macShortcut = "Meta|,"
				_description = "Show MonoDevelop preferences window" />
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.DefaultPolicies"
				defaultHandler = "MonoDevelop.Ide.Commands.DefaultPoliciesHandler"
				_label = "Default Po_licies"
				_description = "Edit the default policies that are applied to new projects" />
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.InsertStandardHeader"
				_label = "_Insert Standard Header" 
				defaultHandler = "MonoDevelop.Ide.Commands.InsertStandardHeaderHandler"
				_description = "Add the user defined header to the top of the file"/>
		
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.ToggleFolding"
				_label = "_Toggle Fold" 
				shortcut = "Control|Shift|M"
				macShortcut = "Control|Meta|Left"
				_description = "Toggles the folding at caret position."/>
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.ToggleAllFoldings"
				_label = "Toggle _All Folds" 
				shortcut = "Control|Shift|A"
				_description = "Toggles all the foldings in the document."/>
		<Command id = "MonoDevelop.Ide.Commands.EditCommands.FoldDefinitions"
				_label = "Show _Definitions Only" 
				_description = "Folds all method and property bodies."/>
				
		<Command id = "MonoDevelop.Ide.CodeFormatting.CodeFormattingCommands.FormatBuffer"
				defaultHandler = "MonoDevelop.Ide.CodeFormatting.FormatBufferHandler"
				_label = "_Format Document" />
		</Category>

		<!-- ProjectCommands -->
		<Category _name = "Project" id = "Project">
				
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.AddNewProject"
				_label = "_Add New Project..."
				_description = "Add a new project to the selected solution"
				icon  = "md-new-project" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.AddNewWorkspace"
				_label = "_Add New Workspace..."
				_description = "Add a new child workspace to the selected workspace" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.AddNewSolution"
				_label = "_Add New Solution..."
				_description = "Add a new child solution to the selected workspace"
				icon  = "md-new-solution" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.AddSolutionFolder"
				_label = "Add Solution _Folder" 
				_description = "Add a new solution folder to the selected solution"
				icon  = "md-new-solution-folder" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.AddProject"
				_description = "Add a project to the selected solution"
				_label = "Add Existing _Project..." />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.AddItem"
				_description = "Add an existing item to the selected workspace"
				_label = "Add Existing _Item..." />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.RemoveFromProject"
				_label = "_Remove From Project"
				_description = "Remove an item from the project"
				icon  = "gtk-delete" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.Options"
				defaultHandler = "MonoDevelop.Ide.Commands.SolutionItemOptionsHandler"
				_label = "_Options" 
				_description = "Show options window" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.SolutionOptions"
				defaultHandler = "MonoDevelop.Ide.Commands.SolutionOptionsHandler"
				_label = "_Solution Options" 
				_description = "Show solution options window" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.ProjectOptions"
				defaultHandler = "MonoDevelop.Ide.Commands.ProjectOptionsHandler"
				_label = "Project _Options" 
				_description = "Show project options window" />
				
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.AddReference"
				_description = "Add and remove project references"
				_label = "_Edit References..."
				defaultHandler = "MonoDevelop.Ide.Commands.EditReferencesHandler" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.AddNewFiles"
				_label = "New _File..."
				_description = "Create a new file"
				icon  = "gtk-new" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.AddFiles"
				_description = "Add existing files to the project"
				macShortcut = "Alt|Meta|A"
				_label = "_Add Files..." />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.NewFolder"
				_label = "New _Folder" 
				_description = "Create a new folder"
				icon  = "md-new-folder-icon" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.IncludeToProject"
				_description = "Add existing file to the project"
				_label = "_Include To Project" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.BuildSolution"
				defaultHandler = "MonoDevelop.Ide.Commands.BuildSolutionHandler"
				_label = "_Build All"
				shortcut = "F8"
				macShortcut = "Meta|B"
				_description = "Build all projects of all solutions"
				icon  = "md-build-combine" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.Build"
				defaultHandler = "MonoDevelop.Ide.Commands.BuildHandler"
				_label = "Buil_d" 
				shortcut = "F7"
				macShortcut = "Meta|K"
				_description = "Build the current project"
				icon  = "md-build-current-selected-project" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.RebuildSolution"
				defaultHandler = "MonoDevelop.Ide.Commands.RebuildSolutionHandler"
				shortcut = "Control|F8"
				macShortcut="Meta|Control|B"
				_description = "Rebuild all projects of all solutions"
				_label = "_Rebuild All" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.Rebuild"
				defaultHandler = "MonoDevelop.Ide.Commands.RebuildHandler"
				shortcut = "Control|F7"
				macShortcut="Meta|Control|K"
				_description = "Rebuild the current project"
				_label = "R_ebuild" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.SetAsStartupProject"
				_label = "_Set As Startup Project" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.Run"
				defaultHandler = "MonoDevelop.Ide.Commands.RunHandler"
				icon = "gtk-execute"
				shortcut = "Control|F5"
				macShortcut = "Alt|Meta|Return"
				_description = "Run"
				_label = "_Run" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.RunWithList"
				defaultHandler = "MonoDevelop.Ide.Commands.RunWithHandler"
				type="array"
				_description = "Run With List"
				_label = "Run With List" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.RunEntry"
				defaultHandler = "MonoDevelop.Ide.Commands.RunEntryHandler"
				icon = "gtk-execute"
				_description = "Run current project"
				_label = "_Run Item" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.RunEntryWithList"
				defaultHandler = "MonoDevelop.Ide.Commands.RunEntryWithHandler"
				type="array"
				_description = "Run With List"
				_label = "Run With List" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.Clean"
				defaultHandler = "MonoDevelop.Ide.Commands.CleanHandler"
				_description = "Clean the selected project or solution"
				macShortcut = "Shift|Meta|K"
				_label = "C_lean" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.CleanSolution"
				defaultHandler = "MonoDevelop.Ide.Commands.CleanSolutionHandler"
				_description = "Clean all projects of all solutions"
				_label = "_Clean All" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.LocalCopyReference"
				type="check"
				_description = "Copy the assembly to the output directory when building the project"
				_label = "_Local Copy" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.Stop"
				defaultHandler = "MonoDevelop.Ide.Commands.StopHandler"
				icon = "gtk-stop"
				macShortcut = "Shift|Meta|Return"
				shortcut = "Shift|F5"
				_description = "Stop current build or application execution"
				_label = "_Stop" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.ConfigurationSelector"
				type = "custom"
				widget = "MonoDevelop.Ide.Gui.ConfigurationComboBox"
				_label = "Active Configuration" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.CustomCommandList"
				defaultHandler = "MonoDevelop.Ide.Commands.CustomCommandListHandler"
				type="array"
				_label = "Custom command list" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.Reload"
				_description = "Reload selected project or solution"
				_label = "Reload" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.ExportProject"
				defaultHandler = "MonoDevelop.Ide.Commands.ExportProjectHandler"
				_description = "Convert selected project or solution to another format"
				_label = "_Export..." />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.SelectActiveConfiguration"
				type = "radio|array"
				defaultHandler = "MonoDevelop.Ide.Commands.SelectActiveConfigurationHandler"
				_label = "Active Configuration" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.SelectActiveRuntime"
				type = "radio|array"
				defaultHandler="MonoDevelop.Ide.Commands.SelectActiveRuntimeHandler"
				_label = "Active Runtime" />
		</Category>


		<!-- FileCommands -->
		<Category _name = "File" id = "File">
		
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.OpenFile"
				defaultHandler = "MonoDevelop.Ide.Commands.OpenFileHandler"
				_label = "_Open..." 
				shortcut = "Control|O"
				macShortcut = "Meta|O"
				_description = "Open file or solution"
				icon  = "gtk-open" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.NewFile" 
				defaultHandler = "MonoDevelop.Ide.Commands.NewFileHandler"
				_label = "_File..."
				shortcut = "Control|N"
				macShortcut = "Meta|N"
				_description = "Create a new file"
				icon = "gtk-new" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.Save" 
				icon = "gtk-save" 
				shortcut = "Control|S"
				macShortcut = "Meta|S"
				_description = "Save the active document"
				_label = "_Save" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.SaveAll"
				defaultHandler = "MonoDevelop.Ide.Commands.SaveAllHandler"
				icon = "md-save-all-icon" 
				_description = "Save all open files"
				_label = "Save A_ll" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.NewProject" 
				defaultHandler = "MonoDevelop.Ide.Commands.NewProjectHandler"
				_label = "_Solution..." 
				icon = "md-new-solution" 
				_description = "Create a new solution" 
				macShortcut = "Meta|Shift|N"
				shortcut = "Control|Shift|N"  />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.NewWorkspace" 
				defaultHandler = "MonoDevelop.Ide.Commands.NewWorkspaceHandler"
				_label = "_Workspace..."
				_description = "Create a new workspace"/>
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.CloseFile"
				_label = "_Close File" 
				_description = "Close active file"
				icon = "gtk-close"
				shortcut = "Control|W"
				macShortcut = "Meta|W" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.CloseAllFiles"
				defaultHandler = "MonoDevelop.Ide.Commands.CloseAllFilesHandler"
				_label = "Close _All"
				_description = "Close All Files"
				icon = "gtk-close"
				shortcut = "Control|Shift|W"
				macShortcut = "Meta|Shift|W" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.CloseWorkspace"
				defaultHandler = "MonoDevelop.Ide.Commands.CloseWorkspaceHandler"
				_label = "C_lose Workspace" 
				_description = "Close all solutions open in the current workspace"
				icon = "md-close-combine-icon" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.CloseWorkspaceItem"
				defaultHandler = "MonoDevelop.Ide.Commands.CloseWorkspaceHandler"
				_label = "C_lose" 
				_description = "Close the active solution or workspace item"
				icon = "md-close-combine-icon" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.ReloadFile"
				_label = "_Revert" 
				_description = "Revert to a saved version of the file"
				macShortcut = "Meta|U"
				icon = "gtk-revert-to-saved" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.SaveAs"
				_label = "Save _As..."
				icon = "gtk-save-as"
				shortcut = "Control|Shift|S" 
				macShortcut = "Meta|Shift|S"
				_description = "Save the current file with a different name" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.PrintDocument"
				defaultHandler = "MonoDevelop.Ide.Commands.PrintHandler"
				_label = "_Print..." 
				_description = "Print current document" 
				icon  = "gtk-print"
				shortcut = "Control|P"
				macShortcut = "Meta|P" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.PrintPreviewDocument"
				defaultHandler = "MonoDevelop.Ide.Commands.PrintPreviewHandler"
				_label = "Print Previe_w" 
				_description = "Show print preview" 
				icon  = "gtk-print-preview"
				shortcut = "Shift|Control|P" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.PrintPageSetup"
				defaultHandler = "MonoDevelop.Ide.Commands.PrintPageSetupHandler"
				_label = "Page Set_up" 
				_description = "Show page setup" 
				icon  = "gtk-page-setup" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.RecentFileList"
				defaultHandler = "MonoDevelop.Ide.Commands.RecentFileListHandler"
				type="array"
				_label = "Recent _Files" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.ClearRecentFiles" 
				defaultHandler = "MonoDevelop.Ide.Commands.ClearRecentFilesHandler"
				_label = "_Clear" 
				icon  = "gtk-clear"
				_description = "Clear recent files" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.RecentProjectList"
				defaultHandler = "MonoDevelop.Ide.Commands.RecentProjectListHandler"
				type="array"
				_label = "Recent Pro_jects" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.ClearRecentProjects"
				defaultHandler = "MonoDevelop.Ide.Commands.ClearRecentProjectsHandler"
				_label = "_Clear" 
				icon  = "gtk-clear"
				_description = "Clear recent solutions" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.Exit"
				defaultHandler = "MonoDevelop.Ide.Commands.ExitHandler"
				_label = "_Quit" 
				icon = "gtk-quit" 
				_description = "Quit MonoDevelop"
				macShortcut = "Meta|Q"
				shortcut = "Control|Q" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.OpenInTerminal"
				_label = "_Open in Terminal" 
				_description = "Opens a terminal in this folder"/>
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.OpenFolder"
				_label = "_Open Folder" 
				_description = "Opens the folder in a file manager."/>
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.OpenContainingFolder"
				_label = "O_pen Containing Folder" 
				_description = "Opens the folder that contains this file."/>
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.SetBuildAction"
				type="radio|array"
				_label = "Build action" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.ShowProperties"
				icon="gtk-properties"
				_label = "_Properties" />
		<Command id = "MonoDevelop.Ide.Commands.FileCommands.CopyToOutputDirectory"
		         type = "check"
		        _label = "_Copy to Output Directory" />
		<Command id = "MonoDevelop.Ide.Commands.ProjectCommands.SpecificAssemblyVersion"
		         type = "check"
		        _label = "Require Specific Version" />
		<Command id = "MonoDevelop.Ide.Commands.FileTabCommands.CloseAllButThis"
		         defaultHandler = "MonoDevelop.Ide.Commands.CloseAllButThisHandler"
				_label = "C_lose all but this"
				_description = "Closes all opened files except for the active file"/>
		<Command id = "MonoDevelop.Ide.Commands.FileTabCommands.CopyPathName"
		         defaultHandler = "MonoDevelop.Ide.Commands.CopyPathNameHandler"
				_description = "Copy the file path to the clipboard"
				_label = "C_opy file path/name"/>
		<Command id = "MonoDevelop.Ide.Commands.FileTabCommands.ToggleMaximize"
		         defaultHandler = "MonoDevelop.Ide.Commands.ToggleMaximizeHandler"
				_label = "S_witch maximize/normal view"/>
		</Category>
				
		<!-- ViewCommands -->
		<Category _name = "View" id = "View">
		
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.ViewList"
				defaultHandler = "MonoDevelop.Ide.Commands.ViewListHandler"
				type="array"
				_label = "View List" />
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.LayoutList"
				defaultHandler = "MonoDevelop.Ide.Commands.LayoutListHandler"
				type="radio|array"
				_label = "Layout List" />
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.NewLayout"
				defaultHandler = "MonoDevelop.Ide.Commands.NewLayoutHandler"
				_label = "_New Layout..."
				icon = "gtk-add"
				_description = "Create new layout" />
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.DeleteCurrentLayout"
				defaultHandler = "MonoDevelop.Ide.Commands.DeleteCurrentLayoutHandler"
				_label = "_Delete Current Layout"
				icon = "gtk-remove"
				_description = "Delete current layout" />
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.LayoutSelector"
				type = "custom"
				widget = "MonoDevelop.Ide.Gui.LayoutComboBox"
				_label = "Active Layout"
				_description = "Switch active layout" />
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.FullScreen"
				defaultHandler = "MonoDevelop.Ide.Commands.FullScreenHandler"
				_label = "_Full Screen" 
				icon = "gtk-fullscreen" 
				_description = "Set full screen mode" />
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.Open"
				_description = "Open selected document"
				_label = "_Open" />
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.TreeDisplayOptionList"
				type = "array|check"
				_label = "Display Options List" />
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.ResetTreeDisplayOptions"
				_label = "Reset Options" />
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.RefreshTree"
				_description = "Refresh the tree"
				_label = "Refresh" />
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.CollapseAllTreeNodes"
				_label = "Collapse All Nodes" />
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.OpenWithList"
				type = "array"
				_label = "List of programs to open with" />
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.ShowNext"
				defaultHandler = "MonoDevelop.Ide.Commands.ShowNextHandler"
				_label = "Show Next" 
				_description = "Move cursor to next error or search match"
				macShortcut = "Meta|="
				shortcut = "F4" />
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.ShowPrevious"
				defaultHandler = "MonoDevelop.Ide.Commands.ShowPreviousHandler"
				_label = "Show Previous" 
				_description = "Move cursor to previous error or search match"
				macShortcut = "Meta|+"
				shortcut = "Shift|F4" />
		
		<Command id = "MonoDevelop.Ide.Commands.NavigationCommands.NavigateBack"
				_label = "Navigate _Back"
				icon = "md-navigate-back"
				defaultHandler = "MonoDevelop.Ide.Commands.NavigateBack"
				shortcut = "Alt|Left"
				macShortcut= "Meta|Alt|Left"
				_description = "Move to previous point in code navigation history"/>
		<Command id = "MonoDevelop.Ide.Commands.NavigationCommands.NavigateForward"
				_label = "Navigate _Forward"
				icon = "md-navigate-forward"
				defaultHandler = "MonoDevelop.Ide.Commands.NavigateForward"
				shortcut = "Alt|Right"
				macShortcut= "Meta|Alt|Right"
				_description = "Move to next point in code navigation history"/>
		<Command id = "MonoDevelop.Ide.Commands.NavigationCommands.NavigateHistory"
				type="radio|array" 
				_label = "Navigate _History"
				defaultHandler = "MonoDevelop.Ide.Commands.NavigateHistory"
				_description = "Select a point from the navigation history"/>
		<Command id = "MonoDevelop.Ide.Commands.NavigationCommands.ClearNavigationHistory"
				_label = "_Clear Navigation History"
				defaultHandler = "MonoDevelop.Ide.Commands.ClearNavigationHistory"
				_description = "Clear the navigation history"/>

		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.ZoomIn"
				defaultHandler = "MonoDevelop.Ide.Commands.ZoomIn"
				_label = "_Zoom In"
				icon = "gtk-zoom-in" 
				shortcut = "Control|+"
				_description = "Zooms view in" />
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.ZoomOut"
				defaultHandler = "MonoDevelop.Ide.Commands.ZoomOut"
				_label = "Zoom _Out"
				icon = "gtk-zoom-out" 
				shortcut = "Control|-"
				_description = "Zooms view out" />
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.ZoomReset"
				defaultHandler = "MonoDevelop.Ide.Commands.ZoomReset"
				_label = "_Normal Size"
				icon = "gtk-zoom-100" 
				shortcut = "Control|0"
				_description = "Resets zoom to default" />
		<Command id = "MonoDevelop.Ide.Commands.ViewCommands.FocusCurrentDocument"
				defaultHandler = "MonoDevelop.Ide.Commands.FocusCurrentDocumentHandler"
				_label = "_Focus Document"
				shortcut = "Alt|C"
				_description = "Focus current document" />
		</Category>
		
		<!-- ToolCommands -->
		<Category _name = "Tools" id = "Tools">
		
		<Command id = "MonoDevelop.Ide.Commands.ToolCommands.AddinManager"
				defaultHandler = "MonoDevelop.Ide.Commands.AddinManagerHandler"
				icon = "md-software-update"
				_description = "Manage add-ins"
				_label = "_Add-in Manager" />
		<Command id = "MonoDevelop.Ide.Commands.ToolCommands.ToolList"
				defaultHandler = "MonoDevelop.Ide.Commands.ToolListHandler"
				type="array"
				_label = "Tool List" />
				
		<Command id = "MonoDevelop.Ide.Commands.ToolCommands.InstrumentationViewer"
				defaultHandler = "MonoDevelop.Ide.Commands.InstrumentationViewerHandler"
				_label = "Instrumentation Monitor" />
				
		</Category>
		
		
		<!-- WindowCommands -->
		<Category _name = "Window" id = "Window">
		
		<Command id  = "MonoDevelop.Ide.Commands.WindowCommands.NextWindow"
				defaultHandler = "MonoDevelop.Ide.Commands.NextWindowHandler"
				_label = "_Next Window"
				icon = "gtk-go-forward"
				_description = "Show next window" 
				shortcut = "Control|Page_Down"
				macShortcut = "Meta|}" />
		<Command id = "MonoDevelop.Ide.Commands.WindowCommands.PrevWindow"
				defaultHandler = "MonoDevelop.Ide.Commands.PrevWindowHandler"
				_label = "_Previous Window"
				icon = "gtk-go-back"
				_description = "Show previous window"
				shortcut = "Control|Page_Up"
				macShortcut = "Meta|{" />
		<Command id = "MonoDevelop.Ide.Commands.WindowCommands.OpenWindowList"
				defaultHandler = "MonoDevelop.Ide.Commands.OpenWindowListHandler"
				type="radio|array"
				_label = "Window List" />

		<Command id = "MonoDevelop.Ide.Commands.WindowCommands.SplitWindowVertically"
				defaultHandler = "MonoDevelop.Ide.Commands.SplitWindowVertically"
				_label = "Split _Vertically" />
		<Command id = "MonoDevelop.Ide.Commands.WindowCommands.SplitWindowHorizontally"
				defaultHandler = "MonoDevelop.Ide.Commands.SplitWindowHorizontally"
				_label = "Split _Horizontally" />
		<Command id = "MonoDevelop.Ide.Commands.WindowCommands.UnsplitWindow"
				defaultHandler = "MonoDevelop.Ide.Commands.UnsplitWindow"
				_label = "_Unsplit" />
		<Command id = "MonoDevelop.Ide.Commands.WindowCommands.SwitchSplitWindow"
				defaultHandler = "MonoDevelop.Ide.Commands.SwitchSplitWindow"
				shortcut = "Control|M"
				_label = "_Switch Between Splits" />
		<Command id = "MonoDevelop.Ide.Commands.WindowCommands.SwitchNextDocument"
				defaultHandler = "MonoDevelop.Ide.Commands.SwitchNextDocument"
				shortcut = "Control|Tab"
				macShortcut = "Control|Tab"
				_label = "Switch to next document"
				_description = "Switch to next document" />
		<Command id = "MonoDevelop.Ide.Commands.WindowCommands.SwitchPreviousDocument"
				defaultHandler = "MonoDevelop.Ide.Commands.SwitchPreviousDocument"
				shortcut = "Control|Shift|Tab"
				macShortcut = "Control|Shift|Tab"
				_label = "Switch to previous document"
				_description = "Switch to previous document" />
		</Category>
				
		<!-- HelpCommands -->
		<Category _name = "Help" id = "Help">
		
		<Command id = "MonoDevelop.Ide.Commands.HelpCommands.Help"
				_label = "Help" 
				icon = "gtk-help"
				_description = "Show help"
				defaultHandler = "MonoDevelop.Ide.Commands.HelpHandler"
				shortcut = "F1"
				macShortcut = "Meta|Alt|?" />
		<Command id = "MonoDevelop.Ide.Commands.HelpCommands.TipOfTheDay"
				defaultHandler = "MonoDevelop.Ide.Commands.TipOfTheDayHandler"
				_label = "_Tip of the Day" 
				icon = "gtk-dialog-info" 
				_description = "Show tip of the day" />
		<Command id = "MonoDevelop.Ide.Commands.HelpCommands.About"
				defaultHandler = "MonoDevelop.Ide.Commands.AboutHandler"
				_label = "_About" 
				icon = "gtk-about" 
				_description = "Show about dialog" />
		</Category>
		
		<!-- SearchCommands -->
		<Category _name = "Search" id = "Search">
		
		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.Find"
				_label = "_Find..." 
				icon = "gtk-find" 
				_description = "Search for text" 
				shortcut = "Control|F"
				macShortcut = "Meta|F" />
		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.Replace"
				_label = "_Replace..." 
				icon = "gtk-find-and-replace" 
				_description = "Search for and replace text" 
				shortcut = "Control|H" />

		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.FindNext"
				_label = "Find _Next" 
				icon = "md-find-next-icon" 
				_description = "Search forwards for the same text" 
				shortcut = "Control|G"
				macShortcut = "Meta|G" />
		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.FindPrevious"
				_label = "Find _Previous" 
				_description = "Search backwards for the same text" 
				shortcut = "Control|Shift|G"
				macShortcut = "Meta|Shift|G" />

		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.EmacsFindNext"
				_label = "Find _Next (Emacs behavior)" 
				icon = "md-find-next-icon" 
				_description = "Search forwards for the same text with emacs behavior"/>
		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.EmacsFindPrevious"
				_label = "Find _Previous (Emacs behavior)" 
				_description = "Search backwards for the same text with emacs behavior"/>

		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.FindNextSelection"
				_label = "Find Next Selection" 
				_description = "Search forwards for the selected text" 
				shortcut = "Control|F3"
				macShortcut = "Meta|E" />
		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.FindPreviousSelection"
				_label = "Find _Previous Selection" 
				_description = "Search backwards for the selected text" 
				shortcut = "Shift|Control|F3" />

		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.FindInFiles"
				defaultHandler = "MonoDevelop.Ide.FindInFiles.FindInFilesHandler"
				_label = "F_ind in Files..." 
				icon = "md-find-in-files" 
				shortcut = "Control|Shift|F"
				macShortcut = "Meta|Shift|F"
				_description = "Search for text in all files of a directory" />
		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.ReplaceInFiles"
				defaultHandler = "MonoDevelop.Ide.FindInFiles.ReplaceInFilesHandler"
				_label = "R_eplace in Files..." 
				icon = "md-replace-in-files" 
				shortcut = "Control|Shift|H"
				_description = "Search for and replace text in all files of a directory" />
		
		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.GotoType"
		         defaultHandler = "MonoDevelop.Ide.NavigateToDialog.GotoTypeHandler"
		         _label = "Go to Type..."
				_description = "Jump to the declaration of type in the current workspace"
		         shortcut = "Control|Shift|T"
		         macShortcut = "Meta|Shift|T" />
		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.GotoFile"
				defaultHandler = "MonoDevelop.Ide.NavigateToDialog.GotoFileHandler"
				_label = "Go to File..." 
				shortcut = "Alt|Shift|O"
				macShortcut = "Meta|Shift|D"
				_description = "Jump to a file in the current workspace"
				icon  = "gtk-open" />
		
		<Command id = "MonoDevelop.Ide.NavigateToDialog.Commands.NavigateTo"
				defaultHandler = "MonoDevelop.Ide.NavigateToDialog.NavigateToHandler"
				_label = "Navigate To..." 
				_description = "Jump to a item in the current workspace"
				shortcut = "Control|,"
				macShortcut = "Meta|."
				icon  = "gtk-open" />
		
		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.ToggleBookmark"
				icon = "md-toggle-bookmark"
				shortcut = "Control|F2"
				_description = "Toggle bookmark"
				_label = "_Toggle Bookmark" />
		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.PrevBookmark"
				icon = "md-goto-prevbookmark"
				shortcut = "Shift|F2"
				_description = "Go to previous bookmark"
				_label = "Pre_vious Bookmark" />
		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.NextBookmark"
				icon = "md-goto-nextbookmark"
				shortcut = "F2"
				_description = "Go to next bookmark"
				_label = "Ne_xt Bookmark" />
		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.ClearBookmarks"
				icon = "md-clear-all-bookmarks"
				_description = "Clear bookmarks"
				_label = "_Clear Bookmarks" />
		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.GotoLineNumber"
				_label = "_Go to Line..." 
				_description = "Go to a specific line"
				shortcut = "Control|I"
				macShortcut = "Meta|L"
				icon = "gtk-jump-to" />
		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.UseSelectionForFind"
				_label = "Use Selection for Find" 
				_description = "Uses the current selection as find string"/>
		<Command id = "MonoDevelop.Ide.Commands.SearchCommands.UseSelectionForReplace"
				_label = "Use Selection for Replace" 
				_description = "Uses the current selection as replace string"/>
		</Category>
				
	
				
		<!-- TextEditorCommands -->
		<Category _name = "Text Editor" id = "TextEditor">
		
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.ShowCompletionWindow"
				_label = "Show Completion Window" 
				macShortcut="Control|space"
				shortcut = "Control|space" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.ToggleCompletionSuggestionMode"
				defaultHandler = "MonoDevelop.Ide.Commands.ToggleCompletionSuggestionModeHandler"
				_label = "Toggle Completion Suggestion Mode" 
				macShortcut="Alt|Shift|space"
				shortcut = "Alt|Shift|space" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.ShowCodeTemplateWindow"
				_label = "I_nsert Template..." 
				shortcut = "Control|t" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.LineEnd"
				_label = "Go to end of line" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.LineStart"
				_label = "Go to beginning of line" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.DeleteLeftChar"
				_label = "Delete left character" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.DeleteRightChar"
				_label = "Delete right character" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.CharLeft"
				_label = "Go left one character" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.CharRight"
				_label = "Go right one character" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.LineUp"
				_label = "Go to previous line" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.LineDown"
				_label = "Go to next line" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.DocumentStart"
				_label = "Go to beginning of document" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.DocumentEnd"
				_label = "Go to end of document" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.PageUp"
				_label = "Go up one page" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.PageDown"
				_label = "Go down one page" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.ScrollLineUp"
				_label = "Scroll line up"
				shortcut = "Control|Up" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.ScrollLineDown"
				_label = "Scroll line down"
				shortcut = "Control|Down" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.ScrollPageUp"
				_label = "Scroll page up"
				macShortcut = "Page_Up" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.ScrollPageDown"
				_label = "Scroll page down"
				macShortcut = "Page_Down" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.DeleteLine"
				_label = "Delete entire line" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.DeleteToLineEnd"
				_label = "Delete to end of line"
				_description="Deletes to end of line, or if at end, deletes line ending"
				shortcut="Control|K"
				macShortcut = "Control|K" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.MoveBlockUp"
				_label = "Move the line or highlighted selection up"
				shortcut="Alt|Up" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.MoveBlockDown"
				_label = "Move the line or highlighted selection down"
				shortcut="Alt|Down" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.ShowParameterCompletionWindow"
				_label = "Show Parameter List"
				macShortcut = "Control|Shift|space"
				shortcut = "Control|Shift|space" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.GotoMatchingBrace"
				_label = "Go to Matching _Brace" 
				description = "Go to Matching Brace" 
				shortcut = "Control|B" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMoveLeft"
				_label = "Expand selection to the left" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMoveRight"
				_label = "Expand selection to the right" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.MovePrevWord"
				_label = "Go to previous word" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.MoveNextWord"
				_label = "Go to next word" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMovePrevWord"
				_label = "Expand selection to previous word" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMoveNextWord"
				_label = "Expand selection to next word" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.MovePrevSubword"
				_label = "Go to previous subword" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.MoveNextSubword"
				_label = "Go to next subword" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMovePrevSubword"
				_label = "Expand selection to previous subword" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMoveNextSubword"
				_label = "Expand selection to next subword" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMoveUp"
				_label = "Expand selection to previous line" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMoveDown"
				_label = "Expand selection to next line" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMoveHome"
				_label = "Expand selection to line start" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMoveEnd"
				_label = "Expand selection to line end" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMoveToDocumentStart"
				_label = "Expand selection to document start" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionMoveToDocumentEnd"
				_label = "Expand selection to document end" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SwitchCaretMode"
				_label = "Switch caret mode"
				description = "Switch between insert and overwrite caret modes"/>
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.InsertTab"
				_label = "Insert tab" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.RemoveTab"
				_label = "Remove tab" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.InsertNewLine"
				_label = "Insert new line" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.InsertNewLinePreserveCaretPosition"
				_label = "Insert line break after the caret"
				macShortcut = "Control|O" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.InsertNewLineAtEnd"
				_label = "Move caret to EOL and insert new line" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.CompleteStatement"
				_label = "Completes the current statement"
				shortcut = "Control|Shift|Return" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.DeletePrevWord"
				_label = "Delete previous word" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.DeleteNextWord"
				_label = "Delete next word" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.DeletePrevSubword"
				_label = "Delete previous subword" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.DeleteNextSubword"
				_label = "Delete next subword" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionPageDownAction"
				_label = "Expand selection to page down" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.SelectionPageUpAction"
				_label = "Expand selection to page up" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.TransposeCharacters"
				_label = "Transpose characters"
				_description = "Swaps the characters on either side of the caret"
				macShortcut="Control|T" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.RecenterEditor"
				_label = "Recenter editor"
				_description = "Scrolls the editor so that the caret is centered"
				macShortcut = "Control|L" />
		<Command id = "MonoDevelop.Ide.Commands.TextEditorCommands.ToggleBlockSelectionMode"
				_label = "Toggle block selection mode"/>
		</Category>
		
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/KeyBindingSchemes">
		<Scheme id="Emacs" _name = "GNU/Emacs" resource="KeyBindingSchemeEmacs.xml"/>
		<Scheme id="VS05" _name = "Visual Studio" resource="KeyBindingSchemeVisualStudio.xml"/>
		<Scheme id="MD1" _name = "MonoDevelop 1.0" resource="KeyBindingSchemeMonoDevelop1.xml"/>
		<Scheme id="MD2" _name = "MonoDevelop 2.0" resource="KeyBindingSchemeMonoDevelop2.xml"/>
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/ContextMenu/ProjectPad">
	
		<!-- Build section -->
		
		<SeparatorItem id = "BuildSectionStart" />
		<Condition id="ItemType" value="IBuildTarget">
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.Build" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.Rebuild" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.Clean" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.Reload" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.CustomCommandList" />
		</Condition>
		<SeparatorItem id = "BuildSectionEnd" />
		
		<!-- Actions Section -->
		
		<SeparatorItem id = "ActionsSectionStart" />
		<Condition id="ItemType" value="ProjectReference|ProjectFile|SystemFile">
			<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.Open" />
			<ItemSet id = "OpenWith" _label = "Open _With" autohide="true">
				<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.OpenWithList" />
			</ItemSet>
			<SeparatorItem id = "OpenSeparator" />
		</Condition>
		<Condition id="ItemType" value="SystemFile|ProjectFolder">
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.IncludeToProject" />
		</Condition>
		<SeparatorItem id = "ActionsSectionEnd" />
		
		<!-- Run section -->
		
		<SeparatorItem id = "RunSectionStart" />
		<Condition id="ItemType" value="IBuildTarget">
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.RunEntry" />
			<ItemSet id = "RunWith" _label = "Run With" autohide="True">
				<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.RunEntryWithList" />
			</ItemSet>
		</Condition>
		<Condition id="ItemType" value="Project">
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.SetAsStartupProject" />
		</Condition>
		<SeparatorItem id = "RunSectionEnd" />

		<!-- Add section -->
						
		<SeparatorItem id = "AddSectionStart" />
		<ItemSet id = "Add" _label = "_Add" autohide="True">
			<Condition id="ItemType" value="Workspace">
				<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.AddNewSolution" />
				<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.AddNewWorkspace" />
				<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.AddItem" />
			</Condition>
			<Condition id="ItemType" value="Solution|SolutionFolder">
				<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.AddNewProject" />
				<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.AddProject" />
				<SeparatorItem id = "Separator1" />
				<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.AddSolutionFolder" />
			</Condition>
			<Condition id="ItemType" value="Project|ProjectFolder|Solution|SolutionFolder">
				<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.AddNewFiles" />
				<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.AddFiles" />
			</Condition>
			<Condition id="ItemType" value="Project|ProjectFolder">
				<SeparatorItem/>
				<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.NewFolder" />
			</Condition>
		</ItemSet>
		<Condition id="ItemType" value="ProjectReferenceCollection">
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.AddReference" />
		</Condition>
		<SeparatorItem id = "AddSectionEnd" />
		
		<!-- Tools section -->
		
		<SeparatorItem id = "ToolsSectionStart" />
		<ItemSet id = "Tools" _label = "_Tools" autohide="True">
			<Condition id="ItemType" value="Solution|Project">
				<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.ExportProject" />
				<SeparatorItem id = "ExportSeparator" />
			</Condition>
			<Condition id="ItemType" value="IFolderItem">
				<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.OpenInTerminal" />
			</Condition>
		</ItemSet>
		<Condition id="ItemType" value="IFolderItem">
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.FindInFiles" />
		</Condition>
		<Condition id="ItemType" value="IFolderItem|IFileItem">
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.OpenContainingFolder" />
		</Condition>
		<SeparatorItem id = "ToolsSectionEnd" />
		
		<!-- Edit section -->
		
		<SeparatorItem id = "EditSectionStart" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Copy" disabledVisible="False" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Cut" disabledVisible="False" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Paste" disabledVisible="False" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Delete" disabledVisible="False" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Rename" disabledVisible="False" />
		<SeparatorItem id = "EditSectionEnd" />
			
		<Condition id="ItemType" value="WorkspaceItem">
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.CloseWorkspaceItem" />
		</Condition>
		
		<SeparatorItem id = "CombineOptionsSeparator" />
		
		<!-- Properties Section -->
		
		<SeparatorItem id = "PropertiesSectionStart" />
		<Condition id="ItemType" value="ProjectFile">
			<ItemSet id = "BuildActions" _label = "Build Action">
				<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.SetBuildAction" />
			</ItemSet>
			<ItemSet id = "QuickProperties" _label = "_Quick Properties">
				<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.CopyToOutputDirectory" />
			</ItemSet>
		</Condition>
		<Condition id="ItemType" value="ProjectReference">
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.LocalCopyReference" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.SpecificAssemblyVersion" />
		</Condition>
		<Condition id="ItemType" value="IBuildTarget">
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.Options" />
		</Condition>
		<Condition id="ItemType" value="ProjectItem">
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.ShowProperties" />
		</Condition>
		<SeparatorItem id = "PropertiesSectionEnd" />
		
	</Extension>
	
	<!--<Extension path = "/MonoDevelop/Ide/FileFilters">
		<FileFilter id = "AllFiles"
		            _label = "All Files"
		            extensions = "*.*"/>
	</Extension>-->
	
	<Extension path = "/MonoDevelop/Ide/TaskList/View">
		<TaskListView _label = "Comments" class = "MonoDevelop.Ide.Tasks.CommentTasksView" />
		<TaskListView _label = "User Tasks" class = "MonoDevelop.Ide.Tasks.UserTasksView" />
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/Pads">
		<Pad id = "MonoDevelop.Ide.Gui.Pads.FileScout"
			_label = "Files"
			icon="system-file-manager"
			class = "MonoDevelop.Ide.Gui.Pads.FileScout"
			defaultPlacement="Left"
			defaultStatus="AutoHide"
			defaultLayout="*" />
			
		<Pad id = "MonoDevelop.Ide.Gui.Pads.ErrorListPad"
			_label = "Error List"
			icon="gtk-dialog-error"
			class = "MonoDevelop.Ide.Gui.Pads.ErrorListPad"
			dockLabelProvider="MonoDevelop.Ide.Gui.Pads.ErrorPadLabelProvider"
			defaultPlacement = "Bottom"
			defaultStatus="AutoHide"
			defaultLayout="*"/>
			
		<Pad id = "MonoDevelop.Ide.Gui.Pads.TaskListPad"
			_label = "Task List"
			icon="md-task-list-icon"
			class = "MonoDevelop.Ide.Gui.Pads.TaskListPad"
			defaultPlacement = "Bottom"
			defaultStatus="AutoHide"
			defaultLayout="*"/>
			
		<Pad id = "MonoDevelop.Ide.Gui.Pads.HelpTree"
			defaultPlacement = "Left"
			_label = "Help"
			icon="gtk-help"
			class = "MonoDevelop.Ide.Gui.Pads.HelpTree"/>

		<SolutionPad id = "ProjectPad" _label = "Solution" icon = "md-solution" class = "MonoDevelop.Ide.Gui.Pads.ProjectPad.ProjectSolutionPad" defaultLayout="*" defaultPlacement = "Left">
			<ContextMenu path="/MonoDevelop/Ide/ContextMenu/ProjectPad" />
			<PadOption id = "ShowAllFiles" _label = "Show All Files" defaultValue = "False" />
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ProjectPad.WorkspaceNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ProjectPad.SolutionNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ProjectPad.SolutionFolderNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ProjectPad.ProjectNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ProjectPad.ProjectReferenceFolderNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ProjectPad.ProjectReferenceNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ProjectPad.ProjectFileNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ProjectPad.ProjectFolderNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ProjectPad.SystemFileNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ProjectPad.ShowAllFilesBuilderExtension"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ProjectPad.FileOperationsBuilderExtension"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ProjectPad.UnknownEntryNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ProjectPad.SolutionFolderFileNodeBuilder"/>
		</SolutionPad>
		
		<SolutionPad id = "ClassPad" _label = "Classes" icon = "md-class" class = "MonoDevelop.Ide.Gui.Pads.ClassBrowser.ClassBrowserPad" defaultLayout="Solution" defaultPlacement = "Left" defaultStatus="AutoHide">
			<PadOption id = "NestedNamespaces" _label = "Nested namespaces" defaultValue = "True" />
			<PadOption id = "ShowProjects" _label = "Show project structure" defaultValue = "True" />
			<PadOption id = "GroupByAccess" _label = "Group members by access" defaultValue = "False" />
			<PadOption id = "GroupByType" _label = "Group members by member type" defaultValue = "True" />
			<PadOption id = "PublicApiOnly" _label = "Show public members only" defaultValue = "False" />
			<PadOption id = "PublicProtectedApiOnly" _label = "Show public and protected members only" defaultValue = "False" />
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ProjectPad.WorkspaceNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ClassPad.SolutionNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ClassPad.CombineNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ClassPad.ProjectNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ClassPad.NamespaceNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ClassPad.ClassNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ClassPad.EventNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ClassPad.FieldNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ClassPad.MethodNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ClassPad.PropertyNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ProjectPad.ProjectReferenceFolderNodeBuilder"/>
			<NodeBuilder class = "MonoDevelop.Ide.Gui.Pads.ClassPad.ReferenceNodeBuilder"/>
		</SolutionPad>
		
		<Pad id = "MonoDevelop.Ide.Gui.Pads.InternalLogPad" icon="md-message-log" defaultPlacement = "Bottom" _label = "Message Log" class = "MonoDevelop.Ide.Gui.Pads.InternalLogPad"/>
		
		<Category id="Other" _name="Other Pads">
		</Category>
	</Extension>
	
	<Extension path="/MonoDevelop/Ide/WorkbenchLayouts">
		<Layout id="Default" _name="Default">
			<LayoutPad id="ProjectPad" status="AutoHide" />
		</Layout>
		<Layout id="Solution" _name="Solution" />
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/GlobalOptionsDialog">
		<Section id = "Preferences" _label = "Preferences">
			<Section id = "Style" _label = "Visual Style" icon="md-visual-style" class = "MonoDevelop.Ide.Gui.OptionPanels.IDEStyleOptionsPanel" />
			<Section id = "KeyBindings" _label = "Key Bindings" fill="true" icon="md-keyboard-shortcuts" class = "MonoDevelop.Ide.Gui.OptionPanels.KeyBindingsPanel" />
			<Section id = "LoadSave" _label = "Load/Save" icon="gtk-harddisk" class = "MonoDevelop.Ide.Gui.OptionPanels.LoadSavePanel" />
			<Section id = "Build" _label = "Build" icon="md-build-current-selected-project" class = "MonoDevelop.Ide.Gui.OptionPanels.BuildPanel">
				<Panel id = "BuildMessages" _label = "Errors and Warnings" class = "MonoDevelop.Ide.Gui.OptionPanels.BuildMessagePanel" />
				<Panel id = "Directories" _label = "Assembly Folders" class = "MonoDevelop.Ide.Gui.OptionPanels.AssemblyFoldersPanel" />
			</Section>
			<Section id = "AddIns" _label = "Add-ins" icon="md-addin" class = "MonoDevelop.Ide.Gui.OptionPanels.AddInsOptionsPanel" />
			<Section id = "TaskList" _label = "Task List" icon="md-task-list-icon" fill="true" class = "MonoDevelop.Ide.Gui.OptionPanels.TasksOptionsPanel" />
			<Section id = "ExternalTools" _label = "External Tools" icon="md-external-tools" fill="true" class = "MonoDevelop.Ide.ExternalTools.ExternalToolPane" />
			<Section id = "GeneralAuthorInfo" _label = "Author Information" icon="md-author-information" fill="true" class = "MonoDevelop.Ide.Gui.OptionPanels.GlobalAuthorInformationPanel" />
			<Section id = "MonoRuntime" _label = ".NET Runtimes" fill="true" class = "MonoDevelop.Ide.Gui.OptionPanels.MonoRuntimePanel" />
		</Section>

		<Section id = "TextEditor" _label = "Text Editor">
			<Section id = "Formatting" icon="md-formatting" _label = "Formatting" />
			<Section id = "CodeTemplates" icon="md-code-template" _label = "Code Templates" fill="true" class = "MonoDevelop.Ide.CodeTemplates.CodeTemplatePane"/>
		</Section>

		<Section id = "VersionControl" _label = "Version Control" />

		<Section id = "Other" _label = "Other">
			<Section id = "MonoDevelopMaintenance" _label = "MonoDevelop Maintenance" class = "MonoDevelop.Ide.Gui.OptionPanels.MaintenanceOptionsPanel" />
		</Section>
	</Extension>

	<Extension path = "/MonoDevelop/ProjectModel/Gui/ItemOptionPanels/Common">
		<Condition id="ItemType" value="Solution">
			<Section id = "AuthorInfo" _label = "Author Information" fill="true" class = "MonoDevelop.Ide.Gui.OptionPanels.AuthorInformationPanel" />
		</Condition>
	</Extension>
	
	<Extension path = "/MonoDevelop/ProjectModel/Gui/ItemOptionPanels/SourceCode">
		<Section id = "ProjectStandardHeader" _label = "Standard Header" fill="true" class = "MonoDevelop.Ide.StandardHeader.StandardHeaderPolicyPanel" />
	</Extension>
	
	<Extension path = "/MonoDevelop/ProjectModel/Gui/DefaultPolicyPanels/SourceCode">
		<Section id = "DefaultStandardHeader" _label = "Standard Header" fill="true" class = "MonoDevelop.Ide.StandardHeader.StandardHeaderPolicyPanel" />
	</Extension>
	
	<Extension path = "/MonoDevelop/ProjectModel/Gui/MimeTypePolicyPanels">
		<Panel id = "TextStylePolicy" mimeType="text/plain" _label = "Text Style" class = "MonoDevelop.Ide.Gui.OptionPanels.TextStylePolicyPanel" />
	</Extension>
	
	<Extension path = "/MonoDevelop/ProjectModel/PolicyTypes" >
		<PolicyType id="StandardHeaderPolicy" class="MonoDevelop.Ide.StandardHeader.StandardHeaderPolicy" />
		<PolicyType id="TextStylePolicy" class="MonoDevelop.Ide.Gui.Content.TextStylePolicy" />
	</Extension>
	
	<Extension path = "/MonoDevelop/ProjectModel/PolicySets/Mono" >
		<Policies resource="MonoTextStylePolicy.xml" />
	</Extension>
	<Extension path = "/MonoDevelop/ProjectModel/PolicySets/VisualStudio" >
		<Policies resource="VisualStudioTextStylePolicy.xml" />
	</Extension>
	<Extension path = "/MonoDevelop/ProjectModel/PolicySets/Invariant" >
		<Policies resource="InvariantTextStylePolicy.xml" />
	</Extension>
	
	<Extension path = "/MonoDevelop/ProjectModel/PolicySets" >
		<PolicySet id="MITX11License" _name="MIT/X11 License">
			<Policies resource="MITX11LicencePolicy.xml" />
		</PolicySet>
		<PolicySet id="NewBSDLicense" _name="New BSD License">
			<Policies resource="NewBSDLicencePolicy.xml" />
		</PolicySet>
		<PolicySet id="Apache2License" _name="Apache 2.0 License">
			<Policies resource="Apache2LicencePolicy.xml" />
		</PolicySet>
		<PolicySet id="LGPLv2License" _name="LGPL 2.1 License">
			<Policies resource="LGPL2-1LicencePolicy.xml" />
		</PolicySet>
		<PolicySet id="GPLv2License" _name="GPL 2 License">
			<Policies resource="GPL2LicencePolicy.xml" />
		</PolicySet>
		<PolicySet id="GPLv3License" _name="GPL 3 License">
			<Policies resource="GPL3LicencePolicy.xml" />
		</PolicySet>
		<PolicySet id="LGPLv3License" _name="LGPL 3 License">
			<Policies resource="LGPL3LicencePolicy.xml" />
		</PolicySet>
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/ProjectFileFilters">
		<FileFilter id = "Combine"
		            _label = "MonoDevelop Solution Files"
		            extensions = "*.mds"/>
		<FileFilter id = "Project"
		            _label = "MonoDevelop Project Files"
		            extensions = "*.mdp"/>
		<!--<FileFilter id = "AllFiles"
		            _label = "All Files"
		            extensions = "*.*"/>-->
	</Extension>
	
	<!-- Main Toolbar -->
	
	<Extension path = "/MonoDevelop/Ide/Toolbar">
		<ItemSet id = "Standard" _label = "Standard">
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.NewFile" />
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.OpenFile" />
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.Save" />
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.SaveAll" />
			<SeparatorItem id = "Separator1" />
			<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Undo" />
			<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Redo" />
			<SeparatorItem id = "Separator2" />
			<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Cut" />
			<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Copy" />
			<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Paste" />
			<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Delete" />
		</ItemSet>
		<ItemSet id = "Search" _label="Search">
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.Find" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.FindNext" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.Replace" />
			<SeparatorItem id = "SearchSeparator" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.ToggleBookmark" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.PrevBookmark" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.NextBookmark" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.ClearBookmarks" />
		</ItemSet>
		
		<ItemSet id = "Build" _label = "Build">
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.ConfigurationSelector" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.Build" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.BuildSolution" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.Run" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.Stop" />
		</ItemSet>
		
		<ItemSet id = "Layout" _label = "Layout">
			<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.LayoutSelector" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.NewLayout" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.DeleteCurrentLayout" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.FullScreen" />
		</ItemSet>
		<ItemSet id = "Navigation" _label = "Navigation">
			<CommandItem id = "MonoDevelop.Ide.Commands.NavigationCommands.NavigateBack" />
			<CommandItem id = "MonoDevelop.Ide.Commands.NavigationCommands.NavigateForward" />
			<ItemSet id = "NavigationListToolbar">
				<CommandItem id = "MonoDevelop.Ide.Commands.NavigationCommands.NavigateHistory" />
				<SeparatorItem id = "NavigationHistoryClearToolbarSeparator" />
				<CommandItem id = "MonoDevelop.Ide.Commands.NavigationCommands.ClearNavigationHistory" />
			</ItemSet>
		</ItemSet>
	</Extension>

	<!-- Main Menu -->

	<Extension path = "/MonoDevelop/Ide/MainMenu">
		<ItemSet id = "File" _label = "_File">
			<ItemSet id = "New" _label = "_New">
				<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.NewFile" />
				<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.NewProject" />
				<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.NewWorkspace" />
			</ItemSet>
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.OpenFile" />

			<SeparatorItem id = "OpenSep" />
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.Save" />
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.SaveAs" />
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.SaveAll" />
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.ReloadFile" />
			<SeparatorItem id = "SaveSeparator" />
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.PrintPageSetup" />
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.PrintPreviewDocument" />
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.PrintDocument" />
			<SeparatorItem id = "RecentSeparator" />
			<ItemSet id = "RecentFiles" _label = "Recent _Files">
				<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.RecentFileList" />
				<SeparatorItem id = "RecentFilesSeparator" />
				<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.ClearRecentFiles" />
			</ItemSet>
	                
			<ItemSet id = "RecentProjects" _label = "Recent Solu_tions">
				<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.RecentProjectList" />
				<SeparatorItem id = "RecentProjectsSeparator" />
				<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.ClearRecentProjects" />
			</ItemSet>
			
			<SeparatorItem id = "ExitSeparator" />
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.CloseWorkspace" />
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.CloseFile" _label = "_Close" />
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.Exit" />
		</ItemSet>
	        
		<ItemSet id = "Edit" _label = "_Edit">
			<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Undo" />
			<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Redo" />
			
			<SeparatorItem id = "Separator1" />
			<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Cut" />
			<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Copy" />
			<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Paste" />
			<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Delete" />

			<SeparatorItem id = "Separator2" />
			<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.SelectAll" />
			
			<SeparatorItem id = "Separator4" />
			
			<ItemSet id = "Format" _label = "_Format">
				<CommandItem id = "MonoDevelop.Ide.CodeFormatting.CodeFormattingCommands.FormatBuffer" />
				<SeparatorItem id ="FormatSeparator" /> 
				<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.UppercaseSelection" />
				<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.LowercaseSelection" />
				<SeparatorItem id = "Separator1" />
				<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.ToggleCodeComment" />
				<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.IndentSelection" />
				<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.UnIndentSelection" />
				<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.RemoveTrailingWhiteSpaces" />
				<SeparatorItem id = "Separator1" />
				<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.JoinWithNextLine" />
			</ItemSet>

			<ItemSet id = "Folding" _label = "F_olding">
				<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.ToggleFolding" />
				<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.ToggleAllFoldings" />
				<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.FoldDefinitions" />
			</ItemSet>
			
			<CommandItem id = "MonoDevelop.Ide.Commands.TextEditorCommands.ShowCompletionWindow" />
			<CommandItem id = "MonoDevelop.Ide.Commands.TextEditorCommands.ToggleCompletionSuggestionMode" />
			
			<CommandItem id = "MonoDevelop.Ide.Commands.TextEditorCommands.ShowParameterCompletionWindow" />
			<CommandItem id = "MonoDevelop.Ide.Commands.TextEditorCommands.ShowCodeTemplateWindow" />
			<SeparatorItem id = "Separator5" />
			<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.WordCount" />
			<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.InsertStandardHeader" />
			<SeparatorItem id = "Separator6" />
			<CommandItem id = "MonoDevelop.Ide.Commands.TextEditorCommands.ToggleBlockSelectionMode" />
			<SeparatorItem id = "optionssep5" />
			<Condition id="Platform" value="!windows">
				<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.MonodevelopPreferences" />
				<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.DefaultPolicies" />
			</Condition>
		</ItemSet>
		
		<ItemSet id = "View" _label = "_View">
			<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.LayoutList" />
			<SeparatorItem id = "ViewSeparator1" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.NewLayout" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.DeleteCurrentLayout" />
			<SeparatorItem id = "ViewSeparator2" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.ViewList" />
			<SeparatorItem id = "ViewSeparator3" />
			<ItemSet id = "ViewToolbars" _label = "Toolbars">
				<CommandItem id = "MonoDevelop.Components.Commands.CommandSystemCommands.ToolbarList" />
			</ItemSet>
			<SeparatorItem id = "ViewItemsSeparator" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.ZoomIn" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.ZoomOut" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.ZoomReset" />
			<SeparatorItem id = "ViewItemsSeparator4" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.FocusCurrentDocument" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.FullScreen" />
		</ItemSet>
		
		<ItemSet id = "Search" _label = "_Search">
		
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.Find" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.FindPrevious" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.FindNext" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.FindNextSelection" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.Replace" />
		
			<SeparatorItem id = "SearchSeparator" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.FindInFiles" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.ReplaceInFiles" />
			
			<SeparatorItem id = "SearchInFilesSeparator" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.ToggleBookmark" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.PrevBookmark" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.NextBookmark" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.ClearBookmarks" />
			<SeparatorItem id = "Separator2" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.GotoLineNumber" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.GotoFile" />
			<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.GotoType" />
			
			<CommandItem id = "MonoDevelop.Ide.NavigateToDialog.Commands.NavigateTo" />
			
			<SeparatorItem id = "ViewItemsSeparator3" />
			<CommandItem id = "MonoDevelop.Ide.Commands.NavigationCommands.NavigateBack" />
			<CommandItem id = "MonoDevelop.Ide.Commands.NavigationCommands.NavigateForward" />
			<ItemSet id = "NavigationList" _label = "Navigation _History"
			         _description = "Select a point from the navigation history" >
				<CommandItem id = "MonoDevelop.Ide.Commands.NavigationCommands.NavigateHistory" />
				<SeparatorItem id = "NavigationHistoryClearSeparator" />
				<CommandItem id = "MonoDevelop.Ide.Commands.NavigationCommands.ClearNavigationHistory" />
			</ItemSet>
			<SeparatorItem id = "ViewItemsSeparator4" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.ShowPrevious" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ViewCommands.ShowNext" />
			<SeparatorItem id = "Separator3" />
			<CommandItem id = "MonoDevelop.Ide.Commands.TextEditorCommands.GotoMatchingBrace" />
		</ItemSet>

		<ItemSet id = "Project" _label = "_Project">
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.ExportProject" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.AddReference" />
			<SeparatorItem id = "ExportSeparator" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.CustomCommandList" />
			<SeparatorItem id = "OptionsSeparator" />
			<ItemSet id = "SelectActiveConfiguration" _label = "Active Configuration">
				<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.SelectActiveConfiguration" />
			</ItemSet>
			<ItemSet id = "SelectActiveRuntime" _label = "Active Runtime" autohide = "true">
				<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.SelectActiveRuntime" />
			</ItemSet>
			<SeparatorItem id = "OptionsSeparator" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.SolutionOptions" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.ProjectOptions" />
		</ItemSet>

		<ItemSet id = "Build" _label = "_Build">
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.BuildSolution" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.RebuildSolution" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.CleanSolution" />
			<SeparatorItem id = "Separator0" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.Build" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.Rebuild" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.Clean" />
		</ItemSet>

		<ItemSet id = "Run" _label = "_Run">
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.Run" />
			<ItemSet id = "RunWith" _label = "Run With">
				<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.RunWithList" />
			</ItemSet>
			<SeparatorItem id = "StopSection" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ProjectCommands.Stop" />
		</ItemSet>

		<ItemSet id = "Tools" _label = "_Tools">
			<CommandItem id = "MonoDevelop.Ide.Commands.ToolCommands.AddinManager" />
			<SeparatorItem id ="AddinManagerSeparator" /> 
			<CommandItem id = "MonoDevelop.Ide.Commands.ToolCommands.ToolList" />
			<CommandItem id = "MonoDevelop.Ide.Commands.ToolCommands.InstrumentationViewer" />
			<SeparatorItem id = "OptionsSection" />
			<Condition id="Platform" value="windows">
				<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.MonodevelopPreferences" />
				<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.DefaultPolicies" />
			</Condition>
		</ItemSet>

		<ItemSet id = "Window" _label = "_Window">
			<CommandItem id = "MonoDevelop.Ide.Commands.WindowCommands.NextWindow" />
			<CommandItem id = "MonoDevelop.Ide.Commands.WindowCommands.PrevWindow" />
			<SeparatorItem id ="NxtPrvSeparator" /> 
			<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.CloseAllFiles" />
			<SeparatorItem id ="SplitSeparator" /> 
			<CommandItem id = "MonoDevelop.Ide.Commands.WindowCommands.SplitWindowVertically" />
			<CommandItem id = "MonoDevelop.Ide.Commands.WindowCommands.SplitWindowHorizontally" />
			<CommandItem id = "MonoDevelop.Ide.Commands.WindowCommands.UnsplitWindow" />
			<CommandItem id = "MonoDevelop.Ide.Commands.WindowCommands.SwitchSplitWindow" />
			<SeparatorItem id = "contentSep" />
			<CommandItem id = "MonoDevelop.Ide.Commands.WindowCommands.OpenWindowList" />
		</ItemSet> 

		<ItemSet id = "Help" _label = "_Help">
			<CommandItem id = "MonoDevelop.Ide.Commands.HelpCommands.Help" />
			<CommandItem id = "MonoDevelop.Ide.Commands.HelpCommands.TipOfTheDay" />
			<SeparatorItem id = "Separator2" />
			<ItemSet id = "Web" _label = "_Web">
				<LinkItem id = "MonoDevelop" _label = "MonoDevelop" link = "http://www.monodevelop.com" />
				<LinkItem id = "Mono" _label = "Mono Project" description = "A free .NET implementation effort, worth visiting" link = "http://www.mono-project.com" />
				<ItemSet id = "C#" _label = "C#">
					<LinkItem id = "C# Help" _label = "C# Help" link = "http://www.csharphelp.com" />
					<LinkItem id = "C# Corner" _label = "C# Corner" link = "http://www.c-sharpcorner.com" />
					<LinkItem id = "CodePlex" _label = "CodePlex" description = "Open Source Project Community." link = "http://www.codeplex.com" />
					<LinkItem id = "MsCodeGallery" _label = "MSDN Code Gallery" description = "Download and share sample applications, code snippets, and other resources with the developer community." link = "http://code.msdn.microsoft.com" />
				</ItemSet>
			</ItemSet>
			<SeparatorItem id = "Separator3" />
			<LinkItem id = "ReportBug" _label = "Report a Bug" link = "http://bugzilla.novell.com/enter_bug.cgi?alias=&amp;assigned_to=&amp;blocked=&amp;bug_file_loc=http%3A%2F%2F&amp;bug_severity=Normal&amp;bug_status=NEW&amp;cf_foundby=---&amp;cf_nts_priority=&amp;cf_nts_support_num=&amp;cf_partnerid=&amp;comment=Description%20of%20Problem%3A%0D%0A%0D%0A%0D%0ASteps%20to%20reproduce%20the%20problem%3A%0D%0A1.%20%0D%0A2.%20%0D%0A%0D%0A%0D%0AActual%20Results%3A%0D%0A%0D%0A%0D%0AExpected%20Results%3A%0D%0A%0D%0A%0D%0AHow%20often%20does%20this%20happen%3F%20%0D%0A%0D%0A%0D%0AAdditional%20Information%3A%0D%0A%0D%0A%0D%0A&amp;component=&amp;contenttypeentry=&amp;contenttypemethod=autodetect&amp;contenttypeselection=text%2Fplain&amp;data=&amp;deadline=&amp;dependson=&amp;description=&amp;estimated_time=0.0&amp;flag_type-2=X&amp;form_name=enter_bug&amp;keywords=&amp;maketemplate=Remember%20values%20as%20bookmarkable%20template&amp;op_sys=Other&amp;priority=P5%20-%20None&amp;product=MonoDevelop%20&amp;qa_contact=&amp;rep_platform=Other&amp;short_desc=&amp;version=unspecified" />
			<CommandItem id = "MonoDevelop.Ide.Commands.HelpCommands.About" />
		</ItemSet>
	</Extension>

	<Extension path = "/MonoDevelop/Ide/FileTemplates">
		<FileTemplate id = "EmptyClass" resource = "EmptyClass.xft.xml"/>
		<FileTemplate id = "EmptyEnum" resource = "EmptyEnum.xft.xml"/>
		<FileTemplate id = "EmptyInterface" resource = "EmptyInterface.xft.xml"/>
		<FileTemplate id = "EmptyStruct" resource = "EmptyStruct.xft.xml"/>
		<FileTemplate id = "EmptyHTMLFile" resource = "EmptyHTMLFile.xft.xml"/>
		<FileTemplate id = "AppConfigFile" resource = "AppConfigFile.xft.xml"/>
		<FileTemplate id = "EmptyResourceFile" resource = "EmptyResourceFile.xft.xml"/>
		<FileTemplate id = "EmptyTextFile" resource = "EmptyTextFile.xft.xml"/>
		<FileTemplate id = "EmptyXMLFile" resource = "EmptyXMLFile.xft.xml"/>
	</Extension>

	<Extension path = "/MonoDevelop/Ide/FileTemplateTypes">
		<FileTemplateType name = "File" class = "MonoDevelop.Ide.Templates.TextFileDescriptionTemplate"/>
		<FileTemplateType name = "CodeDomFile" class = "MonoDevelop.Ide.Templates.CodeDomFileDescriptionTemplate"/>
		<FileTemplateType name = "ProjectResource" class = "MonoDevelop.Ide.Templates.ResourceFileDescriptionTemplate"/>
		<FileTemplateType name = "CodeTranslationFile" class = "MonoDevelop.Ide.Templates.CodeTranslationFileDescriptionTemplate"/>
		<FileTemplateType name = "FileTemplateReference" class = "MonoDevelop.Ide.Templates.FileTemplateReference"/>
		<FileTemplateType name = "Directory" class = "MonoDevelop.Ide.Templates.DirectoryTemplate"/>
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/FileTemplateConditionTypes">
		<FileTemplateConditionType name = "ClrVersion" class = "MonoDevelop.Ide.Templates.ClrVersionFileTemplateCondition"/>
		<FileTemplateConditionType name = "PartialTypeSupport" class = "MonoDevelop.Ide.Templates.PartialTypeFileTemplateCondition"/>
		<FileTemplateConditionType name = "ParentProject" class = "MonoDevelop.Ide.Templates.ParentProjectFileTemplateCondition"/>
	</Extension>

	<Extension path = "/MonoDevelop/Ide/ProjectTemplates">
		<ProjectTemplate id = "MonoDevelop.BlankSolution" resource = "BlankCombine.xpt.xml"/>
		<ProjectTemplate id = "MonoDevelop.Workspace" resource = "Workspace.xpt.xml"/>
		<ProjectTemplate id = "MonoDevelop.GenericProject" resource = "GenericProject.xpt.xml"/>
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/TextEditorExtensions">
		<Class id="InitialStep" class = "MonoDevelop.Ide.Gui.Content.TextEditorExtensionMarker" />
		<Class id="MidStep" class = "MonoDevelop.Ide.Gui.Content.TextEditorExtensionMarker" />
		<Class id="FinalStep" class = "MonoDevelop.Ide.Gui.Content.TextEditorExtensionMarker" />
	</Extension>
	
	<Extension path = "/MonoDevelop/Core/StockIcons">
		<StockIcon stockid = "md-parser" resource = "parsing.png" />
		<!-- for some reason both pairs next/previous and forward/back are in use -->
		<StockIcon stockid = "md-navigate-forward" resource = "navigate-next-16.png" size="Menu" />
		<StockIcon stockid = "md-navigate-forward" resource = "navigate-next-24.png" />
		<StockIcon stockid = "md-navigate-back" resource = "navigate-previous-16.png" size="Menu" />
		<StockIcon stockid = "md-navigate-back" resource = "navigate-previous-24.png" />
		<StockIcon stockid = "md-navigate-next" resource = "navigate-next-16.png" size="Menu" />
		<StockIcon stockid = "md-navigate-next" resource = "navigate-next-24.png" />
		<StockIcon stockid = "md-navigate-previous" resource = "navigate-previous-16.png" size="Menu" />
		<StockIcon stockid = "md-navigate-previous" resource = "navigate-previous-24.png" />
		<StockIcon stockid = "md-pin-up" resource = "pinup.png" />
		<StockIcon stockid = "md-pin-down" resource = "pindown.png" />
		<StockIcon stockid = "system-file-manager" resource = "system-file-manager.png" />
		<StockIcon stockid = "md-keyboard-shortcuts" resource = "keyboard-shortcuts-16.png" size="Menu"/>
		<StockIcon stockid = "md-keyboard-shortcuts" resource = "keyboard-shortcuts-22.png" />
		<StockIcon stockid = "md-text-editor" resource = "text-editor-16.png" size="Menu"/>
		<StockIcon stockid = "md-text-editor" resource = "text-editor-22.png" />
		<StockIcon stockid = "md-external-tools" resource = "tools-external-tools-16.png" size="Menu" />
		<StockIcon stockid = "md-external-tools" resource = "tools-external-tools-24.png"/>
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/ContextMenu/DocumentTab">
		<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.CloseFile" />
		<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.CloseAllFiles" />
		<CommandItem id = "MonoDevelop.Ide.Commands.FileTabCommands.CloseAllButThis" />
		<SeparatorItem id = "CloseSeparator" />
		<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.Save" />
		<CommandItem id = "MonoDevelop.Ide.Commands.FileCommands.SaveAll" />
		<SeparatorItem id = "SaveSeparator" />
		<CommandItem id = "MonoDevelop.Ide.Commands.FileTabCommands.CopyPathName" />
		<CommandItem id = "MonoDevelop.Ide.Commands.FileTabCommands.ToggleMaximize" />
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/ExecutionCommandEditors">
		<Customizer id="MonoDevelop.Ide.Execution.CustomArgsCustomizer" _name="Arguments" />
		<Customizer id="MonoDevelop.Ide.Execution.MonoExecutionCustomizer" _name="Mono Options" />
	</Extension>
</Addin>