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

ChangeLog « MonoDevelop.Core « core « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 855f70b2fa35b64dcee98a8d0cc27f1bcf8091dc (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
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
2010-08-04  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Projects/Solution.cs:
	* MonoDevelop.Projects/SolutionItem.cs:
	* MonoDevelop.Projects/AuthorInformation.cs: Moved
	  AuthorInformation from MD.Ide to MD.Projects. Added an
	  AuthorInformation property to Solution and SolutionItem.

2010-08-04  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Formats.MD1/MD1DotNetProjectHandler.cs:
	  Moved GetCulture to DotNetProject. Implemented the Clean
	  method in Project.

	* MonoDevelop.Projects/DotNetProject.cs: Include generated
	  satellite resource files into the list of output files.
	  Fixes bug #615700 - Satellite assemblies not included in
	  package project.

	* MonoDevelop.Projects/FileCopySet.cs: Added some
	  documentation.

	* MonoDevelop.Projects/Project.cs: Added some documentation.
	  Added GetOutputFiles overridable. It returns a list of files
	  generated by the project.

2010-08-04  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Formats.MSBuild/MSBuildProject.cs:
	* MonoDevelop.Projects.Formats.MSBuild/MSBuildProjectHandler.cs:
	  Don't save the msbuild file to disk if the content did not
	  change. Fixes bug #628082 - MonoDevelop needs writable
	  project files even though it doesn't write them.

2010-07-22  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom.Parser/ProjectDomService.cs:
	* MonoDevelop.Projects.Dom.Serialization/CodeCompletionDatabase.cs:
	* MonoDevelop.Projects.Dom.MemoryDatabase/ProjectMemoryProjectDom.cs:
	  Made queue parse job public.

2010-07-22  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom.Serialization/SimpleCodeCompletionDatabase.cs:
	  Lock database updates.

2010-07-22  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/IExpressionFinder.cs: HACK: the
	  expression finder now needs to take an textEditorData -
	  unfortunately we've a rule that doesn't allow to reference
	  the Mono.TextEditor from here - take care when calling this.

2010-07-21  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom.Parser/ProjectDom.cs:
	* MonoDevelop.Projects.Dom.Serialization/CodeCompletionDatabase.cs:
	  Fixed little namespace bug.

2010-07-20  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom.Parser/ProjectDom.cs: Some
	  performance optimization of SearchType.

2010-07-20  Mike Krüger  <mkrueger@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Projects.Dom.Serialization/FileEntry.cs:
	* MonoDevelop.Projects.Dom.Serialization/ClassEntry.cs:
	* MonoDevelop.Projects.Dom.Serialization/DomTypeProxy.cs:
	* MonoDevelop.Projects.Dom.Serialization/NamespaceEntry.cs:
	* MonoDevelop.Projects.Dom.Serialization/CodeCompletionDatabase.cs:
	* MonoDevelop.Projects.Dom.Serialization/ProjectCodeCompletionDatabase.cs:
	* MonoDevelop.Projects.Dom.Serialization/AssemblyCodeCompletionDatabase.cs:
	  Optimized the code completion database (especially the
	  string operations in the type lookup were expensive).

2010-07-12  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.addin.xml:
	* MonoDevelop.Projects.CodeGeneration/BaseRefactorer.cs:
	* MonoDevelop.Projects.CodeGeneration/CodeRefactorer.cs:
	* MonoDevelop.Projects.Dom.MemoryDatabase/ProjectMemoryProjectDom.cs:
	* MonoDevelop.Projects.Dom.Serialization/ProjectCodeCompletionDatabase.cs:
	  Track ProjectDomService/Parser API.

	* MonoDevelop.Projects.Dom.Parser/IParser.cs:
	* MonoDevelop.Projects.Extensions/ParserNode.cs:
	* MonoDevelop.Projects.Dom.Parser/AbstractParser.cs:
	* MonoDevelop.Projects.Dom.Parser/ProjectDomService.cs: Parser
	  now uses a custom extension node which does the file type
	  check, so we avoid loading all the parser assemblies at
	  startup.

	* Makefile.am:
	* MonoDevelop.Core.csproj: Added file to project.

2010-06-29  Lars Magnusson <lavima@gmail.com>
	* MonoDevelop.Projects.Formats.MSBuild/MSBuildProjectHandler.cs:
	  Added functionality for excluding imports when loading 
	  projects.
	* MonoDevelop.Projects.Extensions/DotNetProjectSubtypeNode.cs:
	  Added attribute exclude which takes a colon separated list 
	  of targets to exclude. Added functionality to exclude the 
	  targets in the initializer.

2010-06-28  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects/ProjectFileCollection.cs: Use FilePath
	  when comparing files, since it will is case insensitive on
	  windows. Sould fix bug #567155 - Linked source files not
	  saved before building.

2010-06-28  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks/framework_NET_4_0.xml: Add missing assembly.

2010-06-23  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/DataContext.cs: Properly
	  register extended properties. Fixes bug #Bug 615523 -
	  [regression] tarball packages lack pixmaps / desktop files.

2010-06-14  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Execution/ExecutionEnvironment.cs:
	* MonoDevelop.Core.Assemblies/TargetFrameworkBackend.cs:
	* MonoDevelop.Projects.Formats.MD1/MD1DotNetProjectHandler.cs:
	* MonoDevelop.Projects.Formats.MSBuild/MSBuildProjectService.cs:
	  Added ExecutionEnvironment class, which can be used to
	  customize the environment of a process.

2010-06-09  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects/Project.cs: Use a monitor task for the
	  build so things get indented properly in the build output
	  pad.

2010-06-09  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.CodeGeneration/CodeGenerator.cs: Use
	  start & end offset for regions, not start + length.

2010-06-09  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.CodeGeneration/CodeGenerator.cs:
	  CreateMemberImplementation now returns a
	  CodeGeneratorMemberResult with body regions.

	* MonoDevelop.Projects.Dom/IDomVisitor.cs:
	* MonoDevelop.Projects.Dom/DomCecilCompilationUnit.cs: Fix
	  spelling.

2010-06-04  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects/DotNetProject.cs: Added option for
	  setting a project to use an external console.

2010-06-03  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Text/Formatter.cs: Fixed 'Bug 611202 -
	  Move line up/down command fails in aspx files'.

2010-06-02  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.CodeGeneration/CodeGenerator.cs: Code
	  generator get's now used by code completion auto generation
	  & insert code feature.

2010-06-02  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.CodeGeneration/CodeGenerator.cs: Worked
	  on code generation.

2010-06-01  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.CodeGeneration/CodeGenerator.cs: Append
	  new line between members.

2010-06-01  Mike Krüger  <mkrueger@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.addin.xml:
	* MonoDevelop.Projects.CodeGeneration/CodeGenerator.cs:
	* MonoDevelop.Projects.CodeGeneration/MimeTypeExtensionNode.cs:
	  Worked on code generation.

2010-05-31  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/ResolveResult.cs: Fixed 'Bug 610203
	  - Go to declaration on a method doesn't go to the correct
	  overload'.

2010-05-31  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/DomReturnType.cs:
	* MonoDevelop.Projects.Dom/ResolveResult.cs: Fixed 'Bug 610006
	  - Intellisense gives members of return type of functions
	  even when that function isn't invoked'.

2010-05-28  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/CompilationUnit.cs: Fixed part of
	  'Bug 609221 - Refactor->"Create Method" does not infer type
	  for parameter from LINQ query'.

2010-05-28  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/ExpressionContext.cs: Changed linq
	  context.

2010-05-27  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom.Parser/TypeResolverVisitor.cs:
	  Fixed potential type lookup problem.

2010-05-25  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/MonoRuntimeInfo.cs: Update
	  runtime version parsing.

2010-05-25  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/DomReturnType.cs: Addad check.

2010-05-21  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core/FileService.cs: New ToFilePathArray
	  extension method.

2010-05-19  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/CompilationUnit.cs: fixed
	  collection already modified exception.

2010-05-19  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/ParsedDocument.cs: Implemented 'Bug
	  606544 - Better comment fold markers'.

2010-05-18  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/ResolveResult.cs: Removed some
	  debug code.

2010-05-18  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/ResolveResult.cs: Added a property
	  to determine, if a method resove result matches exactly one
	  of the found methods.

2010-05-18  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/ExpressionContext.cs: Added LINQ
	  context.

2010-05-17  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/FileService.cs: FilePath should be
	  serializable.

2010-05-14  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/ResolveResult.cs: Resolve results
	  can now contain errors.

2010-05-13  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects/DotNetProject.cs:
	* MonoDevelop.Projects/DotNetAssemblyProject.cs:
	* MonoDevelop.Projects/ProjectCreateInformation.cs: Added new
	  GetDefaultTargetPlatform virtual to DotNetProject. It is
	  overriden in DotNetAssemblyProject to set the default
	  configuration for exes (x86).

2010-05-12  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom.Output/AmbienceService.cs: Added
	  null check for 'Bug 605005 - Exception viewing asax files'.


2010-05-11  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects/DotNetProject.cs: Remove
	  SupportedClrVersions, as it's been superseded by
	  SupportsFramework.

2010-05-11  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects/ProjectFile.cs: Expose
	  DependentChildren as an IList not an IEnumerable.

	* MonoDevelop.Projects/DotNetAssemblyProject.cs: Improve
	  comment.

2010-05-10  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Dom.Parser/ProjectDomService.cs: Use
	  FilePath to index the file database dictionary.

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	  ExecuteAssembly sets env vars, so UseShellExecute must be
	  false.

	* MonoDevelop.Core.Instrumentation/InstrumentationService.cs:
	  Start the monitor process using a cross platform method.

2010-05-07  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Core/FileService.cs: Check empty file name.

2010-05-07  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom.Parser/ProjectDomService.cs: Added
	  file name check.

2010-05-06  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Logging/ConsoleLogger.cs: Don't localize
	  log message headers, since it's possible for this to cause a
	  circular type initialization problem with the
	  PropertyService, GettextCatalog, and InstrumentationService.
	  Console log messages probably shouldn't be localized anyway,
	  because it makes them harder for us to interpret.

2010-05-06  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom.Parser/ProjectDomService.cs: Added
	  method for removing a file dom.

2010-05-06  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom.Parser/ProjectDom.cs: fix null ref
	  if returnType == null.

2010-05-06  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ProcessService.cs: Fix Windows
	  build.

	* MonoDevelop.Core.Instrumentation/Counter.cs:
	* MonoDevelop.Core.Instrumentation/TimerCounter.cs:
	* MonoDevelop.Core.Instrumentation/InstrumentationService.cs:
	  Add support for counter data serialization.

2010-05-06  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects/ProjectsServices.cs: Delay project
	  service loading.

2010-05-06  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Execution/ProcessService.cs: Fix the Exited
	  event on StartProcess. Add a FIXME regarding killing the
	  wapi hack.

2010-05-05  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core/PropertyBag.cs: Really fix unescaping of keys.

2010-05-05  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core/PropertyBag.cs: Fix unescaping of keys.

2010-05-03  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Policies/PolicyService.cs: In
	  ParanoidSave, make sure the writer is closed before trying
	  to rename the file. Should fix bug #591321 - Edit/Default
	  Policies are not persistent between sessions.

2010-05-03  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Core/Properties.cs: Dispose stream reader after
	  use.

2010-05-03  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/AssemblyContext.cs:
	* MonoDevelop.Core.Assemblies/DirectoryAssemblyContext.cs:
	  Don't crash if there is some error while scanning an
	  assembly folder. Fire the Changed event if the directory
	  list of DirectoryAssemblyContext changes.

2010-05-03  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/StringParserService.cs: Added formatting
	  support for float and double.

2010-05-03  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Policies/PolicySet.cs:
	* MonoDevelop.Projects.Policies/ScopedPolicy.cs:
	* MonoDevelop.Projects.Policies/PolicyService.cs: Added
	  attribute to explicitly allow differential serialization for
	  a policy (which is disabled by default).

2010-05-03  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom.Parser/ProjectDomService.cs: Fixed
	  'Bug 601351 - changing collection while enumerating in the
	  dom parser'.

2010-05-03  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/ResolveResult.cs: Fixed 'Bug 601350
	  - Null ref in highlighting/tooltips'.

2010-04-30  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs: Added
	  documentation and some additional overloads for
	  ExecuteAssembly.

2010-04-28  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Execution/ProcessService.cs: Pass info to
	  StartConsoleProcess separately instead of in a
	  ProcessStartInfo, so it's clear what values are being
	  passed.

2010-04-28  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/CompilationUnit.cs: Added special
	  addusing method.

2010-04-27  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Execution/ProcessWrapper.cs:
	* MonoDevelop.Core.Execution/IProcessAsyncOperation.cs: Make
	  IProcessAsyncOperation IDisposable.

2010-04-27  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom.Parser/ProjectDom.cs: fixed
	  cut&paste error.

2010-04-27  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom.Parser/ProjectDom.cs: Improved
	  dirty compiation unit merge.

2010-04-27  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom.Parser/ProjectDom.cs:
	* MonoDevelop.Projects.Dom.Parser/ProjectDomService.cs: Added
	  mergin of compilation units that contain errors.

2010-04-27  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/DomReturnType.cs:
	* MonoDevelop.Projects.Dom.Serialization/DomPersistence.cs:
	* MonoDevelop.Projects.Dom.Serialization/CodeCompletionDatabase.cs:
	  Optimized code completion database reading (saves up to ~20%
	  file size of the code completion db files).

2010-04-26  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/DomReturnType.cs: used a LRU method
	  to prevent a memory leak of the return type cache.

2010-04-26  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ProcessService.cs: External
	  console processes are now wrapped by a
	  IProcessAsyncOperation interface, instead of a Process
	  instance. In this way it is possible to create external
	  consoles which are not directly bound to a process.

2010-04-26  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/DomReturnType.cs:
	* MonoDevelop.Projects.Dom.Parser/ProjectDom.cs:
	* MonoDevelop.Projects.Dom.Parser/TypeResolverVisitor.cs:
	* MonoDevelop.Projects.Dom.Serialization/DomPersistence.cs:
	  Re-enabled return type sharing for code completion database.

2010-04-26  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom.Output/NetAmbience.cs: Print type
	  name for constructors.

2010-04-23  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects/ProjectFileCollection.cs: Properly
	  check for child files.

	* MonoDevelop.Core/FileService.cs: Added CanonicalPath
	  property.

2010-04-21  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ProcessService.cs: Fix build.

2010-04-21  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ProcessService.cs: Added null
	  check on the result of the external console handler.

2010-04-21  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Formats.MSBuild/SlnFileFormat.cs:
	  Report a better error when there are two projects with the
	  same guid. Fixes bug #545285 - When opening another
	  solution, sometimes i got an error.

2010-04-21  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Dom.Serialization/DomTypeProxy.cs: Use
	  the new LoadClass method, which takes into account that the
	  entry may already have been loaded. Fixes bug #586574 - Goto
	  Type dialog throws a NullReferenceException.

	* MonoDevelop.Projects.Dom.Serialization/ClassEntry.cs:
	* MonoDevelop.Projects.Dom.Serialization/CodeCompletionDatabase.cs:
	  Simplified ReadClass. The new LoadClass assigns the loaded
	  class and returns the existing class if it was already
	  loaded. Also, don't unload classes which have not been
	  saved.

2010-04-20  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/CompilationUnit.cs: ShortenTypeName
	  now handles inner types.

2010-04-15  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/CompilationUnit.cs:
	* MonoDevelop.Projects.Dom/ICompilationUnit.cs: Added Tag to
	  compilation unit (to hold the original compilation unit).

2010-04-15  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/LocalVariable.cs: Handled possible
	  null ref.

2010-04-13  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Formats.MSBuild/MSBuildProjectHandler.cs:
	  Improve configuration condition validation.

2010-04-13  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Text/Formatter.cs:
	* MonoDevelop.Projects.Text/IPrettyPrinter.cs: Added a correct
	  indenting method to the pretty printer (Bug 595587 - Move
	  code block to correct depth when Alt+arrow moving).

2010-04-12  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects/DotNetProject.cs: When checking if a
	  project has to be built, return true if the mdb/pdb file is
	  not up to date. Fixes bug #594959 - MD doesn't recompile
	  when switching runtime.

2010-04-09  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects/SolutionFolder.cs:
	* MonoDevelop.Projects.Formats.MSBuild/SlnFileFormat.cs:
	* MonoDevelop.Projects.Formats.MSBuild/MSBuildProjectService.cs:
	* MonoDevelop.Projects.Formats.MSBuild/MSBuildProjectHandler.cs:
	  Add support for files added to solution folders.

2010-04-08  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Formats.MSBuild/MSBuildProjectHandler.cs:
	  Add the Service element to the list of unsupported elements.
	  Fixes bug #483716 - Strange "GUID" files are shown in
	  projects.

2010-04-06  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects/WorkspaceItem.cs:
	* MonoDevelop.Projects/ProjectService.cs:
	* MonoDevelop.Projects/FileFormatManager.cs:
	* MonoDevelop.Projects.Formats.MSBuild/SlnFileFormat.cs:
	  Assign the correct format to the loaded solutions.

2010-03-31  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Formats.MSBuild\MSBuildProjectService.cs:
	  Fix resurce name generation in windows.

2010-03-30  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects/ProjectService.cs: Make sure a full
	  path is always used to read projects and solutions.

	* MonoDevelop.Projects/SolutionItem.cs: Added some timers.

2010-03-29  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.Execution/ProcessService.cs:
	* MonoDevelop.Core.Execution/ExternalConsoleLocator.cs: Moved
	  external console creation to the platform service.

2010-03-29  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.csproj: Don't do overflow checks.

2010-03-24  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.StringParsing/IStringTagModel.cs: Make sure
	  search on dictionary is case insensitive.

2010-03-24  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ProcessService.cs: Fix possible
	  NRE.

2010-03-24  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.StringParsing:
	* MonoDevelop.Projects/Project.cs:
	* MonoDevelop.Projects/Solution.cs:
	* MonoDevelop.Projects/SolutionItem.cs:
	* MonoDevelop.Projects/WorkspaceItem.cs:
	* MonoDevelop.Projects/CustomCommand.cs:
	* MonoDevelop.Projects/ProjectService.cs:
	* MonoDevelop.Core/StringParserService.cs:
	* MonoDevelop.Projects/SolutionEntityItem.cs:
	* MonoDevelop.Projects/ProjectConfiguration.cs:
	* MonoDevelop.Core.StringParsing/StringTagModel.cs:
	* MonoDevelop.Core.StringParsing/IStringTagModel.cs:
	* MonoDevelop.Projects/DotNetProjectConfiguration.cs:
	* MonoDevelop.Core.StringParsing/StringTagProvider.cs:
	* MonoDevelop.Core.StringParsing/IStringTagProvider.cs:
	* MonoDevelop.Core.StringParsing/StringTagDescription.cs:
	* MonoDevelop.Core.StringParsing/StringTagModelDescription.cs:
	  Reworked the string parser service. Added an extension point
	  for registering tag providers. Added StringTagModel and
	  StringTagModelDescription classes.

2010-03-23  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/INode.cs: Added some node types.

2010-03-23  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/INode.cs: Added method.

2010-03-23  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Formats.MSBuild/MSBuildProjectHandler.cs:
	  Ignore duplicate references when loading a project. Fixes
	  bug #582498 - Duplicate references break things.

2010-03-22  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelop.Core.addin.xml: Bumped MD version.

2010-03-19  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/CopyDomVisitor.cs: Handle parameter
	  location.

2010-03-19  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom/DomMethod.cs:
	* MonoDevelop.Projects.Dom/DomProperty.cs:
	* MonoDevelop.Projects.Dom/DomParameter.cs: Correctly set
	  parameter declaring member.

2010-03-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Policies/PolicyService.cs: Improved
	  differential serialization. It can now properly serialize
	  lists where items are added/removed.

	* MonoDevelop.Projects.Policies/PolicyBag.cs: Don't abort
	  project loading if a policy can't be found.

2010-03-18  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Instrumentation/TimeCounter.cs: This
	  doesn't need to be public.

	* MonoDevelop.Core.Instrumentation/Counter.cs: Use better name
	  for the duration property.

	* MonoDevelop.Core.Instrumentation/TimerCounter.cs: Added some
	  statistics.

2010-03-17  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Dom.Parser/ProjectDomService.cs: Don't
	  completely fail the loading of the solution data if one of
	  the projects fails.

2010-03-17  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Dom.Serialization/CodeCompletionDatabase.cs:
	  Bump db version because serialized headers are referencing
	  the old MD.Projects assembly.

	* MonoDevelop.Projects.Dom/DomType.cs: Added null check.

2010-03-17  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Dom.Parser/ProjectDom.cs:
	* MonoDevelop.Projects.Dom.Serialization/FileEntry.cs:
	* MonoDevelop.Projects.Dom.Parser/ProjectDomService.cs:
	* MonoDevelop.Projects.Dom.Parser/TypeResolverVisitor.cs:
	* MonoDevelop.Projects.Dom.Serialization/CodeCompletionDatabase.cs:
	* MonoDevelop.Projects.Dom.MemoryDatabase/ProjectMemoryProjectDom.cs:
	* MonoDevelop.Projects.Dom.Serialization/SimpleCodeCompletionDatabase.cs:
	* MonoDevelop.Projects.Dom.Serialization/AssemblyCodeCompletionDatabase.cs:
	  Fixed 'Bug 553554 - MD takes a while to quit'.

2010-03-17  Lluis Sanchez Gual  <lluis@novell.com>

	Merged MD.Projects into MD.Core, and MD.Projects.Gui,
	MD.Core.Gui and MD.Components into MD.Ide.

2010-03-16  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/Runtime.cs:
	* MonoDevelop.Core.Instrumentation/Counter.cs:
	* MonoDevelop.Core.Instrumentation/CounterCategory.cs:
	* MonoDevelop.Core.Instrumentation/InstrumentationService.cs:
	  Allow remote access to counter data.

2010-03-16  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Instrumentation/TimeCounter.cs: Add missing
	  null check.

2010-03-15  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/PropertyBag.cs: Add missing null check.

2010-03-15  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/StringParserService.cs: Added new
	  CustomTagStore type, which can be used to put together
	  several related tags for string parsing.

2010-03-15  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core/Runtime.cs:
	* MonoDevelop.Core/LoggingService.cs:
	* MonoDevelop.Core.Instrumentation/Counter.cs:
	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Instrumentation/TimeCounter.cs:
	* MonoDevelop.Core.Instrumentation/TimerCounter.cs:
	* MonoDevelop.Core.Logging/InstrumentationLogger.cs:
	* MonoDevelop.Core.Instrumentation/InstrumentationService.cs:
	  Add support for timers in the instrumentation service.

	* MonoDevelop.Core/PropertyBag.cs: Dispose should be public.

	* MonoDevelop.Core.Serialization/DataCollection.cs: Add setter
	  indexer.

2010-03-12  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/DataContext.cs: Initialize
	  the data type before adding it to the name dictionary, since
	  initialization may change the item name.

2010-03-08  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/DataContext.cs:
	* MonoDevelop.Core.Serialization/PrimitiveDataType.cs: Added
	  support for serializing time spans.

	* MonoDevelop.Core/PropertyBag.cs: Escape spaces in key names
	  when saving the property bag to xml.

2010-03-05  Michael Hutchinson  <mhutchinson@novell.com>

	* Makefile.am:
	* Mono.Options.cs:
	* MonoDevelop.Core.csproj: Added Mono.Options.

2010-02-25  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/Runtime.cs:
	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/MsNetTargetRuntime.cs: If the
	  runtime is shutting down, stop the initialization of the
	  system assembly service. Should fix bug #582511 - NRE in
	  DirectoryAssemblyContext.OnUpdatePackage.

2010-02-24  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs: New
	  public method.

2010-02-24  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/ClassDataType.cs: When a
	  derived type is not found, try a direct type query before
	  returning the fallback type. Fixes issue with .mdp loading.

2010-02-18  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core/IconId.cs: Implemented new IconId class
	  which can be used to represent icon names and supports lazy
	  loading of pixbufs.

2010-02-16  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.AddIns/TargetFrameworkNode.cs: Allow
	  loading a framework description from a file.

2010-02-16  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks/framework_NET_4_0.xml:
	* frameworks/framework_NET_2_0.xml:
	* frameworks/framework_NET_1_1.xml: Add missing assemblies.

2010-02-13  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/DataContext.cs: Fix build.

2010-02-13  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/DataContext.cs: Fix
	  registering of extended properties.

2010-02-13  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/DataContext.cs: (Revert
	  revision 151674)

2010-02-12  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Serialization/DataContext.cs: First attempt
	  at fixing losing extended properties.

2010-02-12  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/DataContext.cs: Add support
	  for delayed loading of serializable types.

2010-02-09  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core/Runtime.cs:
	* MonoDevelop.Core/PropertyService.cs: Add startup trace
	  calls.

2010-02-08  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core/Runtime.cs:
	* MonoDevelop.Core.Assemblies/TargetRuntime.cs: Add startup
	  trace calls.

	* MonoDevelop.Core/LoggingService.cs: Add startup trace
	  method.

2010-02-01  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/MonoRuntimeInfo.cs: Don't
	  inherit the MONO_PATH var from the current process
	  environment.

2010-01-25  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/TargetFrameworkBackend.cs:
	  Prefer using launch scripts for tools if they exist, rather
	  than using the exes directly.

2010-01-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core\Gettext.cs: Make languange selection work
	  on windows.

2010-01-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/Gettext.cs: Honor the custom language
	  option.

2010-01-15  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core/FileService.cs: Add type and null checks on
	  equality and hash.

2010-01-14  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ProcessService.cs:
	* MonoDevelop.Core.Execution/ExternalConsoleLocator.cs:
	  Factorize code for setting env vars.

	* MonoDevelop.Core.ProgressMonitoring/SimpleProgressMonitor.cs:
	  Fire the progress changed event when progress is completed.

	* MonoDevelop.Core/Properties.cs: Added null check.

2009-12-19  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/AssemblyContext.cs: Don't fall
	  back to returning current corlib if an exact match for a
	  corlib assembly name can't be found, as this breaks composed
	  assembly contexts. The first context will return current
	  corlib, and the later assembly contexts - that contains the
	  real corlib - are then not queried at all.

2009-12-18  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/AssemblyContext.cs: When
	  searching for an assembly by name, prefer framework
	  assemblies. Consider all assemblies of same name when
	  determining whether an assembly name is a framework
	  assembly.

	* MonoDevelop.Core.Assemblies/SystemAssembly.cs: Add method
	  for enumerating the NextSameName linked list.

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs: Block name
	  conflicts with existing fx packages, not just name+version.

2009-12-11  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/TargetFramework.cs: Fix a
	  possible NRE that could prevent SystemAssemblyService from
	  fully initializing.

2009-12-11  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/AssemblyContext.cs: Always set
	  the package name so that package name lookups work on
	  framework packages.

2009-12-11  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/AssemblyContext.cs: Fix
	  framework package duplication for internal backend packages
	  too.

2009-12-11  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/AssemblyContext.cs: If package
	  names are duplicated and one of them is a framework package,
	  remove the others.

	* MonoDevelop.Core.Assemblies/MonoRuntimeInfo.cs: Remove
	  unneeded env vars.

2009-12-09  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs: Fix array
	  resizing.

	* MonoDevelop.Core.Assemblies/TargetFramework.cs: Don't
	  explode trying to create backend for unregistered Framework
	  that has been created in respose to a request.

	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs: Log a
	  warning when an unregistered TargetFramework is requested.

2009-12-04  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Execution/IProcessAsyncOperation.cs:
	  Implement a NullProcessAsyncOperation.

	* MonoDevelop.Core.ProgressMonitoring/NullAsyncOperation.cs:
	  Open up the ctor to subclasses.

2009-12-02  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Execution/ProcessWrapper.cs:
	* MonoDevelop.Core.Assemblies/TargetRuntime.cs: Name threads
	  to make debugging easier.

2009-12-02  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core/Properties.cs: Only emit change events if
	  the value actually changed, since there may be many event
	  handlers listening for these events, so they can be quite
	  costly.

2009-11-25  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Core.ProgressMonitoring/AggregatedProgressMonitor.cs:
	  Exposed master monitor.

2009-11-25  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/DotNetExecutionCommand.cs: Return
	  a default target runtime when none is specified.

2009-11-20  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Execution/DotNetExecutionCommand.cs: Missed
	  file in last commit.

2009-11-16  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/Runtime.cs: Moved add-in repo to
	  monodevelop.com.

2009-11-10  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/MonoRuntimeInfo.cs: Add doc
	  comments about not using the Version string for version
	  checks.

2009-11-10  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/MonoRuntimeInfo.cs: Handle
	  "/trunk/mono" in version string.

2009-11-10  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/MonoRuntimeInfo.cs: Fix runtime
	  detection.

2009-11-10  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Execution/ProcessWrapper.cs: Fix possible
	  NRE.

2009-11-10  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/MonoRuntimeInfo.cs: Improve
	  detection of the current Mono version.

2009-11-10  Jonathan Chambers  <joncham@gmail.com>

	* MonoDevelop.Core.Assemblies/MonoTargetRuntimeFactory.cs:
	  Support custom mono installations on all platforms.

2009-11-10  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/MonoTargetRuntimeFactory.cs: Fix
	  crash when removing a runtime.

2009-11-10  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/MsNetFrameworkBackend.cs:
	  Include the 2.0 clr tools path for the 3.5 framework.

2009-11-09  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks/framework_NET_3_5.xml: Added missing assemblies.

	* MonoDevelop.Core.Assemblies/MonoFrameworkBackend.cs: Look
	  for 3.5 assemblies in the 3.5 folder.

2009-11-05  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks/framework_NET_4_0.xml:
	* frameworks/framework_NET_2_0.xml:
	* frameworks/framework_NET_1_1.xml: Put Mono.Cairo back again.

2009-11-05  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/MsNetTargetRuntime.cs: Use a
	  runtime-dependent method for getting the debug info file of
	  an assembly.

2009-11-04  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks/framework_NET_4_0.xml:
	* frameworks/framework_NET_2_0.xml: Add new Mono.Debugger.Soft
	  assembly.

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.Execution/LocalConsole.cs: Added IConsole
	  implementation.

2009-10-30  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelop.Core.addin.xml: Bump MD version.

2009-10-30  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks/framework_NET_4_0.xml:
	* frameworks/framework_NET_2_0.xml:
	* frameworks/framework_NET_1_1.xml: Exclude mono-cairo from
	  the framework list.

2009-10-30  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies\MonoFrameworkBackend.cs:
	  Properly resolve the vb compiler for Mono.

2009-10-29  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/ClassDataType.cs: Add missing
	  null check. Fixes bug #549712.

2009-10-20  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs: Fix
	  race in runtime initialization. Fixes bug #524337 -
	  PackageNotInstalled NRE error starting MonoDevelop.

2009-10-16  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/PcFileCache.cs: It seems that
	  the share pkgconfig directory should come before lib by
	  default.

2009-10-08  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.AddIns/PlatformCondition.cs: Allow negating
	  target platform.

2009-10-07  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelop.Core.addin.xml: Bump MD version.

2009-10-05  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/DataNode.cs:
	* MonoDevelop.Core.Serialization/DataItem.cs:
	* MonoDevelop.Core.Serialization/DataValue.cs:
	* MonoDevelop.Core.Serialization/DataCollection.cs: Made
	  serializable.

	* MonoDevelop.Core.Serialization/DataContext.cs:
	* MonoDevelop.Core.Serialization/ClassDataType.cs: Improved
	  the way types are resolved from deserialized names. Now a
	  context can provide a custom resolver method. Also added
	  support for serializing boxed primitive types.

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.Serialization/BinaryDataSerializer.cs:
	  Implemented a binary serializer.

	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs: Use
	  cecil to read assembly names.

2009-10-02  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.ProgressMonitoring/AggregatedAsyncOperation.cs:
	  Added async operation aggregator.

2009-09-29  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/TargetFramework.cs:
	* MonoDevelop.Core.Assemblies/AssemblyContext.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs:
	  Improve detection of the target framework of a library.
	  Should fix bug #542333.

2009-09-29  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/ItemProperty.cs: Allow
	  getting the custom attributes of a property.

2009-09-28  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/PcFileCache.cs:
	* MonoDevelop.Core.Assemblies/LibraryPcFileCache.cs: Added
	  some notes.

2009-09-28  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Core.Assemblies/PcFileCache.cs: made
	  PcFileCache.cs .NET2 compatible.

2009-09-28  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Core.Assemblies/PcFileCache.cs: Removed some
	  debug code/fixed read/write package as proposed by lluis.

2009-09-28  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Core.Assemblies/PcFileCache.cs:
	* MonoDevelop.Core.Assemblies/SystemPackage.cs: Add Requires
	  info to package data.

2009-09-23  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks/framework_NET_4_0.xml: Added Microsoft.CSharp.

2009-09-23  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/ClassDataType.cs: Propagate
	  ReadOnly and WriteOnly from ItemPropertyAttribute to
	  ItemProperty.

2009-09-23  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.addin.xml:
	* MonoDevelop.Core.AddIns/PlatformCondition.cs: New platform
	  condition, which allows enabling/disabling extensions
	  depending on the current platform.

	* MonoDevelop.Core.Instrumentation/Counter.cs:
	* MonoDevelop.Core.Instrumentation/TimeCounter.cs:
	* MonoDevelop.Core.Instrumentation/InstrumentationService.cs:
	  Initial support for timers.

	* Makefile.am:
	* MonoDevelop.Core.csproj: Added new files.

2009-09-23  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies\MsNetTargetRuntime.cs: Don't
	  crash if an assembly folder doesn't exist.

	* MonoDevelop.Core\Gettext.cs: Improve error reporting.

2009-09-16  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/Gettext.cs: On windows, the catalog is
	  located in a 'locale' subdir.

2009-09-15  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies\MsNetTargetRuntime.cs:
	* MonoDevelop.Core.Assemblies\MsNetFrameworkBackend.cs: Scan
	  folders registered in AssemblyFoldersEx keys.

2009-09-02  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/MsNetFrameworkBackend.cs: On
	  windows, include the MD startup path in the tools path list,
	  since we may bundle some tools in the setup.

2009-09-02  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/TargetFrameworkBackend.cs: In
	  GetToolPaths, unquote quoted paths.

2009-09-02  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ProcessHostController.cs: Added a
	  watch dog in mdhost. The process will exit if the main MD
	  process dies.

	* MonoDevelop.Core.Assemblies/TargetFrameworkBackend.cs:
	  Removed debug code.

2009-09-02  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/TargetFrameworkBackend.cs: Log
	  tool search paths.

2009-09-02  Carlo Kok  <ck@remobjects.com>

	* MonoDevelop.Core.Serialization/EnumDataType.cs: Use ignore-case
	  on enums so both "winexe" and "WinExe" work.
	
2009-08-27  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/DisposerFormatterSink.cs: The
	  WaitHandle.WaitOne(int) method was added in an SP, so it is
	  not available in all 3.5 frameworks.

2009-08-27  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core/LoggingService.cs:
	* MonoDevelop.Core.Logging/RemoteLogger.cs:
	* MonoDevelop.Core.Execution/ProcessHostController.cs:
	* MonoDevelop.Core.Execution/IProcessHostController.cs: Allow
	  routing log messages from external processes into the main
	  MD process.

2009-08-25  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/PcFileCache.cs: Don't try to
	  store custom data if a package is not valid.

2009-08-25  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/PcFileCache.cs: Another fix to
	  make it build with .net 2.0.

2009-08-24  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/PcFileCache.cs: Make it
	  buildable with .net 2.0.

2009-08-24  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.Assemblies/PcFileCache.cs:
	* MonoDevelop.Core.Assemblies/SystemPackage.cs:
	* MonoDevelop.Core.Assemblies/AssemblyContext.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/LibraryPcFileCache.cs:
	* MonoDevelop.Core.Assemblies/DirectoryAssemblyContext.cs:
	  Renamed some classes used by PcFileCache. Split PcFileCache
	  in two files, to make it easier to reuse in Mono.Addins.

2009-08-17  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs: Added an event
	  which is fired when the runtime has finished initializing.

	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs: Load
	  the user assembly context after the runtimes have been
	  initialized.

	* MonoDevelop.Core.Assemblies/DirectoryAssemblyContext.cs:
	  Don't update the packages until the current runtime has been
	  initialized. It is required to find the target framework of
	  the assemblies.

	* MonoDevelop.Core/Runtime.cs: Don't call shutdown here. The
	  Main method does it.

2009-08-17  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/SystemPackage.cs:
	* MonoDevelop.Core.Assemblies/AssemblyContext.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs:
	* MonoDevelop.Core.AddIns/PackageInstalledCondition.cs:
	* MonoDevelop.Core.Assemblies/DirectoryAssemblyContext.cs:
	  Added support for user-defined assembly paths. MD will look
	  for assemblies and .pc files in those paths.

2009-08-14  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/PcFileCache.cs: Typo.

2009-08-14  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/PcFileCache.cs: Store culture
	  info.

2009-08-13  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/PcFileCache.cs: Added method for
	  resolving non-full assembly names.

2009-08-13  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/AssemblyContext.cs: Make
	  GetAssemblyForVersion work properly again.

2009-08-13  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/PcFileCache.cs: Libraries list
	  is stored in 'Libraries', not 'libraries.

2009-08-13  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/AssemblyContext.cs:
	* MonoDevelop.Core.Assemblies/IAssemblyContext.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/MsNetTargetRuntime.cs:
	* MonoDevelop.Core.AddIns/PackageInstalledCondition.cs:
	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs:
	* MonoDevelop.Core.Assemblies/RuntimeAssemblyContext.cs:
	* MonoDevelop.Core.Assemblies/ComposedAssemblyContext.cs:
	* MonoDevelop.Core.Assemblies/DirectoryAssemblyContext.cs:
	  Moved all assembly and package query methods to a new
	  AssemblyContext class. TargetRuntime now has an instance of
	  that class.

2009-08-13  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/PcFileCache.cs: Use normalized
	  assembly names when storing assemblies in the assembly
	  dictionary.

2009-08-13  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/PcFileCache.cs:
	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/SystemPackage.cs:
	* MonoDevelop.Core.Assemblies/TargetFramework.cs:
	* MonoDevelop.Core.Assemblies/MonoRuntimeInfo.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs: Moved all
	  related to parsing .pc files to PcFileCache. This class is
	  now isolated from MD and can be reused for xbuild.

	* MonoDevelop.Core/Runtime.cs:
	* MonoDevelop.Core/FileService.cs: Added some counters.

2009-08-11  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs: Remove
	  duplicate pc file enumerating code.

2009-08-10  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies\TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies\MonoTargetRuntime.cs:
	* MonoDevelop.Core.Assemblies\MsNetTargetRuntime.cs: The
	  target framework is required to get the msbuild path.

	* MonoDevelop.Core\Runtime.cs: Made initialization code more
	  robust.

2009-08-06  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/Runtime.cs: Added configuration option for
	  enabling/disabling instrumentation.

2009-08-06  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core/Runtime.cs:
	* MonoDevelop.Core.Instrumentation:
	* MonoDevelop.Core.Instrumentation/Counter.cs:
	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Execution/ProcessService.cs:
	* MonoDevelop.Core.Instrumentation/MemoryProbe.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs:
	* MonoDevelop.Core.Execution/ProcessHostController.cs:
	* MonoDevelop.Core.Instrumentation/CounterCategory.cs:
	* MonoDevelop.Core.Instrumentation/InstrumentationService.cs:
	  Implemented basic instrumentation support.

2009-08-04  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.AddIns/PackageInstalledCondition.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	  Fix a race in the target runtime background initialization
	  that particularly affected machines with many cores and fast I/O.

2009-08-03  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks/framework_NET_3_0.xml:
	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/SystemPackage.cs:
	* MonoDevelop.Core.Assemblies/TargetFramework.cs:
	* MonoDevelop.Core.Assemblies/MonoFrameworkBackend.cs:
	* MonoDevelop.Core.Assemblies/MsNetFrameworkBackend.cs:
	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs:
	* MonoDevelop.Core.Assemblies/TargetFrameworkBackend.cs:
	  Changed a bit the object model to support the new assembly
	  organization of the 3.0 framework. WFC is not part of mono,
	  while there are other 3.0 assemblies provided by the olive
	  package.

2009-08-02  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/MonoRuntimeInfo.cs:
	  Improve PKG_CONFIG_LIBDIR/PKG_CONFIG_PATH consistency.
	  Should fix loading moonlight pc files.

2009-07-31  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs: When trying to
	  find newer versions of an assembly name, respect the fx
	  version as well as the package.

2009-07-31  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.Execution/IProcessHost.cs:
	* MonoDevelop.Core.Execution/ProcessService.cs:
	* MonoDevelop.Core.Execution/RemotingService.cs:
	* MonoDevelop.Core.Execution/RemoteProcessObject.cs:
	* MonoDevelop.Core.Execution/ProcessHostController.cs:
	* MonoDevelop.Core.Execution/DisposerFormatterSink.cs:
	* MonoDevelop.Core.Execution/IProcessHostController.cs:
	  Changed the way MD comunicates with external processes. Now
	  we are always using the IcpChannel, which is available in
	  Linux and Windows. Also improved the way remote objects are
	  disposed. A Dispose call on the object is now always
	  guaranteed to succeed, even if the remote process has
	  crashed.

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/MsNetTargetRuntime.cs: Added
	  ExecuteAssembly method, which runs an assembly using a
	  specific runtime environment. Also added MSBuildBinPath
	  property to get the msbuild bin path for the runtime.

2009-07-30  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ProcessService.cs:
	  RegisterRemotingChannel is now public.

	* MonoDevelop.Core.Assemblies/MonoFrameworkBackend.cs: Add
	  support for xbuild.

2009-07-28  Daniel Newton  <djpnewton@gmail.com>

	* MonoDevelop.Core.Execution/ProcessService.cs: Quoted temp
	  file argument in call to DotNetExecutionCommand.

2009-07-27  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs: In
	  GetAssemblyFullName, look for a matching name in the list of
	  assemblies of the provided framework. Only if that fails,
	  look for the assembly in the gac. It avoids returning
	  assemblies which belong to another framework.

	* MonoDevelop.Core.Assemblies/TargetFramework.cs: Implement
	  ToString.

2009-07-27  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.addin.xml: Change order of frameworks, to
	  give more priority to most recent frameworks.

	* MonoDevelop.Core.Assemblies/TargetFramework.cs:
	  SubsetOfFramework is not public, required by the MSBuild
	  handler.

2009-07-23  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks/framework_NET_4_0.xml:
	* MonoDevelop.Core.Assemblies/MonoFrameworkBackend.cs: Add
	  support for .NET 4.0 when targetting the mono runtime.

2009-07-22  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	  NormalizeAsmName is now public.

2009-07-21  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/MonoTargetRuntimeFactory.cs:
	  Don't explode when there isn't a Mono.framework directory.
	  Allows MD to work on machines that only have Mono from
	  source.

2009-07-22  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/PropertyBag.cs: Added null check.

2009-07-21  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs: Add
	  sanity check.

2009-07-21  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/DotNetExecutionCommand.cs:
	* MonoDevelop.Core.Execution/MonoPlatformExecutionHandler.cs:
	  Add support for custom runtime arguments in the
	  DotNetExecutionCommand.

2009-07-21  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/MonoRuntimeInfo.cs: Add the
	  libdata directory to the list of searched path so that
	  monodevelop behaves correctly on FreeBSD. Patch by Romain
	  Tartière.

2009-07-02  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.Execution/ProcessService.cs:
	* MonoDevelop.Core.Execution/IExecutionModeSet.cs:
	* MonoDevelop.Core.Execution/DefaultExecutionMode.cs:
	* MonoDevelop.Core.Execution/DefaultExecutionHandler.cs:
	* MonoDevelop.Core.Execution/DefaultExecutionHandlerFactory.cs:
	  Added method for getting the default execution mode. Made
	  the DefaultExecutionHandler class internal (use
	  Runtime.ProcessService.DefaultExecutionHandler instead).

	* MonoDevelop.Core.Serialization/XmlDataSerializer.cs: Added
	  overloads for serializing directly into a file.

	* MonoDevelop.Core/PropertyBag.cs: When deserializing an
	  object store it in replacement of the old xml data.

	* MonoDevelop.Core/PropertyService.cs: Use FilePath for paths.

2009-07-02  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ProcessWrapper.cs: Don't abort
	  the output and error capture threads when stopping the
	  process. The threads will stop by themselves when the
	  process exits. Aborting was especially problematic because
	  the output capture thread is in charge of calling OnExit, so
	  sometimes the thread was aborted before or while calling
	  that method. Fixes bug #463321 - stop button on Gtk# app
	  sometimes does not become disabled.

2009-07-01  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.addin.xml:
	* MonoDevelop.Core.Execution/ProcessService.cs:
	* MonoDevelop.Core.AddIns/ExecutionModeSetNode.cs: Added new
	  ModeSet extension node.

	* Makefile.am:
	* MonoDevelop.Core.csproj: Updated.

	* MonoDevelop.Core/PropertyBag.cs: Moved here from
	  MonoDevelop.Projects.

	* MonoDevelop.Core/FileService.cs: Added method for notifying
	  file removals.

2009-06-26  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ExternalConsoleLocator.cs: Make
	  sure gnome-terminal is spawned by MD and not by an existing
	  terminal process. Fixes bug #494575 - Launch-in-terminal
	  problem with gnome-terminal.

2009-06-17  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/XmlDataSerializer.cs: Added
	  overridables which allow changing the writer/reader to use
	  for child items.

2009-06-15  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/SystemAssembly.cs: Make assembly
	  name consistent with "normalized" names.

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs: Use
	  TargetFramework for assembly lookups. Prioritize framework
	  assemblies over GAC assemblies.

2009-06-15  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies\MsNetFrameworkBackend.cs: Fix
	  framework location path.

2009-06-11  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks:
	* Makefile.am:
	* frameworks.xml:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.addin.xml:
	* frameworks/framework_NET_2_0.xml:
	* frameworks/framework_NET_1_1.xml:
	* frameworks/framework_NET_3_0.xml:
	* frameworks/framework_NET_4_0.xml:
	* frameworks/framework_NET_3_5.xml:
	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/TargetFramework.cs:
	* MonoDevelop.Core.AddIns/TargetFrameworkNode.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/MsNetTargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/MonoFrameworkBackend.cs:
	* MonoDevelop.Core.Assemblies/MsNetFrameworkBackend.cs:
	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs:
	* MonoDevelop.Core.Assemblies/TargetFrameworkBackend.cs: Added
	  extensibility support for frameworks. Now add-ins can define
	  new frameworks and support for them for specific runtimes.

2009-06-10  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies\MsNetTargetRuntime.cs: Added sdk
	  tools path to the framework tools path.

2009-06-09  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.ProgressMonitoring\LogTextWriter.cs: New
	  override for TextWriter. Improves performance on Windows.

2009-06-09  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Properties:
	* MonoDevelop.Core.Properties/IXmlConvertable.cs:
	* MonoDevelop.Core.Properties/PropertyFileLoadException.cs:
	* MonoDevelop.Core.Properties/UnknownPropertyNodeException.cs:
	  Removed unused code.

2009-06-09  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/XmlDataSerializer.cs: Added
	  an option which allows storing all values as elements.

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs: Fix potential
	  infinite loop

2009-05-29  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution\ProcessService.cs: Fix crash on
	  Windows.

	* MonoDevelop.Core.Assemblies\TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies\MonoTargetRuntime.cs: In
	  GetToolPath, change some tool names depending on the target
	  framework.

	* MonoDevelop.Core\Runtime.cs: Use a special add-in repo for
	  windows.

2009-05-26  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/PropertyService.cs:
	* MonoDevelop.Core.Serialization/GenericCollectionHandler.cs:
	  Avoid throwing some exceptions using preventive checks.
	  Patch by Carlo Kok.

2009-05-20  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution\ProcessHostController.cs: Someti

	* MonoDevelop.Core.Assemblies\MsNetTargetRuntime.cs: Fixed
	  tools and assembly directories.

	* MonoDevelop.Core.Assemblies\TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies\MonoTargetRuntime.cs: Some
	  runtimes may require the target framework to get the tools
	  paths.

2009-05-19  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks.xml:
	* frameworks-source.xml:
	* MonoDevelop.Core\ClrVersion.cs:
	* MonoDevelop.Core.Assemblies\TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies\MsNetTargetRuntime.cs:
	* MonoDevelop.Core.Assemblies\SystemAssemblyService.cs: Added
	  support for .net 4.0.

2009-05-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/SystemAssembly.cs: If an
	  assembly has no token, don't add it.

2009-05-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/CollectionDataType.cs: Use
	  the correct item type when initializing custom data
	  serializers.

2009-05-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core\FileService.cs: Fix warning.

2009-05-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core\FileService.cs:
	* MonoDevelop.Core.Serialization\DataContext.cs:
	* MonoDevelop.Core.Serialization\PrimitiveDataType.cs: Use the
	  new FilePath class for handling file and directory paths.

	* MonoDevelop.Core\PropertyService.cs: Store IsWindows and
	  IsMac in readonly fields, which are faster than properties.

2009-05-13  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core\Properties.cs: Fix file saving issue.

2009-05-11  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core\Properties.cs:
	* MonoDevelop.Core\FileService.cs: Added method for doing
	  atomic renames. Use it when saving properties.

2009-05-06  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ProcessService.cs: Make suer
	  GetExecutionModes always reuses the IExecutionModeSet
	  instances. Added class for keeping execution mode handler
	  references.

	* MonoDevelop.Core.addin.xml: Don't add the default execution
	  handler as a special execution mode.

	* MonoDevelop.Core.Assemblies/MonoTargetRuntimeFactory.cs:
	  Automatically detect mono runtimes in some common install
	  locations.

	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs: Show the
	  prefix in the display name.

2009-05-05  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/MonoRuntimeInfo.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs: Add
	  MOONLIGHT_2_SDK_PATH env var for using a non-installed
	  Moonlight SDK.

2009-05-04  Michael Hutchinson  <mhutchinson@novell.com>

	* frameworks.xml: Add assembly version for System.Windows.dll
	  and System.Windows.Browser.dll.

2009-05-05  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.Assemblies/SystemPackage.cs:
	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs: When
	  parsing a .pc file, detect the target runtime of the package
	  and store it in the cache.

	* MonoDevelop.Core.Assemblies/PcFileCache.cs: Store a cache
	  version number in the cache file, so we can force a
	  regeneration if the format changes.

2009-05-04  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ProcessService.cs: Added property
	  for getting the default execution handler.

2009-05-04  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ProcessHostController.cs: Use the
	  execution handler from the running runtime to fork external
	  object processes.

	* MonoDevelop.Core.Execution/DotNetExecutionCommand.cs: Added
	  DebugMode property.

	* MonoDevelop.Core.Execution/ProcessService.cs: Never show the
	  console window when forking a process in Windows.

	* MonoDevelop.Core.Assemblies/MonoTargetRuntimeFactory.cs:
	  Properly detect mono frameworks in windows.

	* MonoDevelop.Core.Assemblies/MsNetTargetRuntime.cs:
	  Implemented GetToolsPaths.

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs: Added
	  TargetFramework argument to GetToolPath, since tools may
	  differ depending on the framework.

2009-04-30  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks.xml:
	* frameworks-source.xml: Removed some invalid assemblies.

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs: If something
	  goes wrong when getting an assembly name, just ignore the
	  assembly.

2009-04-30  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/ClassDataType.cs: When
	  looking for ItemPropertyAttribute on a member, use
	  inherit=false because if a base class already has an
	  ItemProperty applied to the member, then that member will
	  already have been added while copying props from the base
	  class.

2009-04-29  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks.xml:
	* frameworks-source.xml:
	* MonoDevelop.Core.Assemblies/SystemAssembly.cs:
	* MonoDevelop.Core.Assemblies/TargetFramework.cs:
	* MonoDevelop.Core.AddIns/PackageExtensionNode.cs:
	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs: The
	  frameworks.xml file now contains full assembly info. There
	  is no need to scan the frameworks assemblies anymore. Added
	  some code which can be used to update that file.

	* MonoDevelop.Core.Serialization/DataType.cs: Get a better
	  default element name for generic types.

	* MonoDevelop.Core.Serialization/DictionaryDataType.cs: Fix
	  bug in creation of dictionary type maps.

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.Assemblies/PcFileCache.cs:
	* MonoDevelop.Core.Assemblies/SystemPackage.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs: Added a
	  .pc file cache, to avoid having to scan all pc files every
	  time MD starts.

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs: Load framework
	  assembly data from the frameworks.xml file. The core package
	  for a framework now don't include assemblies from extended
	  frameowrks. Those assemblies will now be available from the
	  original packages.

2009-04-28  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs: If a .pc
	  file has a Libraries var, get the assemblies list from it
	  instead of taking it from "Libs".

2009-04-28  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Core/FileService.cs: Fixed wrong invalid chars.

2009-04-28  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Core/FileService.cs: Fixed "Bug 492716 - #
	  characters are not supported in path names in Preferences
	  dialog".

2009-04-27  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs: Added
	  public property for getting the install prefix.

	* MonoDevelop.Core.Assemblies/MonoRuntimeInfo.cs: Properly
	  expand vars when initializing the runtime environment.

2009-04-23  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/MonoTargetRuntimeFactory.cs:
	  Detect available runtimes on Mac.

2009-04-21  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core/PropertyService.cs: Add an IsMac property.

2009-04-21  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/MonoTargetRuntimeFactory.cs: Log
	  exception. Use new API for getting current runtime's info.

	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs: Remove all
	  code for detecting the current environment, since that now
	  comes in a MonoRuntimeInfo parameter object. Restore
	  GetToolsEnvironmentVariables overload.

	* MonoDevelop.Core.Assemblies/MonoRuntimeInfo.cs: Add code to
	  create a MonoRuntimeInfo for the current runtime, and unify
	  the pkg-config detection codepaths. Use PKG_CONFIG_LIBDIR to
	  ensure pkgconfig has the exact set of paths MD does.

2009-04-21  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks.xml: Remove invalid assemblies.

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.addin.xml:
	* MonoDevelop.Core.Assemblies/MsNetTargetRuntime.cs:
	* MonoDevelop.Core.Execution/MsNetExecutionHandler.cs:
	* MonoDevelop.Core.Assemblies/MsNetTargetRuntimeFactory.cs:
	* MonoDevelop.Core.Execution/NativePlatformExecutionHandler.cs:
	  Initial support for the MS.NET runtime.

	* MonoDevelop.Core.Assemblies/MonoTargetRuntimeFactory.cs:
	  Autodetect mono runtimes when running on windows.

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs: Don't use
	  an external process for locating assemblies from partial
	  names. Implemented the logic by looking at directories. Add
	  support for multiple gac paths.

	* MonoDevelop.Core.Assemblies/SystemAssembly.cs:
	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs: Added
	  GetAssemblyName method that works around a bug in
	  mono/windows (AssemblyName.GetAssemblyName is not case
	  insensitive).

	* MonoDevelop.Core/FileService.cs: Fixed file name and path
	  validation methods, so they work for Windows.

	* MonoDevelop.Core/PropertyService.cs: Added property for
	  checking if we are running on windows.

2009-04-20  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ProcessService.cs:
	* MonoDevelop.Core.Execution/ExecutionCommand.cs:
	* MonoDevelop.Core.Execution/IExecutionHandler.cs:
	* MonoDevelop.Core.Execution/ProcessHostController.cs:
	* MonoDevelop.Core.Execution/DotNetExecutionHandler.cs:
	* MonoDevelop.Core.Execution/DotNetExecutionCommand.cs:
	* MonoDevelop.Core.Execution/NativeExecutionCommand.cs:
	* MonoDevelop.Core.Execution/ProcessExecutionCommand.cs:
	* MonoDevelop.Core.Execution/MonoPlatformExecutionHandler.cs:
	* MonoDevelop.Core.Execution/NativePlatformExecutionHandler.cs:
	* MonoDevelop.Core.Execution/DefaultExecutionHandlerFactory.cs:
	  Changed the way IExecutionHandler works. It now takes an
	  ExecutionCommand as parameter. ExecutionCommand subclasses
	  contains all required data to execute a command.
	  IExecutionHandler can be specialized on specific subtypes of
	  ExecutionCommand.

	* MonoDevelop.Core.addin.xml:
	* MonoDevelop.Core.Execution/ExecutionMode.cs:
	* MonoDevelop.Core.Execution/IExecutionModeSet.cs:
	* MonoDevelop.Core.Assemblies/CustomRuntimeExecutionModeSet.cs:
	  Added support for IExecutionModeSet. It is a factory of
	  related execution modes. For example, debuggers or
	  profilers.

	* MonoDevelop.Core.Assemblies/MonoRuntimeInfo.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs:
	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntimeFactory.cs: Add
	  support for mono runtimes installed in prefixes other than
	  the current runtime.

	* Makefile.am:
	* MonoDevelop.Core.csproj: Added new Files.

2009-04-17  Jason Smith  <jassmith@gmail.com>

	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs: Add
	  runtimes to the runtime list during initialization.

2009-04-17  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs: Set the
	  pkgconfig environment more accurately for child processes
	  and tools.

	* MonoDevelop.Core.Assemblies/TargetRuntime.cs: Add a
	  GetToolsEnvironmentVariables method for setting up the
	  environment for tools with this runtime.

2009-04-16  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Assemblies: 

	* MonoDevelop.Core/TargetRuntime.cs:
	* MonoDevelop.Core/SystemPackage.cs:
	* MonoDevelop.Core/SystemAssembly.cs:
	* MonoDevelop.Core/TargetFramework.cs:
	* MonoDevelop.Core/MonoTargetRuntime.cs:
	* MonoDevelop.Core/SystemAssemblyService.cs:
	* MonoDevelop.Core/MonoTargetRuntimeFactory.cs: Moved
	  SystemAssemblyService and related classes to the namespace
	  MonoDevelop.Core.Assemblies.

2009-04-16  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.addin.xml:
	* MonoDevelop.Core.Assemblies:
	* MonoDevelop.Core/Runtime.cs:
	* MonoDevelop.Core.Assemblies/SystemPackage.cs:
	* MonoDevelop.Core.Assemblies/TargetRuntime.cs:
	* MonoDevelop.Core.Execution/ProcessService.cs:
	* MonoDevelop.Core.Assemblies/SystemAssembly.cs:
	* MonoDevelop.Core.Assemblies/TargetFramework.cs:
	* MonoDevelop.Core.AddIns/PackageExtensionNode.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntime.cs:
	* MonoDevelop.Core.AddIns/ITargetRuntimeFactory.cs:
	* MonoDevelop.Core.AddIns/PackageInstalledCondition.cs:
	* MonoDevelop.Core.Assemblies/SystemAssemblyService.cs:
	* MonoDevelop.Core.Assemblies/MonoTargetRuntimeFactory.cs:
	  Moved SystemAssemblyService and related classes to the
	  namespace MonoDevelop.Core.Assemblies.

2009-04-15  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelop.Core.addin.xml: Bump MD version.

2009-04-15  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* frameworks.xml:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.addin.xml:
	* MonoDevelop.Core/Runtime.cs:
	* MonoDevelop.Core/SystemPackage.cs:
	* MonoDevelop.Core/TargetRuntime.cs:
	* MonoDevelop.Core/SystemAssembly.cs:
	* MonoDevelop.Core/TargetFramework.cs:
	* MonoDevelop.Core/MonoTargetRuntime.cs:
	* MonoDevelop.Core/SystemAssemblyService.cs:
	* MonoDevelop.Core/MonoTargetRuntimeFactory.cs:
	* MonoDevelop.Core.AddIns/PackageExtensionNode.cs:
	* MonoDevelop.Core.AddIns/ITargetRuntimeFactory.cs:
	* MonoDevelop.Core.AddIns/PackageInstalledCondition.cs:
	  Initial support for multiple target runtimes.

	* MonoDevelop.Core.Execution/MonoPlatformExecutionHandler.cs:
	* MonoDevelop.Core.Execution/NativePlatformExecutionHandler.cs:
	  Allow specifying a default set of env vars to be defined
	  when creating a new process.

	* MonoDevelop.Core.Execution/ProcessService.cs: Allow
	  specifying the target runtime to use when creating an
	  external process object.

2009-03-22  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Core/ComponentModelLocalization.cs: Fixed
	  Header.

2009-03-19  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.ProgressMonitoring/SimpleProgressMonitor.cs:
	  Added new progress monitor which implements the most basic
	  progress tracking functionality.

2009-03-16  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Core/XmlReadHelper.cs: Improved error handing.

2009-03-04  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core.addin.xml:
	* MonoDevelop.Core.Execution/IExecutionMode.cs:
	* MonoDevelop.Core.Execution/ProcessService.cs:
	* MonoDevelop.Core.AddIns/ExecutionModeNode.cs:
	* MonoDevelop.Core.Execution/IExecutionHandler.cs:
	* MonoDevelop.Core.AddIns/ExecutionHandlerCodon.cs:
	* MonoDevelop.Core.Execution/ProcessHostController.cs:
	* MonoDevelop.Core.Execution/IExecutionHandlerFactory.cs:
	* MonoDevelop.Core.Execution/MonoPlatformExecutionHandler.cs:
	* MonoDevelop.Core.Execution/MintPlatformExecutionHandler.cs:
	* MonoDevelop.Core.Execution/DefaultExecutionHandlerFactory.cs:
	* MonoDevelop.Core.Execution/NativePlatformExecutionHandler.cs:
	  Changed the way execution handlers work. We are not using
	  platform ids anymore. Instead, we use command strings when
	  looking for execution handlers. IExecutionHandlerFactory has
	  been removed and now everything is handled by
	  IExecutionHandler, which has a new CanExecute method. This
	  model is more simple and more generic.

2009-02-27  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/SystemAssemblyService.cs: Fixed logic for
	  detecting gac packages. Don't consider a package a gac
	  package if it contains at least one assembly with an
	  absolute path outside the mono directory.

2009-02-26  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core/SystemAssemblyService.cs: In
	  GetAssemblyFromFullName, if package is null, prefer GAC
	  packages.

2009-02-26  Mike Krüger  <mkrueger@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.csproj:
	* MonoDevelop.Core/ComponentModelLocalization.cs: Worked on
	  propertygrid localization.

2009-02-25  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/ItemProperty.cs: An element
	  which only has the ctype (type name) attribute is now
	  considered empty when checking the SkipEmpty property.

2009-02-20  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core/SystemAssemblyService.cs: Add
	  Mac-compatible pkgconfig sniffing

2009-02-18  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Core/StringParserService.cs: fixed "Bug 456971 -
	  ${ProjectDir} Not updating for currently building project".

2009-02-17  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/SystemAssemblyService.cs: Added some logic
	  for automatically checking if a package is GACed or not.

2009-02-17  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks.xml: Added mscorlib to frameworks.
	  System.Deployment belongs to 2.0.

	* MonoDevelop.Core.Execution/ProcessService.cs:
	* MonoDevelop.Core.Execution/ProcessHostController.cs: Allow
	  specifying an execution handler when creating a remote
	  process object. Added method for explicitly disposing a
	  remote object with a timeout.

	* Makefile.am:
	* MonoDevelop.Core.csproj: Updated.

	* MonoDevelop.Core/SystemPackage.cs:
	* MonoDevelop.Core/SystemAssembly.cs:
	* MonoDevelop.Core/SystemAssemblyService.cs: Improved handling
	  of assemblies with the same version provided by different
	  packages. Added support for IsGacPackage flag.

2009-02-11  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/DataContext.cs: Added api for
	  getting the list of registered types.

2009-02-09  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Serialization/ClassDataType.cs:
	* MonoDevelop.Core.Serialization/DataSerializer.cs:
	* MonoDevelop.Core.Serialization/SerializationContext.cs: Add
	  a flag for including default values in the serialized
	  output. Doesn't include nulls.

2009-02-07  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.csproj: Don't treat warning as errors,
	  because csc still outputs warnings for this project.

2009-02-06  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.mdp:
	* MonoDevelop.Core.csproj: Migrated to MSBuild file format.

2009-02-05  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core/SystemAssemblyService.cs: Expose some
	  pkgconfig path information and helpers for non-.NET addins
	  to use.

2009-02-05  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.mdp:
	* MonoDevelop.Core.addin.xml:
	* MonoDevelop.Core.AddIns/PackageInstalledCondition.cs: Added
	  new condition types for checking if a package is installed.

2009-02-03  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelop.Core.addin.xml: Bump MD version.

2009-02-03  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks.xml: Put Mono.Cairo back to the core mono
	  package, since the runtime remaps that assembly version to
	  the running mscorlib version.

2009/01/30  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Serialization/XmlMapAttributeProvider.cs:
	  Add skipEmpty support to xml serialization maps.

2009-01-29  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/StringParserService.cs: Add support for formatting
	strings in tags.

2009-01-28  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks.xml: Remove Mono.Cairo from the framework since it has its
	own package.

2009-01-26  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.mdp: Flush project format changes.

2009-01-22  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/DataContext.cs:
	* MonoDevelop.Core.Serialization/ItemProperty.cs:
	* MonoDevelop.Core.Serialization/ClassDataType.cs:
	* MonoDevelop.Core.Serialization/ItemPropertyAttribute.cs: Added support
	for SkipEmpty in the serializer. When set to true for a property, if
	the element generated by the property is empty, it will not be
	serialized.

2009-01-21  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.addin.xml: Update copyright. Remove unnecessary
	assembly import.

2009-01-21  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core.Serialization/XmlDataSerializer.cs: Allow
	XmlDataSerializer to wrap an existing DataSerializer instead of
	creating one in the constructor.

2009-01-19  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.mdp:
	* MonoDevelop.Core.ProgressMonitoring/AsyncOperation.cs: Added default
	implementation of IAsyncOperation

2009-01-16  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core/SystemAssemblyService.cs: Handle PKG_CONFIG_LIBDIR.
	If it's not set, sniff for the install prefixes of MD, Mono and
	pkg-config and the associated pkgconfig directories.

2009-01-08  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/SystemAssemblyService.cs: In GetAssemblyLocation,
	added fast path for mscorlib.

2009-01-02  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/FileService.cs: Fix logic for IsInvalidFileName.

2008-12-30  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/DataContext.cs: Allow registering new
	properties which are not external.

2008-12-24  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.mdp: Updated.

	* MonoDevelop.Core/FileService.cs: Added method for checking validity of
	paths.

2008-12-12  Lluis Sanchez Gual  <lluis@novell.com>

	* frameworks.xml: Add missing lib.

	* Makefile.am:
	* MonoDevelop.Core.mdp:
	* MonoDevelop.Core/PropertyService.cs:
	* MonoDevelop.Core/SystemAssemblyService.cs:
	* MonoDevelop.Core.ProgressMonitoring/NullAsyncOperation.cs: No more
	warnings.

2008-12-11  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/SystemAssemblyService.cs: Added method for checking
	if an assembly is in the gac.

2008-12-11  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/SystemAssemblyService.cs: Nullref fixes.

2008-12-11  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* frameworks.xml:
	* MonoDevelop.Core.mdp:
	* MonoDevelop.Core/SystemPackage.cs:
	* MonoDevelop.Core/TargetFramework.cs:
	* MonoDevelop.Core/SystemAssemblyService.cs:
	* MonoDevelop.Core.AddIns/PackageExtensionNode.cs:
	* MonoDevelop.Core.Serialization/ISerializationAttributeProvider.cs:
	Implemented support for multiple frameworks in SystemAssemblyService.
	Until now it was supporting multiple CLRs, but this model did not fit
	very well with the Visual Studio model.

2008-12-09  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.mdp: Don't require a specific version of Mono.Addins.

2008-12-04  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/IAsyncOperation.cs:
	* MonoDevelop.Core.Execution/ProcessWrapper.cs:
	* MonoDevelop.Core.ProgressMonitoring/NullAsyncOperation.cs:
	* MonoDevelop.Core.ProgressMonitoring/NullProgressMonitor.cs:
	* MonoDevelop.Core.ProgressMonitoring/AggregatedProgressMonitor.cs:
	Implement new SuccessWithWarnings property.

2008-12-03  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am: Make it work for parallel builds.

	* MonoDevelop.Core/PropertyService.cs: Set the FirstRun flag when the
	properties file is not present.

2008-12-02  Michael Hutchinson  <mhutchinson@novell.com>

	* Makefile.am:
	* MonoDevelop.Core.mdp: Fix Makefile integration for AssemblyInfo.cs
	files.

2008-12-02  Michael Hutchinson  <mhutchinson@novell.com>

	* Makefile.am:
	* AssemblyInfo.cs:
	* AssemblyInfo.cs.in:
	* MonoDevelop.Core.mdp: Add AssemblyInfo.cs files that are autogenerated
	from the addin manifests.

2008-11-21  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core/Properties.cs: Copy properties file to backup when
	saving it. Restore the backup if the save fails.

	* MonoDevelop.Core/PropertyService.cs: Catch and report errors when
	loading config file, and fall back to trying previous settings file.
	Prevents MD crash.

	Should fix Bug 442567 - Crash at shutdown lost all setting.

2008-11-21  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Core/Gettext.cs: Fix some obsoletion warnings by using
	Mono.Unix.Catalog instead of Mono.Posix.Catalog.

2008-11-10  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ProcessHostController.cs: Windows doesn't
	like single quotes when specifying arguments to a process.

2008-11-05  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.addin.xml: Bump MD version.

2008-10-28  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ProcessWrapper.cs: Fix bug 436200 - Crash
	when stopping a process execution.

2008-10-22  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Serialization/GenericCollectionHandler.cs: Added
	protection against multiple Add methods in a class.

2008-10-02  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core.mdp, Makefile.am,
	  MonoDevelop.Core/GettextCatalog.cs, MonoDevelop.Core/Gettext.cs:
	  Replaced GettextCatalog.

2008-10-02  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core.AddIns/ServiceExtensionNode.cs,
	  MonoDevelop.Core.Execution/ProcessService.cs,
	  MonoDevelop.Core.addin.xml, MonoDevelop.Core.mdp, Makefile.am,
	  MonoDevelop.Core/Runtime.cs, MonoDevelop.Core/AbstractService.cs,
	  MonoDevelop.Core/ServiceManager.cs,
	  MonoDevelop.Core/SystemAssemblyService.cs,
	  MonoDevelop.Core/IService.cs: Remove service APIs.

2008-09-16  Mike Kestner <mkestner@novell.com> 

	* MonoDevelop.Core.Execution/ProcessWrapper.cs: null check to avoid
	NREs.  Fixes #418650.

2008-09-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Serialization/XmlMapAttributeProvider.cs: Allow
	  chaining several serialization maps for a type.

2008-09-12  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Collections/ReadOnlyDictionary.cs,
	  MonoDevelop.Core.mdp, Makefile.am: Implemented new
	  ReadOnlyDictionary class.

2008-09-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Collections/Set.cs: The Add method now returns true
	  if the item was not already present. False otherwise.

2008-09-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Collections, MonoDevelop.Core.Collections/Set.cs,
	  MonoDevelop.Core.mdp, Makefile.am: Added Set collection.

2008-08-28  Levi Bard <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* MonoDevelop.Core.Execution/ExternalConsoleLocator.cs: Fix xterm launch string.

2008-08-19  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Serialization/ClassDataType.cs: Add missing null
	  check.

2008-08-19  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Serialization/ClassDataType.cs: When deserializing
	  nested properties, make sure the nesting element is not added as
	  unknown element unless it actually contains unknown properties.
	  Fixes bug #403847.

2008-08-13  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core/XmlReadHelper.cs: Add stack trace to error message,
	  replace a 'goto', and fix bug that skipped nodes with same name as
	  start node.

2008-07-30  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core/SystemAssemblyService.cs: Catched possible
	  exception.

2008-07-22  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core.Execution/ProcessWrapper.cs,
	  MonoDevelop.Core.Execution/ProcessService.cs: Work around Mono bug
	  410743 - "wapi leak in System.Diagnostic.Process". Fixes "Bug
	  410740 - ProcessWrapper leaks wapi handles".

2008-07-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Serialization/DataContext.cs,
	  MonoDevelop.Core.Serialization/ISerializationAttributeProvider.cs,
	  MonoDevelop.Core.Serialization/XmlMapAttributeProvider.cs: Moved
	  serialization engine to MonoDevelop.Core. Use new syntax for
	  specifying attribute scope.

2008-07-21  Lluis Sanchez Gual <lluis@novell.com> 

	* Makefile.am, MonoDevelop.Core.Serialization,
	  MonoDevelop.Core.Serialization/DataType.cs,
	  MonoDevelop.Core.Serialization/ArrayHandler.cs,
	  MonoDevelop.Core.Serialization/DataContext.cs,
	  MonoDevelop.Core.Serialization/TypeAttributeProvider.cs,
	  MonoDevelop.Core.Serialization/IExtendedDataItem.cs,
	  MonoDevelop.Core.Serialization/SerializationContext.cs,
	  MonoDevelop.Core.Serialization/ISerializationAttributeProvider.cs,
	  MonoDevelop.Core.Serialization/DataCollection.cs,
	  MonoDevelop.Core.Serialization/ItemPropertyAttribute.cs,
	  MonoDevelop.Core.Serialization/DataItem.cs,
	  MonoDevelop.Core.Serialization/ICustomDataItemHandler.cs,
	  MonoDevelop.Core.Serialization/XmlMapAttributeProvider.cs,
	  MonoDevelop.Core.Serialization/DataIncludeAttribute.cs,
	  MonoDevelop.Core.Serialization/DictionaryDataType.cs,
	  MonoDevelop.Core.Serialization/ClassDataType.cs,
	  MonoDevelop.Core.Serialization/ICollectionHandler.cs,
	  MonoDevelop.Core.Serialization/IPropertyFilter.cs,
	  MonoDevelop.Core.Serialization/ItemProperty.cs,
	  MonoDevelop.Core.Serialization/DataItemAttribute.cs,
	  MonoDevelop.Core.Serialization/DataNode.cs,
	  MonoDevelop.Core.Serialization/XmlDataSerializer.cs,
	  MonoDevelop.Core.Serialization/GenericCollectionHandler.cs,
	  MonoDevelop.Core.Serialization/CollectionDataType.cs,
	  MonoDevelop.Core.Serialization/ExpandedCollectionAttribute.cs,
	  MonoDevelop.Core.Serialization/EnumDataType.cs,
	  MonoDevelop.Core.Serialization/DataSerializer.cs,
	  MonoDevelop.Core.Serialization/PrimitiveDataType.cs,
	  MonoDevelop.Core.Serialization/XmlElementDataType.cs,
	  MonoDevelop.Core.Serialization/DataValue.cs,
	  MonoDevelop.Core.Serialization/ArrayListHandler.cs,
	  MonoDevelop.Core.mdp: Moved serializer to MD.Core.

2008-06-06  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core/Runtime.cs: Write application error messages to the
	  console.

2008-06-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.addin.xml: Bump MD version.

2008-06-03  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/ExecutionModeNode.cs,
	  MonoDevelop.Core.Execution/IExecutionMode.cs,
	  MonoDevelop.Core.Execution/DefaultExecutionHandlerFactory.cs,
	  MonoDevelop.Core.Execution/ProcessService.cs,
	  MonoDevelop.Core.Execution/ExecutionPlatform.cs, Makefile.am,
	  MonoDevelop.Core.addin.xml, MonoDevelop.Core.mdp: Implemented
	  IExecutionMode. And execution mode is basically an
	  IExecutionHandlerFactory with a name. There will be several
	  execution modes, such as Debug, Profile, etc.
	* MonoDevelop.Core.Execution/IExecutionHandlerFactory.cs: Added new
	  SupportsPlatform method for checking if a handler is supported for
	  a platform.
	* MonoDevelop.Core.Logging/ConsoleLogger.cs: Fix warning.

2008-05-28  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Execution/ProcessService.cs: If a process is
	  terminated by a signal, log the signal name. Fixes bug #368482.

2008-05-28  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Execution/IConsole.cs,
	  MonoDevelop.Core.Execution/ExternalConsoleFactory.cs: Added logging
	  support to IConsole.
	* MonoDevelop.Core.Execution/ProcessWrapper.cs: Fix locking.
	* MonoDevelop.Core.Execution/ProcessService.cs: Log the exit code if it
	  is not zero.

2008-05-28  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Execution/ProcessWrapper.cs,
	  MonoDevelop.Core.Execution/ProcessService.cs: Read output from
	  process by blocks, not by lines. Fixes bug 368479 - Delayed printf
	  from a gtk+ app in MD.

2008-05-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core/Properties.cs, MonoDevelop.Core/PropertyService.cs,
	  MonoDevelop.Core/SystemAssemblyService.cs: New project model
	  changes.

2008-04-29  Aaron Bockover  <abock@gnome.org>

	* MonoDevelop.Core.Execution/ProcessService.cs: Use the new 
	ExternalConsoleLocator instead of hardcoding xterm when running builds
	on an external console

	* MonoDevelop.Core.Execution/ExternalConsoleLocator.cs: First pass at
	reasonably resolving a working and preferred terminal for Linux users;
	currently only uses GNOME Terminal if running under GNOME, xterm otherwise;
	can be easily extended for Konsole, but it was acting strange when I tried,
	so someone else needs to do this if there's interest; also this is sort
	of a temporary measure in part until the external console stuff can be
	properly moved into the platform service layer so it'll work on Windows
	and OS X along with various Linux/DE flavors

	* Makefile.am:
	* MonoDevelop.Core.mdp: Updated build with new file

2008-03-05  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core.Logging/ConsoleCrayon.cs,
	  MonoDevelop.Core.Logging/ConsoleLogger.cs, Makefile.am,
	  MonoDevelop.Core.mdp, MonoDevelop.Core/LoggingService.cs: Enable console
	  logging in colour by default. Thanks to Aaron Bockover for the
	  ConsoleCrayon workaround -- we now "manually" handle emitting console
	  colour codes on Mono, because its terminfo driver can leave the console
	  unusable if the app crashes.

2008-02-20  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core/SystemAssemblyService.cs: Don't install packages provided
	  by add-ins that already exist in the system.

2008-02-18  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.ProgressMonitoring/ConsoleProgressStatus.cs: Allow
	  specifying the log level.

2008-02-15  Geoff Norton  <gnorton@novell.com>

	* MonoDevelop.Core/Runtime.cs: Only pinvoke libc on unix.

2008-02-15  Geoff Norton  <gnorton@novell.com>

	* MonoDevelop.Core.Execution/ProcessService.cs: Disable .NET remoting 
	security on the TCP channel.

2008-02-15  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core/Properties.cs: Improve performance of Get method.

2008-02-07  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core.Execution/ProcessWrapper.cs: Add a WaitForOutput overload
	  with a time limit.

2008-02-04  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core/Runtime.cs: Use MD's config directory for addin engine
	  too. More cross-platform safe, and ensures that they're always the same
	  directory (previously, unusual combinations of environment variables
	  could cause them to differ).
	* MonoDevelop.Core/PropertyService.cs: Make config directory more
	  cross-platform safe.

2008-01-25  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.addin.xml: Update MD version.

2008-01-24  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core/GettextCatalog.cs: Fix logic that determines the location
	  of locale directory.

2008-01-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core/FileService.cs: Make NotifyFileChanged safer against
	  exceptions.

2008-01-18  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.ProgressMonitoring/NullProgressMonitor.cs: Added new
	  override.
	* MonoDevelop.Core/Runtime.cs: Use a version specific default MD add-in
	  repo.

2008-01-17  Michael Hutchinson  <mhutchinson@novell.com> 

	* MonoDevelop.Core.Execution/ProcessHostController.cs:
	  If MD is running in debug mode (i.e. stack traces have line numbers)
	  then the process hosting RemoteProcessObjects should be in debug 
	  mode too. Also, remove an "sh" call to improve portability.

2008-01-17  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core/Runtime.cs: Get add-ins from a version specific
	  repository.

2008-01-16  Michael Hutchinson <mhutchinson@novell.com> 

	* Makefile.am, MonoDevelop.Core.mdp, MonoDevelop.Core/GettextCatalog.cs,
	  MonoDevelop.Core/GettextCatalog.cs.in: Make Gettext catalogue path
	  relative to MD rather than hardcoding the prefix set at build time.

2007-12-13  Lluis Sanchez Gual <lluis@novell.com> 

	* Makefile.am, MonoDevelop.Core.addin.xml, MonoDevelop.Core.mdp,
	  MonoDevelop.Core/Runtime.cs, MonoDevelop.Core/DesktopApplication.cs,
	  MonoDevelop.Core/PlatformService.cs: Moved PlatformService to
	  MD.Core.Gui. Removed old FileIconService class, which is now implemented
	  in PlatformService.

2007-12-13  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Execution/ProcessService.cs: Fix warning.
	* MonoDevelop.Core.mdp: Updated.

2007-12-13  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core/SystemAssemblyService.cs: Catch exceptions thrown by
	  ParsePCFile. Fixes bug #346295.

2007-12-12  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.addin.xml: Bump add-in versions.

2007-12-12  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core/SystemAssemblyService.cs: Catch exception when pkg-config
	  can't be executed. Catch top-level unhandled exceptions in background
	  initialisation thread to stop MD dying on Mono 1.2.6.
	* MonoDevelop.Core/LoggingService.cs: Add some newlines to the log messages
	  when an exception is being logged, to improve readability.

2007-12-12  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/PackageExtensionNode.cs,
	  MonoDevelop.Core.AddIns/ServiceExtensionNode.cs,
	  MonoDevelop.Core.AddIns/ExecutionHandlerCodon.cs,
	  MonoDevelop.Core.Execution/ProcessService.cs,
	  MonoDevelop.Core.FileSystem/DefaultFileSystemExtension.cs,
	  MonoDevelop.Core.addin.xml: API cleanup.

2007-12-07  Geoff Norton  <gnorton@novell.com>

	* MonoDevelop.Core/PlatformService.cs: Add fallback mime-type support
	for ChangeLogs.

2007-12-06  Geoff Norton  <gnorton@novell.com>

	* MonoDevelop.Core/PlatformService.cs: New service to hand off the
	  platform specific operations to platform-specific addins.  Operations
	  such as Mime, Font, DefaultApplication and Icons (anything that
	  touches Gnome) is abstracted for now.
	* MonoDevelop.Core/Runtime.cs: Expose a static PlatformService to the
	  system.
	* MonoDevelop.Core/DesktopApplication.cs: Move this from
	  MonoDevelop.Core.Gui as it needs to be available from
	  PlatformService.cs.  Refactor the actual commands that get the
	  applications into the PlatformService
	* Makefile.am: Add PlatformService.cs and DesktopApplication.cs to 
	  the build.
	* MonoDevelop.Core.addin.xml: Register a new ExtensoinPoint for the
	  PlatformService

2007-12-04  Lluis Sanchez Gual <lluis@novell.com> 

	* Makefile.am, MonoDevelop.Core.mdp: Directory reorganization.

2007-12-01  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.ProgressMonitoring/ConsoleProgressMonitor.cs: Added
	  property to disable message logging.

2007-11-22  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core/SystemAssemblyService.cs: Update SupportedVersions
	  depending on which ClrVersions were registered successfully.

2007-11-21  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core/ClrVersion.cs, MonoDevelop.Core/SystemAssemblyService.cs:
	  Add the 2.1 profile.

2007-11-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/PackageExtensionNode.cs,
	  MonoDevelop.Core.AddIns/AssemblyExtensionNode.cs,
	  MonoDevelop.Core.AddIns/ServiceExtensionNode.cs,
	  MonoDevelop.Core.AddIns/ApplicationExtensionNode.cs,
	  MonoDevelop.Core.Execution/ProcessService.cs,
	  MonoDevelop.Core.ProgressMonitoring/ConsoleProgressStatus.cs,
	  MonoDevelop.Core.FileSystem/FileSystemExtension.cs,
	  MonoDevelop.Core.FileSystem/DefaultFileSystemExtension.cs,
	  MonoDevelop.Core/DefaultAddinLocalizer.cs,
	  MonoDevelop.Core/FileService.cs,
	  MonoDevelop.Core/SystemAssemblyService.cs,
	  MonoDevelop.Core/IAsyncOperation.cs: Added missing license headers.
	* MonoDevelop.Core.Utils.DirectoryArchive,
	  MonoDevelop.Core.Utils.DirectoryArchive/TarDecompressor.cs,
	  MonoDevelop.Core.Utils.DirectoryArchive/GzSupport.cs,
	  MonoDevelop.Core.Utils.DirectoryArchive/Decompressor.cs,
	  MonoDevelop.Core.Utils.DirectoryArchive/ZipDecompressor.cs,
	  MonoDevelop.Core.Utils.DirectoryArchive/Bz2Support.cs,
	  MonoDevelop.Core.mdp, MonoDevelop.Core.Utils.ReportingStream,
	  MonoDevelop.Core.Utils.ReportingStream/ReportingStream.cs, Makefile.am:
	  Removed unused classes.

2007-11-20  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core.Execution/ProcessService.cs: Add API to allow global
	  override of environment variables on processes launched from
	  MonoDevelop. Part of fix for "Bug 342965 - When running my program from
	  monodevelop (F5) MONO_MANAGED_WATCHER is enabled".
	* MonoDevelop.Core/Runtime.cs: Convert a writeline to a log message.

2007-11-17  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.mdp, Makefile.am, MonoDevelop.Core/Runtime.cs,
	  MonoDevelop.Core/DefaultAddinLocalizer.cs: Set the default localizer for
	  add-ins.

2007-11-16  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core.Logging/LogLevel.cs: EnabledLoggingLevel.All should be
	  equivalent to UpToDebug, not UpToInfo.

2007-11-13  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core.Logging/FileLogger.cs,
	  MonoDevelop.Core.Logging/ConsoleLogger.cs,
	  MonoDevelop.Core.Logging/ILogger.cs: Track LogLevel changes.
	* MonoDevelop.Core.Logging/LogLevel.cs: Split LogLevel enum's two uses --
	  flags for enabled logging levels, and mutually exclusive values for
	  message severity -- into two compatible enums.
	* MonoDevelop.Core/LoggingService.cs: Disable coloured console output by
	  default due to weird issues when Mono doesn't shut down cleanly.
	  Spelling correction for RemoveLogger. Track LogLevel changes.

2007-11-12  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core/Runtime.cs: Add new SetProcessName method.

2007-11-11  Michael Hutchinson  <mhutchinson@novell.com> 

	* MonoDevelop.Core.Logging/ConsoleLogger.cs: Fix logic that checks 
	  whether console text colouring is possible.

2007-11-09  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core.Execution/ProcessWrapper.cs,
	  MonoDevelop.Core.Execution/ProcessHostController.cs,
	  MonoDevelop.Core/ServiceManager.cs, MonoDevelop.Core/XmlReadHelper.cs,
	  MonoDevelop.Core/Properties.cs: Track LoggingService API changes.
	* MonoDevelop.Core.mdp, Makefile.am: Updated..
	* MonoDevelop.Core.Logging/FileLogger.cs,
	  MonoDevelop.Core.Logging/ConsoleLogger.cs,
	  MonoDevelop.Core.Logging/ILogger.cs,
	  MonoDevelop.Core.Logging/LogLevel.cs,
	  MonoDevelop.Core/LoggingService.cs: Rewrite logging service as a MIT/X11
	  static class.
	* MonoDevelop.Core/DefaultLoggingService.cs,
	  MonoDevelop.Core/ILoggingService.cs, MonoDevelop.Core/Runtime.cs: Remove
	  old logging service.

2007-10-29  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.addin.xml: Bump MD version.

2007-10-23  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.mdp: Project file names updated by change in MD path
	  functions.

2007-10-16  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core/FileService.cs: Found a better solution for the "." case
	  in abs2rel path.

2007-10-15  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core/FileService.cs: AbsoluteToRelativePath gives back . if
	  the paths are the same.

2007-10-12  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core.FileSystem/DefaultFileSystemExtension.cs,
	  MonoDevelop.Core/Runtime.cs, MonoDevelop.Core/FileEventArgs.cs,
	  MonoDevelop.Core/FileService.cs: Rewrote/Refactored FileService (it's
	  now under MIT), removed some unneccessary/unused methods.

2007-10-11  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core/StringParserService.cs: Renamed some variables in the
	  stringparser service.

2007-10-11  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core/Runtime.cs, MonoDevelop.Core/ServiceManager.cs,
	  MonoDevelop.Core/StringParserService.cs: StringParserService is now a
	  singleton and re-wrote under MIT.

2007-10-03  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core.Execution/NativePlatformExecutionHandler.cs,
	  MonoDevelop.Core.Execution/MintPlatformExecutionHandler.cs,
	  MonoDevelop.Core.Execution/MonoPlatformExecutionHandler.cs,
	  MonoDevelop.Core.Execution/IExecutionHandler.cs: Allow setting
	  environment variables when processes via an IExecutionHandler.
	* MonoDevelop.Core.Execution/ProcessService.cs: Allow setting environment
	  variables when starting console processes.

2007-09-26  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.mdp: Fix warning level.
	* MonoDevelop.Core/Properties.cs: When getting the value of a property, if
	  it is a LazyXmlDeserializer, deserialize it and store the deserialized
	  value in the internal dictionary. In this way the next time the property
	  is requested, the same object will be returned, insted of deserializing
	  the data every time.

2007-09-25  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core/PropertyService.cs: In SaveProperties, create the
	  configuration path if it doesn't exist.

2007-09-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.addin.xml: Bump MD version.

2007-09-14  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core/XmlReadHelper.cs: Fixed XmlReadHelper behavior - starting
	  nodes are only read once.

2007-09-14  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core/XmlReadHelper.cs: XmlReadHelper - already read starting
	  node message is now more verbose.

2007-09-12  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core.Execution/ProcessService.cs: Escape arguments to xterm
	  external console. Set xterm title so it doesn't display the 'internal'
	  commands.

2007-09-10  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/PackageExtensionNode.cs,
	  MonoDevelop.Core/SystemAssemblyService.cs: Don't use the extension node
	  Id to identify packages because that Id must be unique, but there can be
	  several packages with the same name but different version.

2007-09-07  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core/XmlReadHelper.cs, MonoDevelop.Core/Properties.cs: Removed
	  some debug code.

2007-09-07   <> 

	* MonoDevelop.Core/Properties.cs, MonoDevelop.Core/XmlReadHelper.cs: Fixed
	  bug in properties. Made XmlReadHelper more verbose on some possible
	  errors.

2007-09-07  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Core/DefaultLoggingService.cs: Change default log level to
	  "WARN". Verbosity doesn't increase substantially, and the warning
	  messages do generally indicate a problem.

2007-09-06  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core/Properties.cs, MonoDevelop.Core/XmlReadHelper.cs: It's
	  now possible to specifiy more than one possible end node in the
	  XmlReadHelper class. 
	
	  The Properties class now generates root node called "Serialized"
	  (Properties.SerializedNode) for the custom xml serialized documents -
	  they do not need to generate an own root node anymore (therefore saving
	  some space).

2007-09-05  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core/Properties.cs, MonoDevelop.Core/ICustomXmlSerializer.cs:
	  Worked on property infrastructure - serialization can now be customized
	  using the ICustomXmlSerializer interface.

2007-09-04  Michael Hutchinson <MHutchinson@novell.com>

	* MonoDevelop.Core/Properties.cs: Fix compiler warnings. Note: one is 
	  clearly a typo, but the fix changes the logic.

2007-09-04  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core/XmlReadHelper.cs: Changed the XmlReadHelper behavior - it
	  now handles the case that the first node is equal to the closing tag
	  node.

2007-09-04   <> 

	* MonoDevelop.Core/Properties.cs: Changed the md property file format output
	  (no unknown node:Properties message anymore).

2007-08-31   <> 

	* MonoDevelop.Core.Properties/IXmlConvertable.cs,
	  MonoDevelop.Core.Properties/DefaultProperties.cs,
	  MonoDevelop.Core.Properties/PropertyEventArgs.cs,
	  MonoDevelop.Core.Properties/IProperties.cs,
	  MonoDevelop.Core.Properties/CharacterEncodings.cs,
	  MonoDevelop.Core/PropertyChangedEventArgs.cs,
	  MonoDevelop.Core/Runtime.cs, MonoDevelop.Core/AbstractService.cs,
	  MonoDevelop.Core/IStringTagProvider.cs,
	  MonoDevelop.Core/CharacterEncodings.cs,
	  MonoDevelop.Core/ServiceManager.cs, MonoDevelop.Core/XmlReadHelper.cs,
	  MonoDevelop.Core/Properties.cs, MonoDevelop.Core/FileService.cs,
	  MonoDevelop.Core/StringParserService.cs,
	  MonoDevelop.Core/PropertyService.cs, MonoDevelop.Core/IService.cs:
	  Rewrote property infrastructure. Faster (no XmlDom), smaller Xml (No
	  write back of defaultValues), easier to use (only one property class,
	  better to use interface).

2007-08-29   <> 

	* MonoDevelop.Core.Properties/DefaultProperties.cs: Fixed 82621: Crash while
	  building moon.mds.
	* MonoDevelop.Core.Properties/IProperties.cs: Fi

2007-08-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.ProgressMonitoring/ProgressTracker.cs: The Global work
	  may be known even if the last task has an unknown amount of work, so we
	  need to check all tasks.

2007-08-14  Ankit Jain  <jankit@novell.com>

	* MonoDevelop.Core.ProgressMonitoring/ConsoleProgressMonitor.cs
	(ReportError): Show exception also in the emitted message.

2007-08-09  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/IconCodon.cs: Moved to MD.Projects.Gui.
	* MonoDevelop.Core.Execution/ProcessService.cs, Makefile.am,
	  MonoDevelop.Core.addin.xml, MonoDevelop.Core.mdp,
	  MonoDevelop.Core/Runtime.cs, MonoDevelop.Core/ServiceManager.cs,
	  MonoDevelop.Core/FileService.cs: Reorganized the extension point
	  hierarchy. Embedded all add-in manifests as resources.

2007-08-07  Ankit Jain  <jankit@novell.com>

	* StringParserService.cs (Replace): Update to use TryGetValue with
	Dictionary objects, indexer throws for non-existant keys.

2007-07-25  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core/DefaultLoggingService.cs: Added some null checks.

2007-07-23  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Execution/ProcessWrapper.cs: Set the 'done' flag
	  before exiting WaitForOutput. It fixes a race that was the cause of
	  bug #82128.

2007-07-19  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.mdp: Updated.
	* MonoDevelop.Core/Runtime.cs: Use a local add-in registry when running
	  MD from the build directory.

2007-07-17  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Execution/ProcessHostController.cs,
	  MonoDevelop.Core/Runtime.cs: Use the logging service instead of the
	  console.

2007-07-05  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Execution/AddinDependencyAttribute.cs: Set the
	  correct namespace.

2007-07-05  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core.Properties/CharacterEncodings.cs,
	  MonoDevelop.Core/StringParserService.cs: Removed some commented out
	  code.

2007-07-05  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Core.Execution/ProcessService.cs,
	  MonoDevelop.Core.ProgressMonitoring/ProgressTracker.cs,
	  MonoDevelop.Core.ProgressMonitoring/AggregatedOperationMonitor.cs,
	  MonoDevelop.Core.ProgressMonitoring/LogTextWriter.cs,
	  MonoDevelop.Core.ProgressMonitoring/AggregatedProgressMonitor.cs,
	  MonoDevelop.Core.ProgressMonitoring/NullProgressMonitor.cs,
	  MonoDevelop.Core.Properties/DefaultProperties.cs,
	  MonoDevelop.Core.Properties/PropertyEventArgs.cs,
	  MonoDevelop.Core.Properties/IProperties.cs,
	  MonoDevelop.Core.Properties/CharacterEncodings.cs,
	  MonoDevelop.Core.mdp, MonoDevelop.Core/ServiceManager.cs,
	  MonoDevelop.Core/StringParserService.cs,
	  MonoDevelop.Core/SystemAssemblyService.cs: Refactored a bit.
	  Brought source code to .NET2 standards.

2007-07-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.ProgressMonitoring/ConsoleProgressStatus.cs: Track
	  api changes.

2007-07-02  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/SetupApp.cs, Makefile.am,
	  MonoDevelop.Core.addin.xml, MonoDevelop.Core.mdp: Removed
	  implementation of setup utility, moved to mdtool.

2007-07-02  Ben Motmans <ben.motmans@gmail.com>

	* MonoDevelop.Core.Execution/ProcessWrapper.cs,
	MonoDevelop.Core.Execution/IProcessAsyncOperation.cs:
	Added ProcessId property

2007-06-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Execution/ProcessService.cs: Added new overload for
	  StartProcess.

2007-06-20  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/PackageExtensionNode.cs,
	  MonoDevelop.Core/SystemPackage.cs,
	  MonoDevelop.Core/SystemAssemblyService.cs: Allow specifying the gac
	  root where assemblies from a package are installed.

2007-06-20  Mike Krüger <mkrueger@novell.com> 

	forget some ToStrings ()

2007-06-20  Mike Krüger <mkrueger@novell.com> 

	String parser service now has more tags: year,month,day, hour,minute,second.

2007-06-14  Ankit Jain  <jankit@novell.com>

	* MonoDevelop.Core/SystemAssemblyService.cs (GetAssemblyNameForVersion):
	Return fullname if its ClrVersion matches the target version.

2007-06-13  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core/SystemAssemblyService.cs: In GetAssemblyFullName,
	  use AssemblyName.GetAssemblyName if the provided name is a file.

2007-06-07  Ankit Jain  <jankit@novell.com>

	* MonoDevelop.Core/FileService.cs (NormalizeRelativePath): Moved from
	AutotoolsContext.cs to here.

2007-06-01  Ankit Jain  <jankit@novell.com>

	* MonoDevelop.Core/SystemAssemblyService.cs (assemblyFullNameToPath):
	Change type from Hashtable to Dictionary<string,string>.
	(GetAssemblyFullNames): New.

2007-05-28  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.ProgressMonitoring/FilteredProgressMonitor.cs,
	  Makefile.am, MonoDevelop.Core.mdp: Added new
	  FilteredProgressMonitor class, which can be used to filter out part
	  of the progress information provided by an operation.
	* MonoDevelop.Core/ServiceManager.cs: Fix warning.

2007-05-25  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Execution/RemoteProcessObject.cs,
	  MonoDevelop.Core.Execution/ProcessService.cs: Properly handle
	  add-in unload events.

2007-05-23  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core/FileService.cs: Added missing error message
	  parameter in DeleteFile.

2007-05-11  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.mdp: Copy mono.addins to target directory.

2007-05-09  Lluis Sanchez Gual <lluis@novell.com> 

	* Makefile.am, MonoDevelop.Core.mdp: Reference shared assemblies from
	  the correct location.

2007-05-07  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/IconCodon.cs: Updated description attributes.
	  Removed unused property.
	* MonoDevelop.Core.AddIns/SetupApp.cs, Makefile.am,
	  MonoDevelop.Core.addin.xml, MonoDevelop.Core.mdp: Implemented setup
	  tool using Mono.Addins.
	* MonoDevelop.Core.AddIns/ExecutionHandlerCodon.cs: Updated description
	  attributes.
	* MonoDevelop.Core.AddIns/ApplicationExtensionNode.cs: Read the class
	  name from the 'class' attribute, not from 'type'. Updated
	  documentation attributes.
	* MonoDevelop.Core/Runtime.cs: Register the main md repository by
	  default. Improved add-in error message.

2007-05-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/IconCodon.cs,
	  MonoDevelop.Core.AddIns/AssemblyExtensionNode.cs,
	  MonoDevelop.Core.AddIns/ApplicationExtensionNode.cs,
	  MonoDevelop.Core.AddIns/ExecutionHandlerCodon.cs,
	  MonoDevelop.Core.AddIns/PackageExtensionNode.cs,
	  MonoDevelop.Core.AddIns/ServiceExtensionNode.cs,
	  MonoDevelop.Core.Execution/ProcessService.cs,
	  MonoDevelop.Core.ProgressMonitoring/ConsoleProgressStatus.cs,
	  MonoDevelop.Core.addin.xml, MonoDevelop.Core.mdp, Makefile.am,
	  MonoDevelop.Core/Runtime.cs, MonoDevelop.Core/AbstractService.cs,
	  MonoDevelop.Core/GettextCatalog.cs.in,
	  MonoDevelop.Core/ServiceManager.cs,
	  MonoDevelop.Core/FileService.cs,
	  MonoDevelop.Core/SystemAssemblyService.cs,
	  MonoDevelop.Core/IService.cs: Migration to Mono.Addins.
	* MonoDevelop.Core.AddIns/*,
	  MonoDevelop.Core.AddIns.Setup/*: Removed many
	  classes now implemented in Mono.Addins.

2007-04-19  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.ProgressMonitoring/NullProgressMonitor.cs: Fix bug
	  in ReportWarning.
	* MonoDevelop.Core/FileService.cs: Added method for creating temporary
	  directories.

2007-04-07 Michael Hutchinson <m.j.hutchinson@gmail.com>

	* MonoDevelop.Core/SystemAssemblyService.cs: Avoid duplicating 
	  search paths which use relative components ("../").

2007-04-02  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/AssemblyExtensionNode.cs,
	  MonoDevelop.Core.AddIns/PackageExtensionNode.cs,
	  MonoDevelop.Core.addin.xml, MonoDevelop.Core.mdp, Makefile.am,
	  MonoDevelop.Core/SystemAssemblyService.cs: Added new extension
	  point for registering packages.

2007-02-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.addin.xml: Change add-in versions to 0.13.
	* Makefile.am: Flush.

2007-02-15  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/DefaultAddInTreeNode.cs: Avoid creating
	  unnecessary arraylists.
	* Makefile.am: Flush.

2007-02-15  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.mdp: Added missing files.

2007-02-15  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Execution/ProcessWrapper.cs: Improved protection
	  against exceptions.
	* MonoDevelop.Core.mdp, Makefile.am: Flush.

2007-02-09  Lluis Sanchez Gual <lluis@novell.com> 

	* Makefile.am, MonoDevelop.Core/SystemPackage.cs,
	  MonoDevelop.Core/SystemAssemblyService.cs: Added method for
	  registering new (add-in provided) packages.

2007-02-08  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.Execution/ProcessWrapper.cs: Make Cancel method safe
	  to exceptions.
	* MonoDevelop.Core.mdp, Makefile.am: Synchronized the Makefile and the
	  MD project.

2007-01-30  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/AddIn.cs,
	  MonoDevelop.Core.Properties/DefaultProperties.cs: Allow comments in
	  the loaded xml. Patch by atsushi@ximian.com (Atsushi Enomoto).
	  Fixes bug #80474.

2007-01-30  Ankit Jain  <jankit@novell.com>

	* MonoDevelop.Core/SystemAssemblyService.cs (GetPackage): New.
	(GetPackageFromPath): New.	

2007-01-22  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/AssemblyLoader.cs: Track changes in the Cecil
	  api.
	* MonoDevelop.Core/FileService.cs: Implemented GetFullPath method,
	  which works like Path.GetFullPath, but which works even in the path
	  doesn't exist.

2007-01-19  Marek Sieradzki  <marek.sieradzki@gmail.com>

	* MonoDevelop.Core.AddIns.Setup/SetupService.cs,
	  MonoDevelop.Core.AddIns.Setup/AddinPackage.cs,
	  MonoDevelop.Core/FileService.cs: Removed redundant String.Format ().

2007-01-18  Ankit Jain  <jankit@novell.com>

	* MonoDevelop.Core.Execution/ProcessService.cs (StartProcess): Add new
	overload that takes a ProcessStartInfo.
	(CreateProcessStartInfo): New.

2007-01-18  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core/FileService.cs: Fire events in the correct order
	  when renaming files and directories. Fixes bug #80470.

2007-01-15  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core/FileService.cs: Removed debug code.

2006-12-20  Ankit Jain  <jankit@novell.com>

	* MonoDevelop.Core.Execution/ProcessService.cs (StartProcess): Add a new
	overload with 'redirectStandardInput' param.

2006-12-17  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.FileSystem: Added missing files.

2006-12-17  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/AddIn.cs,
	  MonoDevelop.Core.AddIns.Setup/SetupService.cs: Track changes in
	  FileService API.
	* Makefile.am, MonoDevelop.Core/FileEventArgs.cs: Moved from
	  MonoDevelop.Core.Gui.
	* MonoDevelop.Core.addin.xml: Registered new extension point for file
	  system extensions.
	* MonoDevelop.Core.mdp: Updated.
	* MonoDevelop.Core/Runtime.cs: Added FileService.
	* MonoDevelop.Core/FileUtilityService.cs: Merged with FileService.
	* MonoDevelop.Core/ServiceManager.cs: Added null check.
	* MonoDevelop.Core/FileService.cs: Moved from MonoDevelop.Core.Gui and
	  added some new features. It is now possible to register extensions
	  which can hook into the file operations such as Copy or Move.

2006-12-11  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/AddInService.cs: In
	  RegisterExtensionItemListener, avoid firing duplicate events by
	  getting the list of tree items before registering the listener.
	* MonoDevelop.Core.mdp: Updated.

2006-09-12 Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* MonoDevelop.Core.AddIns/AddInService.cs: Added robustness for addin dir detection failure.
	* MonoDevelop.Core.Execution/MonoPlatformExecutionHandler.cs: Removed /bin/sh dependence.
	* MonoDevelop.Core.Execution/ProcessService.cs: Default to TCP IPC on win32.
	* MonoDevelop.Core/SystemAssemblyService.cs: Pathing and environment variable compatibility fixes.
	* MonoDevelop.Core.AddIns.Setup/SetupService.cs: Win32 URI workaround.

2006-09-12 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.AddIns.Setup/SetupService.cs: Don't crash if
	  a repository file can't be found.

2006-08-30 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.AddIns.Setup/SetupService.cs: Added support
	  for adding and removing add-in directories.
	* MonoDevelop.Core.addin.xml: Break back compatibility.
	* MonoDevelop.Core.AddIns.Setup/SystemConfiguration.cs: New file.
	* MonoDevelop.Core.mdp: Updated.
	* Makefile.am: Added new file.

2006-08-07 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core/StringParserService.cs: Use invariant culture
	  for case-insensitive variable checks. Fixes bug #78814.

2006-07-25  Michael Hutchinson <m.j.hutchinson@gmail.com> 

	* MonoDevelop.Core.Execution/RemoteProcessObject.cs:
	  Make Dispose() virtual so that derived classes can clean up too.

2006-07-25 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.Execution/ProcessHostController.cs:
	* MonoDevelop.Core.Execution/IProcessHost.cs:
	* MonoDevelop.Core.Execution/ProcessService.cs: Get the list
	  of add-ins required by a type, and load those add-ins into
	  the remote process before loading the type.
	
	* MonoDevelop.Core.ProgressMonitoring/AggregatedProgressMonitor.cs:
	  allow specifying slave monitors in the constructor.

2006-07-20 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.AddIns.Setup/SetupService.cs: store cached
	  repositories in the correct directory.

2006-07-17 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core/SystemAssemblyService.cs: The service now
	  stores package information in a SystemPackage class.
	* MonoDevelop.Core/SystemPackage.cs: New class.
	
	* MonoDevelop.Core.mdp: 
	* Makefile.am: Added new file.

2006-07-12 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core/SystemAssemblyService.cs: Added some missing
	  Initialize() calls.

2006-07-06 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core/SystemAssemblyService.cs: Some assembly names
	  include PublicKeyToken=null, some others do not (depending on
	  the origin of the name. SystemAssemblyService now normalizes
	  all names so there are no problems when different nane formats
	  are used.

2006-07-03 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/AddIn.cs: 
	* MonoDevelop.Core.AddIns/AbstractCodon.cs:
	  Added an Extension property to AbstractCodon, which
	  returns the extension point to which the codon is attached.
	* MonoDevelop.Core.mdp: Updated.
	
	* MonoDevelop.Core.AddIns.Setup/AddinSetupInfo.cs:
	* MonoDevelop.Core.AddIns.Setup/SetupService.cs:
	* MonoDevelop.Core.AddIns.Setup/AddinConfiguration.cs: Many improvements
	  in AddinConfiguration. Now it reads more information and can write
	  changes.
	  
	* MonoDevelop.Core.addin.xml: Updated version.

2006-06-15 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.AddIns/DefaultAddInTreeNode.cs:
	* MonoDevelop.Core.AddIns/IAddInTreeNode.cs: Added Build method,
	  which builds the tree node.
	  
	* MonoDevelop.Core.AddIns/DefaultAddInTree.cs:
	* MonoDevelop.Core.AddIns/AddInService.cs: Added new methods for
	  registering listeners on extension items. Listeners are notified
	  when new items are available in an extension, as a result of
	  loading new add-ins.
	  
	* MonoDevelop.Core.AddIns.Setup/SetupService.cs: When enabling an
	  add-in, make sure all required add-ins are also enabled. When disabling,
	  make sure all dependent add-ins are disabled.
	  
	* MonoDevelop.Core.Execution/ProcessService.cs: Use the new extension
	  listeners to read extensions.

2006-06-12 John Luke  <john.luke@gmail.com>

	* MonoDevelop.Core.AddIns/DefaultAddInTree.cs:
	* MonoDevelop.Core.Execution/ProcessService.cs:
	* MonoDevelop.Core.ProgressMonitoring/ConsoleProgressMonitor.cs:
	* MonoDevelop.Core/FileUtilityService.cs:
	* MonoDevelop.Core/PropertyService.cs:
	* MonoDevelop.Core/SystemAssemblyService.cs: use String.IsNullOrEmpty
	in a few places

2006-06-03 John Luke  <john.luke@gmail.com>

	* MonoDevelop.Core/FileUtilityService.cs: fix warning
	by using the non-obsolete Path.GetInvalidPathChars()
	instead of Path.InvalidPathChars
	
2006-06-02 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/SystemAssemblyService.cs: Added fast path for
	  LocateAssembly.

2006-05-31 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.AddIns.Setup/AddinInfo.cs:
	* MonoDevelop.Core.AddIns/AddIn.cs: Implemented support for optional
	  extensions in add-ins.
	  
	* MonoDevelop.Core.AddIns/AddInService.cs: Don't crash if pre-loading
	  of an add-in fails, just report the error. While resolving deps and
	  preloading add-ins, take into account disabled add-ins.
	  
	* MonoDevelop.Core.AddIns.Setup/AddinSystemConfiguration.cs:
	* MonoDevelop.Core.AddIns.Setup/SetupService.cs:
	* MonoDevelop.Core.AddIns.Setup/AddinSetupInfo.cs: Implement support
	  for enabling/disabling add-ins.
	  
	* MonoDevelop.Core.AddIns/DumpAddinInfoApp.cs:
	* MonoDevelop.Core.AddIns/AddInTreeSingleton.cs: Removed unused code.
	
	* MonoDevelop.Core/PropertyService.cs:
	* MonoDevelop.Core.AddIns.Setup/AddinPackage.cs: Fix warning.
	

2006-05-05 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.AddIns/AddInService.cs: Throw an UserException if
	  StartApplication can't find the provided application.
	  Implemented GetApplications().
	* MonoDevelop.Core.AddIns/AssemblyLoader.cs: Use GetAssemblyManifest
	  instead of GetAssembly to get the referenced assemblies, since it
	  is much faster.
	* MonoDevelop.Core.AddIns/CodonBuilder.cs: Use the new ChildCodonsAttribute
	  instead of CategoryAttribute.
	* MonoDevelop.Core.addin.xml: Added some descriptions.
	* MonoDevelop.Core.AddIns.Setup/SetupService.cs: When resolving dependencies,
	  if one of the unresolved dep is MonoDevelop.Core, just report that a
	  new MD version is required. Make ApplicationRecord implement
	  IApplicationInfo.

	* MonoDevelop.Core.mdp:
	* Makefile.am: Added ChildCodonsAttribute.cs.

2006-05-04 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.addin.xml: Updated versions.
	* MonoDevelop.Core.mdp: Updated.

2006-04-21 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core/SystemAssemblyService.cs: Implemented support for
	  2.0 assemblies.
	* MonoDevelop.Core/ClrVersion.cs: New enum which represents the target
	  runtime version.
	
	* MonoDevelop.Core.mdp:
	* Makefile.am: added ClrVersion.cs.

2006-04-07 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.addin.xml:
	* MonoDevelop.Core.AddIns/ClassCodon.cs
	* MonoDevelop.Core.AddIns/AbstractCodon.cs:
	* MonoDevelop.Core.AddIns/ExecutionHandlerCodon.cs:
	* MonoDevelop.Core.AddIns/IconCodon.cs: Added documentation.
	
	* MonoDevelop.Core.AddIns/IAddInTreeNode.cs: Add new
	  properties to be able to get more information about
	  an extension point.
	* MonoDevelop.Core.AddIns/AddIn.cs: When checking dependencies,
	  make sure the required version of an add-in is installed.
	  Read the new extension-nodes and description attributes for
	  extensions.
	* MonoDevelop.Core.AddIns/CodonFactory.cs: Added helper method.
	* MonoDevelop.Core.AddIns/DefaultAddInTree.cs: Add documentation
	  from extensions into the tree.
	* MonoDevelop.Core.AddIns/CodonBuilder.cs: Added some helper
	  methods for getting codon documentation.
	* MonoDevelop.Core.AddIns/DefaultAddInTreeNode.cs: Added properties
	  for storing extension point documentation.
	* MonoDevelop.Core.AddIns/DumpAddinInfoApp.cs: New command-line 
	  application which writes the extension tree in an xml file.
	  
	* MonoDevelop.Core.mdp:
	* Makefile.am: Updated.

2006-04-03 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.AddIns.Setup/SetupService.cs: Added
	  CheckInstalledAddin helper method.

2006-03-30 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.AddIns.Setup/AssemblyDependency.cs: Improve
	  dependency description.

2006-03-29 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/ProcessHostController.cs:
	* MonoDevelop.Core.Execution/ProcessService.cs: Support the
	  Unix channel for comunication with the host process.
	* MonoDevelop.Core/Runtime.cs: Added Shutdown method.

2006-03-29 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/AddInService.cs: Improved error message
	  for a know error.

2006-03-29 Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.Core/MonoDevelop.Core.addin.xml: Break backwards
	  compatibility.

2006-03-24 Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.Core.mdp: Updated.
	* Makefile.am: Use an unified format. Patch by Matze Braun.

	* MonoDevelop.Core.AddIns/AddInService.cs: When checking add-in
	  dependencies, check compatible versions if exact versions are
	  not found.
	* MonoDevelop.Core.addin.xml: Updated add-in version.

2006-03-24  Jacob Ilsø Christensen <jacobilsoe@gmail.com> 

	* MonoDevelop.Core.AddIns/AddInTreeSingleton.cs:
	* MonoDevelop.Core.AddIns.Setup/SetupService.cs:
	* MonoDevelop.Core/DefaultLoggingService.cs:
	* MonoDevelop.Core/FileUtilityService.cs:
	* MonoDevelop.Core/PropertyService.cs:
	Use AppDomain.CurrentDomain.BaseDirectory in case Assembly.GetEntryAssembly() is null.

2006-03-23 Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.Core/SystemAssemblyService.cs: Load the assembly
	  information in a background thread. Added FindInstalledAssembly
	  method.

2006-03-22 Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.Core.AddIns/AddIn.cs: Make GetType work for
	  System types.

2006-03-02 Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.Core.AddIns/AddInTreeSingleton.cs:
	* MonoDevelop.Core.AddIns/AddInService.cs:
	* MonoDevelop.Core.AddIns/DefaultAddInTree.cs:
	* MonoDevelop.Core.AddIns/AssemblyLoader.cs:
	  Made assembly load check optional. It will be enabled when
	  starting the main MD app, but not for tools.

2006-02-28  Jacob Ilsø Christensen <jacobilsoe@gmail.com> 

	* MonoDevelop.Core/GettextCatalog.cs.in: Added a string.Format
	version of GetPluralString.

2006-02-19  Andrés G. Aragoneses  <knocte@gmail.com>

        * MonoDevelop.Core/PropertyService.cs: fixed a typo in a 
	comment.

2006-02-16 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.AddIns/AddInService.cs: Made PreloadAddin
	public.
	* MonoDevelop.Core/Runtime.cs: Don't crash if Initialize
	is called more than once.
	
	* MonoDevelop.Core.mdp, Makefile.am: Updated.

2006-01-25  Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* MonoDevelop.Core.AddIns/AddInService.cs:
	* MonoDevelop.Core.AddIns.Setup/SetupService.cs:
	* MonoDevelop.Core.AddIns.Setup/AddinPackage.cs:
	Fixed spelling of add-in.

2006-01-23  Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* MonoDevelop.Core.AddIns/AddInService.cs: Added internationalization.

2006-01-22 Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.Core.AddIns/DefaultAddInTreeNode.cs: Added some
	null checks.
	* MonoDevelop.Core.Execution/RemoteProcessObject.cs: Made protected
	default constructor.
	* MonoDevelop.Core/FileUtilityService.cs: Removed unused enums and
	delegates.
	* MonoDevelop.Core/GettextCatalog.cs.in: Added private constructor.

2006-01-18 Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.Core.ProgressMonitoring/AggregatedProgressMonitor.cs:
	Don't try to cancel monitors that are already cancelled. Fixes
	bug #77100.
	* MonoDevelop.Core/Runtime.cs: Runtime is a static class.

2006-01-11 Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.Core/GettextCatalog.cs.in: Added some null checks.

2006-01-10 Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.Core.AddIns/DefaultAddInTreeNode.cs:
	* MonoDevelop.Core.AddIns/AddIn.cs: Implement support for InsertBefore.
	
	* MonoDevelop.Core.AddIns/AssemblyLoader.cs: When a specific version of an
	assembly is required and not found, use the currently loaded version.
	For example, it should fix the problem of loading an add-in that has been
	compiled with a different but compatible gtk version.
	
	* MonoDevelop.Core/UserException.cs: New exception type to be used for errors
	that are to be shown to the user.
	
	* MonoDevelop.Core/StringParserService.cs: Keep variable refereces intact if the
	variable has not been defined.
	
	* Makefile.am:
	* MonoDevelop.Core.mdp: Updated.

2005-12-01  Todd Berman  <tberman@off.net>

	* MonoDevelop.Core.AddIns.Setup/SetupService.cs: Make ReadObject
	return null if it encounters an error. This happens with 0 length
	files.

2005-11-29  David Makovský <yakeen@sannyas-on.net>

	* MonoDevelop.Core.AddIns.Setup/SetupService.cs:
	* MonoDevelop.Core/ServiceManager.cs: Make some strings translatable.
	* Monodevelop.Core/GettextCatalog.cs.in: use Mono.Unix instead of Mono.Posix which is depreceated

2005-11-25  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/AddIn.cs: Add support for "Assembly"
	dependencies. Removed unneeded error log message.
	
	* MonoDevelop.Core.AddIns.Setup/AddinInfo.cs:
	* MonoDevelop.Core.AddIns/AddInService.cs: Add support for "Assembly"
	dependencies.
	
	* MonoDevelop.Core.ProgressMonitoring/ConsoleProgressMonitor.cs:
	Improved formatting.
	
	* MonoDevelop.Core.AddIns.Setup/SetupService.cs: Generate an index page
	when building a repository.
	
	* Makefile.am:
	* MonoDevelop.Core.mdp: Added new files.

2005-11-18  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/AddIn.cs: 
	* MonoDevelop.Core.AddIns/DefaultAddInTree.cs:
	* MonoDevelop.Core.AddIns/DefaultAddInTreeNode.cs: Make sure that child
	nodes are added in the same order as in the xml file. In this way
	the topological sort used to merge the nodes is not needed, and the
	resulting order makes more sense.

2005-11-17  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core/PropertyService.cs:
	* MonoDevelop.Core/FileUtilityService.cs: Removed unused code.

2005-11-16  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.AddIns.Setup/SetupTool.cs: Unified install and rinstall
	commands. Added update and list-update. Added per command help.

2005-11-15  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.Execution/ProcessHostController.cs: 
	Always stop the process asyncrhonously, so the remote object has time
	to end the dispose call.
	* Makefile.am: Fixed the location of GettextCatalog.
	* MonoDevelop.Core/GettextCatalog.cs.in: Added GetString overload.

2005-11-14  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.Properties/DefaultProperties.cs: Properly store
	DateTime properties.

2005-11-10  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core/SystemAssemblyService.cs: Added method
	  for getting the full name of an assembly.

2005-11-09  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.AddIns.Setup/AddinSetupInfo.cs:
	* MonoDevelop.Core.AddIns.Setup/AddinDependency.cs:
	* MonoDevelop.Core.AddIns.Setup/SetupService.cs:
	* MonoDevelop.Core.AddIns.Setup/NativeDependency.cs:
	* MonoDevelop.Core.AddIns.Setup/PackageDependency.cs
	* MonoDevelop.Core.AddIns.Setup/AddinPackage.cs: Added support
	for installing add-ins in the user's home directory.
	
2005-11-04  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.AddIns.Setup/SetupTool.cs: Fix warning.

2005-10-28  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/AssemblyLoader.cs: Simplified the
	assembly loader check. The only conflictive situation is when
	trying to load two versions of gtk#. This can't happen with
	gtk# 2.4 and 2.6 since they are not side-by-side installable.

2005-10-20  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/AddIn.cs: the Import element may
	reference files as well as assemblies, so don't crash if
	the assembly attribute is missing.

2005-10-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.AddIns.Setup/RepositoryRecord.cs: Don't
	use DateTime.MinValue since the serializer may have trouble
	with it in some timezones

2005-10-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Gui.mdp: Added references.
	
	* MonoDevelop.Core.Properties/IProperties.cs:
	* MonoDevelop.Core.Properties/DefaultProperties.cs:
	Added GetProperty overloads for DateTime and TimeSpan.

	* MonoDevelop.Core.AddIns.Setup/RepositoryRecord.cs: Properly
	set repo name when it has been updated.
	
	* MonoDevelop.Core.AddIns.Setup/SetupService.cs: Several fixes
	in repository registration.
	
	* MonoDevelop.Core.AddIns.Setup/AddinInfo.cs: Generate better
	names for addin reference elements.
	
	* MonoDevelop.Core.AddIns.Setup/SetupTool.cs: Improved build
	package command.

2005-10-18  John Luke  <john.luke@gmail.com>

	* MonoDevelop.Core.AddIns/IAddInTree.cs:
	* MonoDevelop.Core.AddIns/DefaultAddInTree.cs:
	add TreeNodeExists (path) method
	
2005-10-17  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.Execution/MintPlatformExecutionHandler.cs:
	* MonoDevelop.Core.Execution/ProcessService.cs:
	* MonoDevelop.Core.Execution/MonoPlatformExecutionHandler.cs:
	Properly escape whitespaces in directory names. Fixes bug #76418.

2005-10-11  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.AddIns/AddIn.cs: In CreateObject(), use GetType(name)
	to find the class in the addin and all its dependencies.

2005-10-11  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Core.AddIns/AddInService.cs:
	* MonoDevelop.Core.AddIns/AddInCollection.cs:
	* MonoDevelop.Core.AddIns/AddIn.cs:
	* MonoDevelop.Core.addin.xml: Fixed addin header information.
	Use "id" attribuet instead of "name" to identify addins.
	
	* MonoDevelop.Core/IProgressMonitor.cs:
	* MonoDevelop.Core.ProgressMonitoring/ProgressTracker.cs:
	* MonoDevelop.Core.ProgressMonitoring/AggregatedProgressMonitor.cs:
	* MonoDevelop.Core.ProgressMonitoring/SynchronizedProgressMonitor.cs:
	Implemented BeginStepTask.
	
	* MonoDevelop.Core.ProgressMonitoring/ConsoleProgressMonitor.cs:
	Fixed indenting and wrapping of text.
	
	* MonoDevelop.Core.ProgressMonitoring/NullProgressMonitor.cs: Keep
	a list of error messages.
	
	* MonoDevelop.Core.AddIns.Setup/SetupTool.cs: Initial implementation
	of a command line setup tool.
	
	* Makefile.am: Added new files.
	
	* MonoDevelop.Core.AddIns.Setup/RepositoryRecord.cs:
	* MonoDevelop.Core.AddIns.Setup/AddinDependency.cs:
	* MonoDevelop.Core.AddIns.Setup/NativeDependency.cs:
	* MonoDevelop.Core.AddIns.Setup/PackageDependency.cs:
	* MonoDevelop.Core.AddIns.Setup/AddinPackage.cs:
	* MonoDevelop.Core.AddIns.Setup/AddinInfo.cs:
	* MonoDevelop.Core.AddIns.Setup/Package.cs:
	* MonoDevelop.Core.AddIns.Setup/NativePackage.cs:
	* MonoDevelop.Core.AddIns.Setup/AddinConfiguration.cs:
	* MonoDevelop.Core.AddIns.Setup/PackageCollection.cs:
	* MonoDevelop.Core.AddIns.Setup/SetupService.cs: Improved the process
	of resolving dependencies and installing/uninstalling addins.
	
2005-10-06  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.AddIns/ClassCodon.cs: Added Type property.
	* MonoDevelop.Core.AddIns/AddInService.cs: Added method for getting
	a codons list, not the items they build.

2005-10-04  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Core.AddIns/AddInTreeSingleton.cs: Created method
	InsertAddIn.
	* MonoDevelop.Core.AddIns/DefaultAddInTree.cs: The Core addin is now
	loaded like any other addin, so there is no need to load default
	codons and conditions here.
	* MonoDevelop.Core.Execution/ProcessService.cs: Lazily get ExecutionHandler
	information.
	* Makefile.am: Added files.
	* MonoDevelop.Core.addin.xml: Added application extension point.
	* MonoDevelop.Core/ServiceManager.cs: Added method for initializing
	the services for a given addin.
	* MonoDevelop.Core/Runtime.cs: Added AddInService and SetupService.
	
	* MonoDevelop.Core.Setup/*: New API for managing addins.

2005-09-28  Lluis Sanchez Gual  <lluis@novell.com>

	* Changed internal organization of files and namespaces.

2005-08-12  Lluis Sanchez Gual  <lluis@novell.com>

	* AddIns/Codons/AbstractCodon.cs: Make the ID attribute optional.
	In general, IDs are only needed when codons can be extended, or when
	the entity they represent requires an ID. There are some kind of codons
	which don't have any of those requirements, and the ID is not needed.
	
	* AddIns/AddIn.cs: Added method for getting a resource from an addin's
	asseblies.
	
	* AddIns/Codons/CodonFactory.cs:
	* AddIns/DefaultAddInTree.cs:
	* AddIns/Codons/DuplicateCodonException.cs: Improve error message.

2005-08-10  Ben Motmans  <ben.motmans@gmail.com>

	* MonoDevelop.Core.mdp: references update

2005-07-29  John Luke  <john.luke@gmail.com>

	* MonoDevelop.Core.mdp: add new files and references
	
2005-07-29  Lluis Sanchez Gual  <lluis@novell.com>

	* AddIns/AssemblyLoader.cs:
	* AddIns/DefaultAddInTree.cs:
	* AddIns/AddInTreeSingleton.cs: Added an assembly sanity check, which
	ensures that all addins reference the same assembly versions.

2005-07-22  John Luke  <john.luke@gmail.com>

	* AddIns/Addin.cs: remove unused variable warning
	
2005-07-18  Lluis Sanchez Gual  <lluis@novell.com> 

	* AddIns/AddInTreeSingleton.cs: Added a method that explicitely
	initializes the tree of addins, and which returns a list of load errors
	instead of throwing an exception if something fails.

2005-07-13  Lluis Sanchez Gual  <lluis@novell.com> 

	* AddIns/AddIn.cs:
	* AddIns/AddInTreeSingleton.cs:
	* AddIns/AddInCollection.cs:
	* AddIns/AddInLoadException.cs: Implemented some basic support for
	declaring addin dependencies.

2005-06-27  John Luke  <john.luke@gmail.com>

	* MonoDevelop.Core.mdp:
	* MonoDevelop.Core.mds: add project files

2005-06-01  Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* Services/IMessageService.cs: Added methods to ask a question
	with a cancel option.

2005-04-25  Lluis Sanchez Gual  <lluis@novell.com>

	* AddIns/AddIn.cs: Added GetType method.

2005-03-24  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (FILES): Move AssemblyInfo.cs ...
	(build_sources): ... here.

2005-02-20  John Luke  <john.luke@gmail.com>

	* Services/ServiceManager.cs:
	* Services/IMessageService.cs:
	* Services/AbstractService.cs:
	* Services/FileUtilityService.cs:
	* Services/IService.cs:
	* Makefile.am: remove System.Drawing stuff
	dont define:LINUX
	* Services/SaveErrorChooseDialog.cs:
	* Services/SaveErrorInformDialog.cs: remove SWF cruft

	* ./AddIns/Codons/CodonNameAttribute.cs
	* ./AddIns/PathAttribute.cs
	* ./AddIns/XmlMemberAttributeAttribute.cs
	* ./AddIns/Conditions/ConditionAttribute.cs
	* ./AddIns/XmlMemberArraryAttribute.cs: mark attributes sealed

2005-01-31  Todd Berman  <tberman@off.net>

	* AddIns/AddIn.cs: Remove usage of AddIn.xsd, it is a bad solution.
	* Makefile.am:
	* AddIn.xsd: Remove AddIn.xsd

2005-01-31  Lluis Sanchez Gual  <lluis@novell.com>

	* AddIn.xsd: Defined new codon for project formats.

2005-01-24  Lluis Sanchez Gual  <lluis@novell.com>

	* AddIns/AddIn.cs: Use IsDefined() to look for custom attributes. It's
	faster and uses less memory than GetCustomAttribute().

2005-01-11  Lluis Sanchez Gual  <lluis@novell.com>

	* AddIn.xsd: Added new codon type, and new condition.

2004-08-07  Todd Berman  <tberman@off.net>

	* AssemblyInfo.cs.in: Use new ASSEMBLY_VERSION variable.

2004-07-05  Todd Berman  <tberman@off.net>

	* Services/GettextCatalog.cs: removed
	* Services/GettextCatalog.cs.in: Added, this is a passthru to
	Mono.Posix.Catalog. We are using the .in so that the locale dir is
	specified properly.
	* Makefile.am: Add .cs.in rules to generate, etc.

2004-07-02  Todd Berman  <tberman@off.net>

	* Services/FileUtilityService.cs: remove some unneeded code, and
	fix a string.

2004-06-28  Todd Berman  <tberman@off.net>

	* AddIns/AddIn.cs: Add a C.WL so you dont get weird errors without
	some more info.
	* Makefile.am: fixup makefile so that if the AddIn.xsd changes, the
	assembly is rebuilt.

2004-06-23  Todd Berman  <tberman@off.net>

	* Services/ServiceManager.cs: protected ctor added.

2004-06-23  Todd Berman  <tberman@off.net>

	* Services/ServiceManager.cs: make GetService a static method, hide
	the instance everywhere.

2004-05-29  Vladimir Vukicevic  <vladimir@pobox.com>

	* Services/GettextCatalog.cs: fix marshalling issues and gettext

2004-05-26  Todd Berman  <tberman@sevenl.net>

	* Services/GettextCatalog.cs: oops, thats not what i wanted i guess.

2004-05-26  Todd Berman  <tberman@sevenl.net>

	* Services/GettextCatalog.cs: change to string marshaling to prevent
	leaks.

2004-04-04  Todd Berman  <tberman@sevenl.net>

	* AddIns/AddInTreeSingleton.cs: Change to .addin.xml to allow gettext

2004-04-02  Todd Berman  <tberman@sevenl.net>

	* Makefile.am: add GettextCatalog.cs.
	* Services/GettextCatalog.cs: move here so other libs can use easier.