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

ChangeLog « CSharpBinding « Extras - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 67d471726014a825720162e4032bed9ce6d82598 (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
2007-11-01  Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/Resolver.cs: Restore IsAsResolve logic. Is/as are used for
	  downcasting, so it only makes sense to return subclasses of the provided
	  type.

2007-10-29  Michael Hutchinson  <mhutchinson@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Don't try to look back past first 
	  char in buffer when checking whether to run completion code.

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

	* CSharpBinding.addin.xml: Bump MD version.

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

	* CSharpBinding.addin.xml: Track changes in the Icon extension node.

2007-10-26  Michael Hutchinson <mhutchinson@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Avoid calling
	  expressionFinder.FindExpression on every keystroke, as it calls
	  FilterComments, which is very expensive (recorded 6% in statistical
	  profiling, the most time spent in any managed non-runtime method). It's
	  only called when the keystroke is completable -- not ideal, but an
	  improvement.

2007-10-25  Michael Hutchinson <mhutchinson@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Removed GenerateDocComments' dependency
	  on indentEngine.

2007-10-25  Michael Hutchinson <mhutchinson@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Minor optimisation.

2007-10-25  Michael Hutchinson <mhutchinson@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Read context to end of line when
	  reindenting. Fixes "Bug 324985 - operator '::' behaves like goto label
	  in smart indentation".

2007-10-25  Michael Hutchinson <mhutchinson@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: If indent engine says line needs to be
	  reindented, check it's as a result of an inserted character rather than
	  just navigating around the code.

2007-10-25  Michael Hutchinson <mhutchinson@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Don't insert a tab if it's interpreted
	  as a reindent command.

2007-10-25  Lluis Sanchez Gual <lluis@novell.com> 

	* CSharpBindingCompilerManager.cs: Make compilation work when the key file
	  contains white spaces. Fixes bug #336107.

2007-10-25  Lluis Sanchez Gual <lluis@novell.com> 

	* CSharpBinding.mdp, icons/C#.File.EmptyFile, icons/C#.File.Form,
	  icons/C#.File.FullFile, icons/C#.File.NewClass, icons/C#.File.WebFile,
	  icons/C#.Project.FullProject, icons/C#.Project.ServiceProject,
	  icons/C#.Project.UserControl, icons/C#.Project.WebProject,
	  icons/C#.ProjectIcon, Makefile.am, templates/EmptyCSharpFile.xft.xml,
	  templates/GnomeSharpProgram.xft.xml: Use tango file icons. Removed
	  obsolete icons.

2007-10-24  Lluis Sanchez Gual <lluis@novell.com> 

	* CSharpBinding.mdp, templates/ConsoleProject.xpt.xml,
	  templates/GtkSharpProject.xpt.xml, templates/GnomeSharpProject.xpt.xml,
	  templates/GnomeSharp2Project.xpt.xml,
	  templates/GtkSharp2Project.xpt.xml, templates/GnomeSharpProgram.xft.xml,
	  templates/GladeSharpProject.xpt.xml,
	  templates/GladeSharp2Project.xpt.xml, templates/Library.xpt.xml,
	  templates/EmptyProject.xpt.xml, Makefile.am, icons/C#.Project.Form,
	  icons/C#.Project.Library, icons/C#.Project.DOSProject,
	  icons/csharp-icon-32.png, icons/C#.Project.EmptyProject: Updated project
	  icons. Use the base project icon with an overlay to show the type.

2007-10-24  Michael Hutchinson <mhutchinson@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Refactored the keypress code to separate
	  out the indent engine and doc comments, also splitting up the indent
	  handling code into three phases. Renamed "engine" to "indentEngine".
	  Improved handling of auto-commenting on newlines. Fixed "Bug 335824 -
	  Better handling of the 'tab' key". Fixed "Bug 326289 - MD texteditor is
	  painfully slow" by caching old indent stacks and bulk-copying characters
	  during large updates.

2007-10-23  Mike Krüger <mkrueger@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Fixed "Bug 335145 - Intellisense
	  displays wrong entries for typeof statement".

2007-10-23  Mike Krüger <mkrueger@novell.com> 

	* Parser/Resolver.cs: Fixed "Bug 335133 - Intellisense does not display
	  object members for interfaces".

2007-10-23  Lluis Sanchez Gual <lluis@novell.com> 

	* CSharpBinding.addin.xml, Makefile.am, templates/GtkSharpWindow.xft.xml:
	  Removed the Gtk.Window template, because the Stetic addin already
	  provides a template for creating windows.
	* Autotools/Autotools.mdp, CSharpBinding.mdp, CSharpBinding.mds: Updated.

2007-10-23  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/OverrideCompletionData.cs: Flags for showing return types and
	  parameters must be explicitely specified now.

2007-10-18  Mike Krüger <mkrueger@novell.com> 

	* Gui/CSharpParameterDataProvider.cs, Gui/CSharpTextEditorExtension.cs:
	  Fixed "Bug 325509 - Inaccessible methods displayed in autocomplete".

2007-10-17  Mike Krüger <mkrueger@novell.com> 

	* Parser/Resolver.cs: changed is/as resolve.

2007-10-17  Mike Krüger <mkrueger@novell.com> 

	* Parser/Resolver.cs: Fixed "Bug 334236 - Intellisense does not work for
	  `is' keyword".

2007-10-17  Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/Resolver.cs: Let TypeNameResolver fill the names using the compiled
	  unit. Helps fixing bug #325081.

2007-10-17  Mike Krüger <mkrueger@novell.com> 

	* Parser/CSharpVisitor.cs: Modified visitor to handle explicit declarations.

2007-10-16  Mike Krüger <mkrueger@novell.com> 

	* Parser/Resolver.cs: fixed "Bug 325528 - Intellisense contains multiple
	  entries of same namespace".

2007-10-16  Lluis Sanchez Gual <lluis@novell.com> 

	* CSharpBinding.mdp, Parser/TypeNameResolver.cs, Makefile.am: Moved
	  TypeNameResolver to MD.Projects.

2007-10-15  Mike Krüger <mkrueger@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Fixed "Bug 333140 - Xml comment
	  generation only works when using "Smart" indentation".

2007-10-12  Mike Krüger <mkrueger@novell.com> 

	* CSharpBindingCompilerManager.cs: Applied changes that were neccassary for
	  to the new FileService.

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

	* CSharpAmbience.cs: Always show parameter types.

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

	* CSharpAmbience.cs: Properly show the method name for conversion operators.

2007-10-04  Zach Lute <zach.lute@gmail.com>

	* Parser/CSharpVisitor.cs: Added support for implicit/explicit operators as
	  methods. (Bug #330503)

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

	* CSharpAmbience.cs: Formatting fixes.

2007-10-09  Mike Krüger <mkrueger@novell.com> 

	* CSharpAmbience.cs: Changed the C# ambience to recognize the new conversion
	  flags.

2007-10-09  Mike Krüger <mkrueger@novell.com> 

	* Parser/Parser.cs: Fixed "Bug 331772 - Unable to handle conditional class
	  definition".

2007-10-09  Mike Krüger <mkrueger@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Fixed "Bug 331000 - Auto-generation of
	  XML comment tags sometimes incorrect".

2007-10-09  Ankit Jain  <jankit@novell.com>

	* CSharpBindingCompilerManger.cs: Moved code for building resources to
	DotNetProject.

2007-10-08  Mike Krüger <mkrueger@novell.com> 

	* Parser/CodeGenerator.cs: fixed "Bug 325223 - Interface refactory doesn't
	  implement correctly (4 bugs)".

2007-10-08  Mike Krüger <mkrueger@novell.com> 

	* Parser/ExpressionFinder.cs: Worked on "Bug 330717 - Error while updating
	  status of command. CurrentRefactoryOperations". Need to get reply, if
	  this bug is fixed (couldn't reproduce the problem).

2007-10-05  Ankit Jain  <jankit@novell.com>

	* Autotools/CSharpAutotoolsSetup.cs (GetCompilerFlags): Correctly emit
	flag for optimization. Don't emit -define:DEBUG if its already defined
	in DefineSymbols.

2007-10-05  Mike Krüger <mkrueger@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: fixed Bug 325523 - MD override
	  auto-implementation ignores existing implementations.

2007-10-05  Mike Krüger <mkrueger@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: fixed Bug 330793 - Delegate
	  autocommenting crashes.

2007-10-03  Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/CSharpVisitor.cs, Parser/Resolver.cs: Properly resolve aliases
	  bound to instantiated generic types. Fixes bug #324844.
	* Parser/TypeNameResolver.cs: Resolve aliased class names.

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

	* Gui/CSharpParameterDataProvider.cs, Gui/CSharpTextEditorExtension.cs:
	  Implemented support for the Show Parameter List command. Also, show the
	  parameter list when typing a comma. Fixes bug #324876.

2007-09-21  Lluis Sanchez Gual <lluis@novell.com> 

	* CSharpBinding.addin.xml: Bump MD version.

2007-09-21  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Don't set the Editor.CursorPosition
	  property if position hasn't really changed, since it will raise the
	  completion context change event, which closes the completion window.

2007-09-18  Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/CodeGenerator.cs: Fix regex in RenameClass. Class name may end with
	  ":".

2007-09-18  Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/CodeGenerator.cs: Fix renaming of partial classes. It was using the
	  wrong IClass to get the line and column.

2007-09-18  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: When completing 'override', show
	  overridables for System.Object.

2007-09-18  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/OverrideCompletionData.cs: Generate call to base class when overriding
	  method. Fixes bug #325524.

2007-09-18  Mike Krüger <mkrueger@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Fixed Bug 325438 - New doc completion
	  slowing me down.

2007-09-15  Jérémie Laval <jeremie.laval@gmail.com>

	* Parser/Parser.cs: Added support for parsing error retrieval from NRefactory.

2007-09-14  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/OverrideCompletionData.cs, Gui/CSharpTextEditorExtension.cs,
	  CSharpAmbience.cs: Make proper use of ITypeNameResolver everywhere to
	  resolve type names of parameters, methods, etc. Fixes bug #82854.
	* Parser/TypeNameResolver.cs: Fix name resolution for aliases.

2007-09-14  Jeffrey Stedfast  <fejj@novell.com>

	* FormattingStrategy/CSharpIndentEngine.cs (PushColon): Handle the
	:: operator. Fixes bug #82316.

2007-09-14  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Minor fix.
	* Parser/TypeNameResolver.cs: Remove debug code.

2007-09-14  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/CSharpTextEditorExtension.cs, Parser/Resolver.cs,
	  Parser/TypeNameResolver.cs: Implement support for ITypeResolver. Add
	  parameter completion support for delegate invocations. Fixes bug #82264
	  and #82238.
	* CSharpBinding.mdp: Fix warning level. Added new file.
	* CSharpAmbience.cs: Track API changes.
	* Makefile.am: Updated.

2007-09-14  Mike Krüger <mkrueger@novell.com> 

	* Parser/CodeGenerator.cs: Fixed 82425:Renaming a base method doesn't rename
	  overrides. (Fixed for properties too).

2007-09-13  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/CSharpParameterDataProvider.cs: Improved method formatting.
	* Gui/CSharpTextEditorExtension.cs, Parser/Resolver.cs: When resolving a
	  type, take into account parameter types for methods and classes. Fixes
	  bug #82209.

2007-09-13  Lluis Sanchez Gual <lluis@novell.com> 

	* CSharpAmbience.cs: The name of a delegate is the name of the class, not
	  the return type of the invoke method. Don't show the delegate parameters
	  unless the 'show class modifiers' flag is set.

2007-09-13  Mike Krüger <mkrueger@novell.com> 

	* Parser/CodeGenerator.cs: Fixed re opened 82311: Rename fails when we have
	  two variables that are called the same. (another issue).

2007-09-13  Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/LanguageItemVisitor.cs: Properly resolve "this". Fixes bug #82503.

2007-09-13  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Allow showing intrinsic names only when
	  resolving is, as or new.
	* Gui/FormattingPanel.cs, CSharpBinding.mdp,
	  gtk-gui/CSharpBinding.FormattingPanelWidget.cs, gtk-gui/gui.stetic:
	  Updated.
	* Parser/Resolver.cs: The text editor extension needs internalResolve to
	  return the real array types, not only System.Array. Fixes bug #82831.
	* CSharpAmbience.cs: Add support for the new UseIntrinsicNames flag.

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

	* Gui/CSharpTextEditorExtension.cs: Don't include abstract classes in the
	  'new' completion list.

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

	* Parser/TypeVisitor.cs: Use the fully qualified name when returning the
	  type for array items. Fixes bug #82830.

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

	* Parser/Resolver.cs, Parser/TypeVisitor.cs: The 'this' reference is not
	  valid outside of a class member. Fix for bug #82743.

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

	* Gui/ChooseRuntimePanel.cs, Gui/CodeGenerationPanel.cs,
	  FormattingStrategy/CSharpFormattingStrategy.cs, CSharpAmbience.cs: Fix
	  warnings.
	* Gui/CSharpTextEditorExtension.cs, Parser/Resolver.cs: Disable code
	  completion inside enum declarations. Fixes bug #82541. Removed some
	  warnings.
	* gtk-gui/generated.cs, gtk-gui/CSharpBinding.CodeGenerationPanelWidget.cs,
	  gtk-gui/CSharpBinding.FormattingPanelWidget.cs, gtk-gui/gui.stetic:
	  Updated.

2007-09-12  Mike Krüger <mkrueger@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Fixed 82770: MonoDevelop should keep in
	  comments when return is pressed.

2007-09-12  Mike Krüger <mkrueger@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Fixed 82768: Move cursor after new
	  summary comment.

2007-09-12  Mike Krüger <mkrueger@novell.com> 

	* Parser/CodeGenerator.cs: Fixed 82311: Rename fails when we have two
	  variables that are called the same.

2007-09-11  Ankit Jain  <jankit@novell.com>

	* CSharpBindingCompilerManager.cs (Compile): Pass /warn: command line
	param.

2007-09-11  Mike Krüger <mkrueger@novell.com> 

	* Parser/CodeGenerator.cs: Fixed 82500: Rename refactoring enum value
	  crashes MonoDevelop.

2007-09-10  Mike Krüger <mkrueger@novell.com> 

	* Parser/Resolver.cs: Fixed 82760: Nul ref enableing autocomplete.

2007-09-10  Mike Krüger <mkrueger@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Fixed 82223: Overload selection does not
	  work when breaking the line.

2007-09-10   <> 

	* Gui/CSharpTextEditorExtension.cs: Fixed 82683: MonoDevelop should generate
	  XML documentation when /// is typed.

2007-09-07  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Track api changes.

2007-09-07  Mike Krüger <mkrueger@novell.com> 

	* Parser/Resolver.cs: Fixed 82505: No autocomplete for static members. Fixed
	  some other resolve cases too. (non static members only in non static
	  methods)

2007-09-07  Mike Krüger <mkrueger@novell.com> 

	* Parser/CodeGenerator.cs: Handled bug 82714: Invalid offset in text editor.

2007-08-31  Mike Krüger <mkrueger@novell.com> 

	* Gui/ChooseRuntimePanel.cs, Gui/CodeGenerationPanel.cs,
	  Gui/FormattingPanel.cs, Parser/Resolver.cs,
	  FormattingStrategy/CSharpFormattingStrategy.cs,
	  FormattingStrategy/CSharpFormattingProperties.cs,
	  gtk-gui/CSharpBinding.CodeGenerationPanelWidget.cs,
	  gtk-gui/CSharpBinding.FormattingPanelWidget.cs, CSharpAmbience.cs:
	  Changes due to new property infrastructure.

2007-08-24  Mike Krüger <mkrueger@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Fixed 82555: Xml comments activating
	  incorrectly.

2007-08-23  Mike Krüger <mkrueger@novell.com> 

	* CSharpEnhancedCodeProvider.cs, Parser/Parser.cs, Parser/CSharpVisitor.cs,
	  Parser/CodeGenerator.cs, Parser/Resolver.cs, Parser/TypeVisitor.cs,
	  Parser/LanguageItemVisitor.cs,
	  Parser/SharpDevelopTree/GenericParameter.cs,
	  Parser/SharpDevelopTree/Destructor.cs,
	  Parser/SharpDevelopTree/Method.cs,
	  Parser/SharpDevelopTree/ReturnType.cs, Parser/SharpDevelopTree/Class.cs,
	  Parser/SharpDevelopTree/Constructor.cs: Changed to the latest NRefactory
	  version.

2007-08-23  Ankit Jain  <jankit@novell.com>

	* CSharpBindingCompilerManager.cs (GetResourceId): Set the resource id
	correctly even if resgen is not required.

2007-08-23  Ankit Jain  <jankit@novell.com>

	Fix bug #82533.
	* CSharpBindingCompilerManager.cs (GetResourceId): Generate .resources
	with resgen only if required.

2007-08-21  Andrés G. Aragoneses  <knocte@gmail.com>

	Improve fix for bug #82398.
	* CSharpBindingCompilerManager.cs (GetResourceId): Use MONO_IOMAP=drive,
	and only on Unix.

2007-08-20  Ankit Jain  <jankit@novell.com>

	* CSharpBindingCompilerManager.cs (Compile): Add all build files to the
	list of files to be compiled. Don't filter with CanCompile.

2007-08-16  Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/Resolver.cs: When listing the members of an enum, return enum
	  members only (it is correct to call static methods using an enum type
	  reference, but it doesn't make much sense). Fixes bug #82250.

2007-08-16  Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/Resolver.cs: Method parameters must be resolved before class
	  members. Fixes bug #82391.

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

	* Parser/Resolver.cs: Fix possible infinite recursion (bug #82303).

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

	* Parser/Resolver.cs: Properly set the showStatic flag after finding a
	  member in SearchMember. Fixes a problem with nested classes and enums:
	  members were not properly shown.

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

	* Parser/Resolver.cs: Properly resolve inner class names. Fixes part of
	  #82414.

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

	* Parser/Resolver.cs: When resolving a var name, parameters have priority
	  over fields.

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

	* Parser/Resolver.cs: Include arguments in the resolve list for CtrlSpace.
	  Fixes bug #82391.

2007-08-14  Ankit Jain  <jankit@novell.com>

	Fix bug #82398.
	* CSharpBindingCompilerManager.cs (GetResourceId): Run resgen with
	MONO_IOMAP=all.

2007-08-14  Mike Krüger <mkrueger@novell.com> 

	* Gui/CSharpTextEditorExtension.cs,
	  FormattingStrategy/CSharpIndentEngineStack.cs,
	  FormattingStrategy/CSharpIndentEngine.cs: Added support for
	  documentation comments 
	
	  (fixes bug 78578: Add XML Comment support to MonoDevelop and
	  integrate with tooltips).
	
	  + Auto complete of /// tags
	
	  + code completion for the xml documentation tags
	
	  + auto generation of a header body

2007-08-13  Mike Krüger <mkrueger@novell.com> 

	* Gui/CSharpTextEditorExtension.cs: Started to work on xml comment tag
	  support.

2007-08-10  Ankit Jain  <jankit@novell.com>

	Fix bug #82394.
	* CSharpBindingCompilerManager.cs (Compile): Abort build if error while
	generating resources.
	(GetResourceId): Refactor slightly to report error. Also, parse
	the line/col number for the CompilerError.
	(RegexErrorLinePos): New.

2007-08-09  Lluis Sanchez Gual <lluis@novell.com> 

	* CSharpBinding.addin.xml, Autotools/Makefile.am, CSharpBinding.mdp,
	  Makefile.am: Reorganized the extension point hierarchy. Embedded all
	  add-in manifests as resources.

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

	* templates/CSharpSessionStateWebService.xft.xml,
	  templates/CSharpWebService.xft.xml: Removed unused files.

2007-07-30  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/CodeGenerator.cs: Add ctor references too. Fixes bug
	#82204.

	* Gui/CSharpTextEditorExtension.cs: Handle indent-region by
	resetting state so that we don't get confused.

2007-07-27  Jeffrey Stedfast  <fejj@novell.com>

	* FormattingStrategy/CSharpFormattingStrategy.cs (FormatLine):
	Fixed to be a no-op.

2007-07-25  Jeffrey Stedfast  <fejj@novell.com>

	Fixes for bug #82179.

	* FormattingStrategy/CSharpIndentEngineStack.cs (Push): Added a
	second Push() method allowing the caller to force a particular
	indent.

	* FormattingStrategy/CSharpIndentEngine.cs (PushOpenBrace): Trim
	the indent level as we pop FoldedStatements and use
	stack.PeekKeyword(0) instead of stack.PeekKeyword(1).
	(PushFoldedStatement): We no longer stop pushing folded statements
	for any reason, we simply push a folded statement with a set
	indent in those cases (needed for keeping proper track of
	keywords).

2007-07-24  Jeffrey Stedfast  <fejj@novell.com>

	Part of the fix for bug #82114.

	* Parser/CodeGenerator.cs: Override a few more Visit() methods so
	that we pick up class references in CastExpressions,
	VariableDeclarations and ObjectCreateExpressions.
	(AddUniqueReference): New method to add only unique references
	to the collection.

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

	* CSharpBindingCompilerManager.cs: Write the compiler command used to
	  compile the project to the log.

2007-07-18  Jeffrey Stedfast  <fejj@novell.com>

	* FormattingStrategy/CSharpIndentEngine.cs: A few fixes, including
	one for bug #82055.

	* Gui/CSharpTextEditorExtension.cs (IsInUsing): Simplified.
	(GetPreviousToken): Fixed bug #82131.

2007-07-17  Jeffrey Stedfast  <fejj@novell.com>

	* Gui/CSharpTextEditorExtension.cs (KeyPress): Fixed a bug caused
	when using any key other than Enter to auto-complete (e.g. using a
	'(' or something).

2007-07-17  Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/Resolver.cs: When resolving a type, include the enclosing
	  namespace in the namespace search list. Fixes bug #81865.
	* CSharpBindingCompilerManager.cs: Make sure all output is read after
	  running the compilation process. Should fix bug #82092.

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

	* Parser/Resolver.cs: Properly resolve type names qualified with a
	  namespace alias. Fixes bug #81999.

2007-07-12  Jeffrey Stedfast  <fejj@novell.com>

	* FormattingStrategy/CSharpIndentEngine.cs (PushNewLine): If we
	just popped a single-line comment, we need to do more processing.

2007-07-11  Ankit Jain  <jankit@novell.com>

	Fix bug#82024.
	* CSharpBindingCompilerManager.cs (DoCompilation): Workaround for a bug
	in ProcessStartInfo.

2007-07-06  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/CodeGenerator.cs (Visit::PropertyDeclaration):
	Implemented to fix bug #82020.

2007-07-05  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/CodeGenerator.cs: (Visit::FieldReferenceExpression):
	Don't limit ourselves to just Fields and Properties. Fixes bug
	#81963.
	(Visit::IdentifierExpression): When checking of a LocalVariable is
	within bounds, use Region.BeginColumn instead of Region.EndColumn
	and swap on which LocalVariable instance we check. Fixes part of
	bug #82020.

2007-07-05  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/CodeGenerator.cs: Sanity check that both begin and end
	are != -1 to prevent a crash.
	(Visit): When adding a typeDeclaration to the list of references,
	don't add it using the StartLocation - instead, we need to find
	the actual reference offset using StartLocation as a hint. This
	fixes bug #82017.

2007-07-03  Mike Krüger <mkrueger@novell.com> 

	* CSharpBindingCompilerManager.cs: added signing support.

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

	* CSharpBindingCompilerManager.cs: Implemented support for additional
	  gac roots specified in packages.

2007-06-20  Jeffrey Stedfast  <fejj@gnome.org>

	Fixes a SmartIndenting bug reported by Latexer on IRC.

	* FormattingStrategy/CSharpIndentEngine.cs (PushOpenBrace): When
	inside a Case statement, only use nSpaces = -1 when we are either
	on the line where the case/default label was entered or if the
	first non-lwsp char is the '{', else use nSpaces = 0 so that we
	indent properly.

	* FormattingStrategy/CSharpIndentEngineStack.cs (Push): When
	pushing a new Block inside a Case, we can still add an indent
	level if nSpaces != -1.

2007-06-19  Mike Krueger  <mkrueger@novell.com> 

	Changed the C# file icon to look a bit more like gnome.

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

	* Autotools/Autotools.mdp, CSharpBinding.mdp: Removed unused elements.

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

	* Parser/Resolver.cs: Added protection against infinite loop in
	  ResolveIdentifier. Fixes bug #81769.

2007-05-25  Jeffrey Stedfast  <fejj@gnome.org>

	* Parser/CodeGenerator.cs (EncapsulateFieldImpGetSet):
	Implemented.

2007-05-24  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/TypeVisitor.cs (Visit::IdentifierExpression): Scan parent
	namespaces of the calling class as well. Fixes bug #81543.

2007-05-23  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/CodeGenerator.cs (GetOptions): Override our base
	implementation.

2007-05-23  Jeffrey Stedfast  <fejj@novell.com>

	* Gui/CSharpTextEditorExtension.cs:
	MonoDevelop.SourceEditor.Properties namespace no longer exists.

	* FormattingStrategy/CSharpIndentEngine.cs: Same.

	* Gui/OverrideCompletionData.cs: Same.

	* Gui/FormattingPanel.cs: Same.

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

	* Parser/TypeVisitor.cs: When resolving an identifier, look first in
	  class members, then look for types. Fixes bug #81542.

2007-05-21  Jeffrey Stedfast  <fejj@novell.com>

	* Gui/CSharpTextEditorExtension.cs (KeyPress): If a region of text
	is selected, then simply pass it along to our base implementation
	and reset our engine state if the region begins somewhere before
	the engine's cursor. Fixes bug #81620.

2007-05-18  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/CodeGenerator.cs (IsMatchedField): New convenience
	function to do some trivial checks to make sure the 'match' isn't
	in the middle of some other field name (e.g. if the field we are
	looking for is a substring of another field name, we don't want to
	match in the middle of some other field).
	(GetMemberNamePosition): Fixed the IField case to be a bit more
	correct.
	(GetMemberBounds): Overridden base class' implementation for
	IFields so that we can get the subregion for a field declaration
	if it is in the middle of other field declarations within the same
	statement region.

2007-05-19  Ankit Jain  <jankit@novell.com>

	* CodeGenerationPanel.cs: GetProjectParserContext can fail, handle
	that.
	(Store): Save mainClass and Win32Icon only when relevant.

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

	* Gui/CSharpTextEditorExtension.cs: Cursor already moved to
	  position 2 after typing '#'.

2007-05-16  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/CodeGenerator.cs (EncapsulateField): Implemented so that
	get/set actually have code statements.

2007-05-14  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/CodeGenerator.cs (RenameClass): Handle renaming of structs,
	enums, and interfaces too.

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

	* Parser/Resolver.cs: Include const fields in the static field list.
	  Fixes bug #81078.
	* CSharpBinding.mds, gtk-gui/gui.stetic: Updated.

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

	* Gui/CSharpTextEditorExtension.cs: (GetPreviousToken): Return tokens
	  composed by a single char which is not a letter of digits.

2007-05-14  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/CodeGenerator.cs: Comment out our own implementation of
	AddMember, throwing a NotImplementedException() in generated code
	can be annoying sometimes.

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

	* CSharpBinding.addin.xml: Don't use the MD namespace in add-in
	  dependencies, since the c# add-in is alread declared in the MS
	  namespace.

2007-05-11  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/CodeGenerator.cs (AddMember): Override default
	implementation so that we can add a statement to throw a
	NotImplementedException.

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

	* CSharpBinding.mds: Added new c# binding solution.

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

	* Autotools/Autotools.mdp, Autotools/Makefile.am: Added project for the
	  autotools assembly.

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

	* CSharpBinding.mdp: Don't copy assembly references.

2007-05-08  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/CodeGenerator.cs (GetMemberNamePosition): Fixed to
	support IIndexers.
	(FindParameterReference): Updated for API changes, no longer takes
	an IMethod argument.
	(Visit): Fixed up a bit since params can be parented by either an
	IMethod or an IIndexer.

2007-05-04  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/CodeGenerator.cs (GetParameterNamePosition): Implemented.

	* Parser/Resolver.cs (GetMethod): Check if the cursor is within the
	declaration bounds as well, so that parameter searching works.

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

	* Test/Test.cs, Gui/ChooseRuntimePanel.cs, Gui/CodeGenerationPanel.cs,
	  CSharpBinding.addin.xml, CSharpBinding.mdp, Makefile.am: Migration
	  to Mono.Addins.

2007-05-03  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/CodeGenerator.cs (GetMemberNamePosition): Fixed IEvent
	and IProperty logic and also greatly simplified the overall code.

2007-05-03  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/CodeGenerator.cs (FindVariableNamePosition): New
	overloaded function to get the offset of a variable name.
	(FindVariableReferences): New.
	(FindParameterReferences): New.
	(Visit): Added logic for matching LocalVariable and IParameters.

2007-05-02  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/CodeGenerator.cs (RenameClass): Rename all parts of the class
	(in case the class is a partial class).

2007-05-01  Jeffrey Stedfast  <fejj@novell.com>

	* Parser/CodeGenerator.cs (CreateReference): Trim the name to the
	base name (we don't want the FullyQualifiedName). Also do some
	fixing of the offset since the expression start offset begins
	before the name of the type (e.g. it includes
	public/private/etc modifiers).

2007-04-19  Lluis Sanchez Gual <lluis@novell.com> 

	* CSharpBinding.mdp: Don't copy referenced assemblies.
	* CSharpBindingCompilerManager.cs: Avoid compiler warning.

2007-04-09  Jeffrey Stedfast  <fejj@novell.com>

	* FormattingStrategy/CSharpIndentEngineStack.cs: If we are pushing
	a new FoldedStatement, we want to indent another level even if our
	parent is a case-statement (unlike what we do for new Blocks).

2007-03-23  Jeffrey Stedfast  <fejj@novell.com>

	* Gui/CSharpTextEditorExtension.cs (GetPreviousToken):
	Reimplemented to use GetCharAt().
	(KeyPress): Invalidate engine state if some key-code we don't
	handle changes the buffer before our cursor position.

2007-03-21  Ankit Jain  <jankit@novell.com>

	* Gui/CSharpTextEditorExtension.cs (HandleCodeCompletion): Handle
	code completion for sub namespaces.
	(IsInUsing): New.
	(GetPreviousToken): Handle the case when token starts at the first
	position in the file.

2007-03-20  Jeffrey Stedfast  <fejj@novell.com>

	* Gui/CSharpParameterDataProvider.cs (GetCurrentParameterIndex):
	Rewritten to use my CSharpIndentEngine parse tree to hopefully
	solve bug #80883 once and for all.

	* Gui/CSharpTextEditorExtension.cs (KeyPress): Instead of using
	engine.IsInsideMultiLineComment when deciding whether or not to
	reindent the line, use engine.LineBeganInsideMultiLineComment
	since that's what we really wanted to know.

	* FormattingStrategy/CSharpIndentEngine.cs: Added more convenience
	state properties (such as StackDepth and
	LineBeaganInside[VerbatimString,MultiLineComment].

2007-03-19  Jeffrey Stedfast  <fejj@novell.com>

	* Gui/CSharpTextEditorExtension.cs (KeyPress): If the before/after
	indent text is identical, then don't replace the text - instead
	calculate what the cursor position would be and set it. (found a
	way to avoid the text selection that occurs when you set
	CursorPosition).

	* FormattingStrategy/CSharpIndentEngine.cs (Push): Fix bug #81189
	by resetting popVerbarim when we pop the verbatim string literal
	off the stack

2007-03-16  Jeffrey Stedfast  <fejj@novell.com>

	* Gui/OverrideCompletionData.cs (InsertMethod, InsertProperty):
	(InsertEvent, InsertIndexer): Use spaces rather than tabs for
	indenting when appropriate. Fixes bug #81168.

	* Gui/CSharpTextEditorExtension.cs (GetDirectiveCompletionData):
	Add #pragma to the directives. Fixes bug #81131.

2007-03-14  Jeffrey Stedfast  <fejj@novell.com>

	* Gui/CSharpTextEditorExtension.cs (KeyPress): Fixed a bug where
	if you typed the full completion text and then used <Enter> to
	complete the fully-typed completion text, the Smart Indent code
	would indent the next line even though it shouldn't have done so.

2007-03-14  Ankit Jain  <jankit@novell.com>

	* CSharpBindingCompilerManager.cs (Compile): Use 'fname' as the
	filename to embed. It is updated appropriately by GetResourceId().

2007-03-13  Miguel de Icaza  <miguel@novell.com>

	* CSharpBindingCompilerManager.cs (Compile): an old patch that I
	had lying on my hard drive.   When using WinExe targets, pass the
	"winexe" flag to the compiler.

	Also pass the actual compiled resource file to be embedded, not
	the source file. 

2007-03-13  Jeffrey Stedfast  <fejj@novell.com>

	* FormattingStrategy/CSharpIndentEngine.cs (PushFoldedStatement):
	Push one anyway if our keyword (or our parent's keyword) is a loop
	or if-else keyword.

2007-03-11  Jeffrey Stedfast  <fejj@gnome.org>

	* Gui/CSharpTextEditorExtension.cs (KeyPress): Simplified a bit.
	(KeyPress): Changed the logic for the tab-completion check, if
	more than a single char has been inserted then it should be
	considered to be tab-completion.
	(KeyPress): Don't reindent multi-line comment lines unless they
	begin with a '*', in which case the user probably wants to realign
	them (if the first char on the line isn't a '*' then it might be a
	commented-out block of code, we don't want to reindent that).

2007-03-10  Jeffrey Stedfast  <fejj@gnome.org>

	* FormattingStrategy/CSharpIndentEngineStack.cs (Push): We now
	have an Inside.Case type to implement.

	* FormattingStrategy/CSharpIndentEngine.cs (PushColon): Push a
	Inside.Case onto the stack if appropriate and check
	FormattingProperties.IndentCaseLabels to see how we should handle
	indenting for case labels.
	(PushSemicolon): Always set keyword to String.Empty
	(PushOpenBrace): Changed the way we handle psuing a new block onto
	the stack if we our parent is Inside.Case (the logic is the same,
	but the check is a bit different now).
	(PushCloseBrace): If our parent is Inside.Case, then we can pop
	that along with the switch block.

	* FormattingStrategy/CSharpFormattingProperties.cs
	(IndentCaseLabels): Implemented.

2007-03-09  Jeffrey Stedfast  <fejj@novell.com>

	* CSharp.glade: Removed, no longer in use.

	* CSharpBinding.addin.xml: Add the c# Formatting options panel to
	the options dialog under the Text Editor options.

	* gtk-gui/gui.stetic: Added a new custom FormattingPanelWidget.

	* Gui/FormattingPanel.cs: New source file implementing a
	"Formatting" options panel specific to c#.

2007-03-09  Jeffrey Stedfast  <fejj@novell.com>

	* FormattingStrategy/CSharpIndentEngine.cs (PushColon): Respect
	the style settings for indenting goto labels.

	* FormattingStrategy/CSharpFormattingProperties.cs: New source
	file for c#-specific formatting properties.

2007-03-09  Jeffrey Stedfast  <fejj@novell.com>

	* FormattingStrategy/CSharpIndentEngine.cs (Push): Fixed a goof
	from yesterday's commit.

	* Gui/CSharpTextEditorExtension.cs (KeyPress): Rearranged some
	logic a bit to optimize seeking in the text buffer using arrow
	keys.

2007-03-08  Jeffrey Stedfast  <fejj@novell.com>

	* FormattingStrategy/CSharpIndentEngine.cs: Got rid of the hack
	that used this.commentEndedAt which was not only nasty, but didn't
	even always work right to begin with.

2007-03-07  Jeffrey Stedfast  <fejj@novell.com>

	* Gui/CSharpTextEditorExtension.cs (KeyPress): Same sort of fix as
	earlier wrt the user hitting Tab. If the user hits <Enter> and the
	base class does not insert a '\n', then it means the user has just
	accepted an auto-completed selection. In this case, return -
	there's nothing left for us to do.

	* FormattingStrategy/CSharpIndentEngineStack.cs (Push): Added a
	work-around for pushing a multi-line anonmymous method {} block
	inside a ParenList (e.g. as a callback argument).

	* FormattingStrategy/CSharpIndentEngine.cs (PushHash): Doh, how
	did I overlook this method when integrating my IndentEngine into
	MD?
	(PushNewLine): Properly handle multi-line array assignments.

	Fix for making "default :" (as opposed to "default:") inside a
	switch-statement work as it should, lwsp is not significant here.

	* FormattingStrategy/CSharpIndentEngine.cs (PushOpenParen): Clear
	the keyword after pushing a new ParenList onto the stack, when the
	ParenList is popped, the keyword is restored.
	(Reset): Changed the semantics of wordStart, this now initializes
	to -1 instead of 0.
	(PushNewLine): Reset wordStart back to -1.
	(Push): When checking for a keyword, we don't need to use
	lastNonLwsp anymore, just use wordStart.
	(Push): wordStart should always be set to point to the beginning
	of a word token (and never to word-delimiting chars like it was
	before).

2007-03-07  Jeffrey Stedfast  <fejj@novell.com>

	* Gui/CSharpTextEditorExtension.cs (KeyPress): Fixed a bug
	preventing tab-completion from working by chaining the KeyPress()
	to the parent.

2007-03-07  Jeffrey Stedfast  <fejj@novell.com>

	* FormattingStrategy/CSharpIndentEngine.cs: Fixed bug #81065 by
	looking at the last significant char on the line. Also now keeping
	the last char typed as part of the state so as to avoid having to
	linebuf.ToString() and then look.

2007-03-06  Jeffrey Stedfast  <fejj@novell.com>

	* FormattingStrategy/CSharpIndentEngine.cs: New class to aid in
	smart indenting.

	* FormattingStrategy/CSharpIndentEngineStack.cs: A broken out
	piece of CSharpIndentEngine.cs to compartamentalize it a bit.

	* FormattingStrategy/CSharpFormattingStrategy.cs
	(SmartIndentLine): Don't do any indenting, Smart Indent is handled
	elsewhere for now.
	(FormatLine): Simplified, because this now only has to worry about '>'

	* Gui/CSharpTextEditorExtension.cs (KeyPress): Implement our hooks
	into Smart Indenting here.

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

	* Gui/OverrideCompletionData.cs, Gui/CSharpParameterDataProvider.cs,
	  FormattingStrategy/CSharpFormattingStrategy.cs: Track api changes.

2007-02-26  Jeffrey Stedfast  <fejj@novell.com>

	* FormattingStrategy/CSharpFormattingStrategy.cs
	(SmartIndentLine): Instead of wrapping the entire body of the
	function in an if-block, fix it so we swap the logic thus reducing
	the indent level of the main body making it easier to read (more
	likely to fit in the width of your editor window).
	(IsInsideStringOrComment): Completely rewritten to take into
	consideration verbatim string literals, char literals, and
	escaping inside string literals.
	(IsInsideDocumentationComment): Same.

2007-02-24  Zach Lute <zach.lute@gmail.com> 

	* Gui/CSharpParameterDataProvider.cs: GetCurrentParameterIndex() now
	  takes whether or not a comma is inside a string literal into account
	  when determining the index.  Fixes bug #80883.

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

	* Gui/CSharpTextEditorExtension.cs: Don't show completion windo for
	  "using" keyword when written inside a class. Fixes bug #80868.
	* Parser/Resolver.cs: Removed unneeded parameter and fix potential
	  nullref.

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

	* CSharpBinding.addin.xml: Change add-in versions to 0.13.

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

	* Parser/Resolver.cs: When checking for accessibility take into account
	  the qualifier type. There are some restrictions when accessing to
	  protected members from incorrect qualifier types.

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

	* Parser/Resolver.cs, Parser/LanguageItemVisitor.cs: Properly resolve
	  generic type identifiers. Fixes bug #80840.

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

	* Parser/LanguageItemVisitor.cs, Parser/TypeVisitor.cs: When resolving
	  a field reference, look for static members if instance members
	  can't be found. Fixes bug #80841.

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

	* CSharpBinding.mdp: Added project reference for NRefactory.
	* Parser/CSharpVisitor.cs: Collect parameter flags when parsing a
	  method. Fixes bug #80814.

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

	* Gui/CSharpTextEditorExtension.cs: Allow crossing line boundaries when
	  looking for tokens. Fixes bug #80719.
	* CSharpBindingCompilerManager.cs: Handle internal packages.

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

	* CSharpAmbience.cs: When converting a class, honor
	  UseFullyQualifiedName flag.
	* Makefile.am: distcheck fixes

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

	* CSharpBinding.mdp: Updated.
	* gtk-gui/CSharpBinding.CodeGenerationPanelWidget.cs,
	  gtk-gui/gui.stetic: Translation fixes.

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

	* Gui/OverrideCompletionData.cs: Moved from CSharpTextEditorExtension.
	* Gui/CSharpParameterDataProvider.cs, Gui/CSharpTextEditorExtension.cs,
	  CSharpBinding.mdp, Makefile.am: Implemented support for parameter
	  information window.
	* Parser/Resolver.cs: When searching a class, look in the calling class
	  namespace before looking in using directives. Some fixes for
	  generic types.
	* Parser/CodeGenerator.cs: Some fixes for generic types.
	* Parser/SharpDevelopTree/ReturnType.cs: Use our own system type table,
	  since the one from NRefactory has some VB types and does case
	  insensitive lookups.
	* CSharpAmbience.cs: Added some ConvertTypeName calls to show the
	  correct name for instantiated generic types.

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

	* CSharpBinding.mdp,
	  gtk-gui/CSharpBinding.CodeGenerationPanelWidget.cs,
	  gtk-gui/gui.stetic, Makefile.am: i18n fixes.

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

	* Gui/CSharpTextEditorExtension.cs: Cosmetic fixes in code completion
	  of "new".

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

	* Gui/CSharpTextEditorExtension.cs, Parser/Resolver.cs: Implemented
	  code completion for "throw new". Don't show interfaces and abstract
	  classes when completing "new".
	* Parser/Parser.cs: Removed.
	* CSharpAmbience.cs: Make sure instantiated generic classes are shown
	  with the correct name.

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

	* Gui/CSharpTextEditorExtension.cs: When typing '#', move it to the
	  first column is there is no other text before. Implemented code
	  completion for compiler directives. Don't show sealed methods in
	  the overridable list.

2007-02-02  Ankit Jain  <jankit@novell.com>

	* CSharpBindingCompilerManager.cs (Compile): Move resource compiling code
	to ..
	(GetResourceId): .. here. Improve error messages.

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

	* Gui/CSharpTextEditorExtension.cs, Parser/Resolver.cs,
	  CSharpAmbience.cs: Code completion of overridable members. Yay!

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

	* Parser/CodeGenerator.cs: Properly look for property references.

2007-01-31  Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/Resolver.cs: Properly resolve alias directives. Fixes bug
	  #80248.

2007-01-30  Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/LanguageItemVisitor.cs: Properly resolve calls to local
	  instance methods.

2007-01-30  Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/CSharpVisitor.cs: When creating an enum, explicitely add the
	  System.Enum base class. Make enum files "const".
	* Parser/Resolver.cs: Removed some debug code. Show enum fields only
	  when resolving the type only. Fixes bug #80088.

2007-01-30  Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/Resolver.cs: Fix overloaded operator filter.

2007-01-30  Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/CSharpVisitor.cs, Parser/TypeVisitor.cs: Implemented support
	  for overloaded operators.
	* Parser/Resolver.cs: Exclude operators from the resolve list.
	* Parser/LanguageItemVisitor.cs: When resolving overloads, try to find
	  the closes matching signature.
	* Parser/ExpressionFinder.cs, Parser/SharpDevelopTree/Method.cs: Fix
	  warnings.
	* CSharpAmbience.cs: Properly format method names for overloaded
	  operators.

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

	* gtk-gui/CSharpBinding.CodeGenerationPanelWidget.cs,
	  gtk-gui/gui.stetic: Updated.

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

	* Gui/CodeGenerationPanel.cs, CSharpBindingCompilerManager.cs,
	  Project/CSharpCompilerParameters.cs: Implemented support for
	  CodePage and Win32Icon options.
	* CSharpBinding.mdp, Makefile.am: Updated.
	* gtk-gui/CSharpBinding.CodeGenerationPanelWidget.cs,
	  gtk-gui/generated.cs, gtk-gui/gui.stetic: Implement the options
	  panel using stetic.

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

	* Gui/CSharpTextEditorExtension.cs, CSharpBinding.addin.xml: Created
	  new text editor extension to properly support code completion.
	* CSharpBinding.mdp, Makefile.am: Updated.
	* Parser/CSharpVisitor.cs, Parser/TypeVisitor.cs,
	  Parser/LanguageItemVisitor.cs,
	  Parser/SharpDevelopTree/Destructor.cs,
	  Parser/SharpDevelopTree/Method.cs,
	  Parser/SharpDevelopTree/ReturnType.cs,
	  Parser/SharpDevelopTree/Constructor.cs: Track api changes.
	* Parser/Resolver.cs: Track api changes. Properly resolve instantiated
	  generic types.
	* CSharpAmbience.cs: Properly show generic type names.

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

	* Parser/LanguageItemVisitor.cs: Properly resolve method overloads.
	  Fixes bug #77418.

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

	* CSharpBinding.mdp: Removed old dependency.
	* Parser/TypeVisitor.cs, Parser/SharpDevelopTree/ReturnType.cs: Take
	  into account that the parser returns array dimensions starting at
	  0, not at 1.  Fixed some issues when resolving indexer types. Fixes
	  bug #79382.
	* Parser/LanguageItemVisitor.cs: When visiting an indexer, if there is
	  no indexer (it can be an array access), return the target type.
	* templates/GtkSharp2Project.xpt.xml: Fix template.

2007-01-15  Lluis Sanchez Gual <lluis@novell.com> 

	* templates/GtkSharp2Project.xpt.xml: Use the new partial class model.

2007-01-11  Ankit Jain  <jankit@novell.com>

	* CSharpBindingCompilerManager.cs (Compile): Echo resgen command line
	for debugging purpose.

2007-01-11  Ankit Jain  <jankit@novell.com>

	* CSharpBindingCompilerManager.cs (Compile): .resx file has paths
	relative to the .resx file itself.

2006-12-21  Ankit Jain  <jankit@novell.com>

	* CSharpBindingCompilerManager.cs (Compile): Use project's base
	directory as the working directory when invoking the compiler.
	(DoCompilation): Add param 'working_dir'.

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

	* CSharpBindingCompilerManager.cs: Track changes in FileService API.

2006-12-15  Ankit Jain  <jankit@novell.com>

	* CSharpBindingCompilerManager.cs (Compile): Filename arg to resgen
	should be quoted.

2006-12-15  Ankit Jain  <jankit@novell.com>

	* CSharpBindingCompilerManager.cs (Compile): Use resgen to convert .resx
	to embeddable resource format (.resources). Handle 'null' resourceId.

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

	* CSharpBinding.mdp, Parser/SharpDevelopTree/CompilationUnit.cs,
	  Parser/SharpDevelopTree/Indexer.cs,
	  Parser/SharpDevelopTree/Parameter.cs,
	  Parser/SharpDevelopTree/Event.cs, Parser/SharpDevelopTree/Field.cs,
	  Parser/SharpDevelopTree/Property.cs, Makefile.am: Removed some
	  unnecessary Default* subclasses.
	* Parser/Parser.cs, Parser/CSharpVisitor.cs, Parser/Resolver.cs,
	  Parser/SharpDevelopTree/Destructor.cs,
	  Parser/SharpDevelopTree/Method.cs,
	  Parser/SharpDevelopTree/ReturnType.cs,
	  Parser/SharpDevelopTree/Class.cs,
	  Parser/SharpDevelopTree/Constructor.cs,
	  Parser/SharpDevelopTree/AttributeSection.cs: Renamed Abstract*
	  classes to Default*. Removed some unnecessary Default* subclasses.

2006-12-13  Ankit Jain  <jankit@novell.com>

	* Project/CSharpCompilerParameters.cs (Win32Resource): New.
	* CSharpBindingCompilerManager.cs (Compile): Generate 
	option for Win32Resource. Don't generate option for win32icon 
	if win32resource is defined.

2006-12-12  Ankit Jain  <jankit@novell.com>

	* CSharpBindingCompilerManager.cs (Compile): Use ProjectFile.ResourceId
	for embedded resources.

2006-11-17  Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/Parser.cs: Why ParseMethodModies was set to false?
	  re-enabling. Fixes local variable code completion.

2006-11-14  Ankit Jain  <jankit@novell.com>

	* Gui/CodeGenerationPanel.cs (CodeGenerationPanelWidget.ctor): Add
	missing 'Module' option for compile target.

2006-11-13 David Makovský (Yakeen) <yakeen@sannyas-on.net>

	* Parser/SharpDevelopTree/CompilationUnit.cs: returning Tag colection
	* Parser/Parser.cs: filling comments into compilation unit

2006-11-11 David Makovský (Yakeen) <yakeen@sannyas-on.net>

	* Gui/CodeGenerationPanel.cs: fix for bug 79199
	
2006-09-21 Lluis Sanchez Gual  <lluis@novell.com> 

	* Parser/Resolver.cs: Fixed null check.

2006-09-12 Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>

	* CSharpBindingCompilerManager.cs: Fixed win32 pathing issues, removed old mcs-specific compiler options (that weren't being used since [g]mcs options have been aligned with csc options), removed /bin/sh dependence.
	* Project/CSharpCompilerParameters.cs: Changed default compiler to mcs.

2006-09-12 Jacob Ilsø Christensen <jacobilsoe@gmail.com>
	
	* Parser/CSharpVisitor.cs: Fixed compile warning.
	* CSharpAmbience.cs: Track changes in Ambience.

2006-09-01 Lluis Sanchez Gual  <lluis@novell.com>

	* CSharpBinding/CSharpAmbience.cs: Avoid appending the class
	  name twice.

2006-08-07 Philip Turnbull <philip.turnbull@gmail.com>

	* CSharpBinding/CSharpBinding.addin.xml:
	Changed CSharpAmbience name from 'CSharp' to 'C#'.

	* CSharpBinding/CSharpAmbience.cs:
	Track API changes in Ambience.

2006-08-02 Lluis Sanchez Gual  <lluis@novell.com>

	* Parser/Resolver.cs: Added null check.

2006-07-30 Matej Urbas <matej.urbas@gmail.com>

	* CSharpAmbience.cs: Fixed a curious null exception.
	* Parser/CSharpVisitor.cs: Updated the visitor to store generic data as
	  parsed by NRefactory.
	* Parser/LanguageItemVisitor.cs:
	* Parser/TypeVisitor.cs: Updated the way various expressions are
	  treated in the code - to accommodate to new data for generics.
	* Parser/SharpDevelopTree/ReturnType.cs: Added support for generics in
	  return types.

	* Parser/SharpDevelopTree/GenericParameter.cs: The new file
	* CSharpBinding.mdp: Added the new file to the project.
	* Makefile.am: Added the new file to the project.

2006-07-28 Matej Urbas <matej.urbas@gmail.com>

	* CSharpAmbience.cs: Fixed the way generics and delegates are shown in the
	  code completion popup, and made some optimizations along the way.

2006-07-23 Matej Urbas <matej.urbas@gmail.com>

	* CSharpAmbience.cs: Small cosmetic corrections when converting generic
	  types

2006-07-17 Lluis Sanchez Gual  <lluis@novell.com>

	* Autotools/CSharpAutotoolsSetup.cs: Support compilation with gmcs.
	* CSharpBindingCompilerManager.cs: Track changes in SystemAssemblyService.

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

	* Parser/Resolver.cs: Use a more meaningful name for the "current unit".
	  Store the name of the file being resolved in currentFile.
	  Changed SearchVariable, so it now returns a LocalVariable object,
	  with all information, including the region.
	* Parser/LanguageItemVisitor.cs: Fix crash when processing indexers.
	  Return valid values for object creation expressions.
	* Parser/SharpDevelopTree/ReturnType.cs: Added constructor which
	  takes a properly resolved class as parameter.

2006-07-10 Alejandro Serrano <trupill@yahoo.es>
 
	* CSharpAmbience.cs: Add support for generics ambience.
	* Autotools/Makefile.am: Fixed error on compilation because
	  of a not found reference.

2006-07-05 Matej Urbas <matej.urbas@gmail.com>
 
	* CSharpAmbience.cs: Fixed a regression that displayed all base types of a
	  class to be of PersistentReturnType type.
	* Parser/CodeGenerator.cs:
	* Parser/CSharpVisitor.cs:
	* Parser/Resolver.cs: Updated to use ReturnType as BaseTypes in IClass
	  instances.
 
2006-07-04  Michael Hutchinson <m.j.hutchinson@gmail.com>

	* CSharpEnhancedCodeProvider.cs: Fix parsing of imports

2006-07-03 Lluis Sanchez Gual  <lluis@novell.com> 

	* CSharpLanguageBinding.cs:
	* CSharpBindingCompilerManager.cs: Track changes in ProjectReference.
	  Removed obsolete GenerateMakefile method.
	* Parser/CodeGenerator.cs: Fix member reference location.
	* Parser/ExpressionFinder.cs: Fix warning.
	* CSharpBinding.addin.xml: Updated versions.

2006-06-29  Michael Hutchinson <m.j.hutchinson@gmail.com>

	* CSharpBinding.mdp:
	* Makefile.am:
	* CSharpEnhancedCodeProvider.cs:
	New file, implements CodeDom methods CreateParser and Parse.
	
	* CSharpLanguageBinding.cs: Use new CSharpEnhancedCodeProvider.
	
	* CSharpBinding.addin.xml: Bump version so that AspNetAddIn can take 
	a dependency on the CodeProvider's CreateParser method.

2006-06-15 Scott Ellington  <scott.ellington@gmail.com>

	* Autotools/CSharpAutotoolsSetup.cs:
	
2006-06-15 Lluis Sanchez Gual  <lluis@novell.com>

	* CSharpBinding.addin.xml: Use the DataType element instead fof Class
	  to declare serializable types.

2006-06-07 Scott Ellington  <scott.ellington@gmail.com>

	* CSharpBinding.addin.xml:
	* Autotools/CSharpAutotoolsSetup.cs:
	* Autotools/Makefile.am:
	* Makefile.am:
	Add optional module for implementing simple autotools support

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

	* Parser/Parser.cs:
	* Parser/CSharpVisitor.cs: 
	* Parser/Resolver.cs:
	* Parser/TypeVisitor.cs:
	* Parser/CodeGenerator.cs:
	* Parser/LanguageItemVisitor.cs:
	* Parser/ExpressionFinder.cs:
	* Parser/SharpDevelopTree/Destructor.cs:
	* Parser/SharpDevelopTree/Indexer.cs:
	* Parser/SharpDevelopTree/Method.cs:
	* Parser/SharpDevelopTree/Event.cs:
	* Parser/SharpDevelopTree/ReturnType.cs:
	* Parser/SharpDevelopTree/Field.cs:
	* Parser/SharpDevelopTree/Property.cs:
	* Parser/SharpDevelopTree/Class.cs:
	* Parser/SharpDevelopTree/Constructor.cs:
	* parse.cs:
	* Makefile.am: Use the new NRefactory library.

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

	* CSharpBinding.addin.xml: Updated versions.
	* CSharpBinding.mdp: Updated.

2006-04-24 Lluis Sanchez Gual <lluis@novell.com> 

	* Parser/Resolver.cs: Fix nullref caused by delegates not having
	  a region or bodyRegion. Fixes bug #78143.

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

	* CSharpLanguageBinding.cs: Implement GetSupportedClrVersions.
	* CSharpBinding.addin.xml: Added panel por selecting the target
	  runtime version.
	* CSharpBindingCompilerManager.cs: Support compilation for .net 2.0.
	
	* Parser/ExpressionFinder.cs:
	* Parser/LanguageItemVisitor.cs: Fixed warnings.

2006-04-18 Lluis Sanchez Gual  <lluis@novell.com>

	* templates/GladeSharpProject.xpt.xml:
	* templates/GladeSharp2Project.xpt.xml: Remove gnome dependency
	  from the glade file template. Fix by Sebastian Dröge.

2006-04-07  David Makovský (Yakeen) <yakeen@sannyas-on.net>

	* CSharpBinding.addin.xml: renamed attributes in FileFilter Extension

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

	* Makefile.am: Reference nunit libraries using $(NUNIT_LIBS).

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

	* templates/GtkSharp2Project.xpt.xml: Fix window
	  constructor.

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

	* CSharpBinding.addin.xml: Updated references.

2006-03-24  Jacob Ilsø Christensen <jacobilsoe@gmail.com>

	* templates/ConsoleProject.xpt.xml: Added namespace clause.

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

	* CSharpBinding.mdp: Updated.
	* Makefile.am: Use an unified format. Patch by Matze Braun.
	* CSharpBinding.addin.xml: Updated add-in versions.

2006-03-24  Jacob Ilsø Christensen <jacobilsoe@gmail.com>

	* Test:
	* Test/Test.cs:
	* Makefile.am:
	Added an initial test which validates that the resolver
	can resolve namespaces.

2006-03-17  Jacob Ilsø Christensen <jacobilsoe@gmail.com>

	* Parser/Parser.cs:
	* Parser/Resolver.cs:
	Removed unused MonodocResolver.

2006-03-16  Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* Parser/LanguageItemVisitor.cs: Make sure that composite
	namespaces are parsed correctly.

2006-03-12  David Makovský (Yakeen) <yakeen@sannyas-on.net>

        * CSharp.glade: Marking some strings not to be translated. Not include balast in pot file.
	
2006-03-08 Lluis Sanchez Gual  <lluis@novell.com>   

	* Parser/CodeGenerator.cs: Fixed issues when finding class
	  references. Add text line to found references.
	* Parser/LanguageItemVisitor.cs: Properly resolve primitive
	  type aliases.

2006-03-07 Lluis Sanchez Gual  <lluis@novell.com>   

	* Makefile.am:
	* CSharpBinding.addin.xml: Moved some templates to MD.Ide.

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

	* Parser/CSharpVisitor.cs: Added null check.

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

	* templates/GtkSharp2Project.xpt.xml: Use the new template syntax.

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

	* Parser/CSharpVisitor.cs: Generate parse information for
	  delegates.

2006-01-30 Lluis Sanchez Gual  <lluis@novell.com>   

	* Parser/Resolver.cs:
	* Parser/Parser.cs: Track changes in parser api.

2006-01-26 Lluis Sanchez Gual  <lluis@novell.com>   

	* CSharpBinding.addin.xml: Removed BlankCombine template (now
	in MonoDevelop.Ide).
	* Parser/CodeGenerator.cs: Properly find members referenced
	in subclasses.
	* Parser/LanguageItemVisitor.cs: Visit methods must always
	return a ILanguageItem.
	
	* templates/GtkSharpProject.xpt.xml:
	* templates/GnomeSharp2Project.xpt.xml:
	* templates/GladeSharp2Project.xpt.xml:
	* templates/GnomeSharpProject.xpt.xml:
	* templates/GladeSharpProject.xpt.xml: Moved to a Samples subcategories
	for now, to reduce clutter.

2006-01-15  Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* Parser/CSharpVisitor.cs: Make sure that a null modifier
	is not passed to the Field constructor which is the case
	for enum members. Fixes bug 77080.

2006-01-13 Lluis Sanchez Gual  <lluis@novell.com>   

	* templates/GtkSharpProject.xpt.xml:
	* templates/GnomeSharp2Project.xpt.xml:
	* templates/GladeSharp2Project.xpt.xml:
	* templates/GnomeSharpProject.xpt.xml:
	* templates/GtkSharp2Project.xpt.xml:
	* templates/GladeSharpProject.xpt.xml: Moved project templates to
	the C# category, since they are C# templates.

2006-01-10 Lluis Sanchez Gual  <lluis@novell.com>   

	* Makefile.am:
	* CSharpBinding.mdp: Added Parser/LanguageItemVisitor.cs.
	
	* Parser/Parser.cs: Track api changes. Implemented ResolveIdentifier.
	* Parser/CSharpVisitor.cs: Store attribute values in CodeExpression
	instances.
	* Parser/Resolver.cs: Implemented ResolveIdentifier.
	* Parser/ExpressionFinder.cs: Updated from SharpDevelop.
	* Parser/SharpDevelopTree/AttributeSection.cs: Track api changes.
	
2005-12-19  Lluis Sanchez Gual  <lluis@novell.com> 

	* Parser/CodeGenerator.cs: Track api changes. Added support for
	renaming other member types (untested).

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

	* Parser/Parser.cs: Track api changes.
	* CSharpLanguageBinding.cs: Implemented the new methods in
	IDotNetLanguageBinding.
	* CSharpBinding.addin.xml: Removed some templates that don't really
	belong here.
	* CSharpBinding/CSharpBinding.mdp: Updated.
	
	* Parser/SharpDevelopTree/AttributeSection.cs:
	* Parser/CSharpVisitor.cs: Properly collect region and attribute
	information. This is a patch by Alex Gomes.
	Also: properly set the declaring type to class members.
	
	* Parser/Resolver.cs: Added two new methods: ResolveExpressionType
	returns the type of an arbitrary expression. ResolveIdentifier returns
	information about an identifier.
	
	* Parser/SharpDevelopTree/Indexer.cs:
	* Parser/SharpDevelopTree/Method.cs:
	* Parser/SharpDevelopTree/Parameter.cs:
	* Parser/SharpDevelopTree/Event.cs:
	* Parser/SharpDevelopTree/Field.cs:
	* Parser/SharpDevelopTree/Property.cs:
	* Parser/SharpDevelopTree/Class.cs:
	* Parser/SharpDevelopTree/Constructor.cs:
	* Parser/SharpDevelopTree/Destructor.cs: Set the declaring type to
	class members.
	
	* templates/*: Set the correct category, language and project type.
	* Parser/CodeGenerator.cs: Initial implementation of IRefactorer.

2005-11-17  Lluis Sanchez Gual  <lluis@novell.com>

	* templates/GtkSharpProject.xpt.xml:
	* templates/GnomeSharp2Project.xpt.xml:
	* templates/GladeSharp2Project.xpt.xml:
	* templates/ConsoleProject.xpt.xml:
	* templates/GnomeSharpProject.xpt.xml:
	* templates/GtkSharp2Project.xpt.xml:
	* templates/GladeSharpProject.xpt.xml:
	* templates/Library.xpt.xml: Added a reference to the System assembly
	in all project templates.
	
	* Makefile.am: Rebuild the assembly when resources are modified. 

2005-11-09  John Luke  <john.luke@gmail.com>

	* FormattingStrategy/CSharpFormattingStrategy.cs:
	use trimlineAboveText to decide whether to indent things
	like single line if, else, for, etc.
	second half of fix for bug # 76652
	
2005-10-28  John Luke  <john.luke@gmail.com>

	* FormattingStrategy/CSharpFormattingStrategy.cs:
	improve indentLine slightly, we want the indention +
	trimmed line, not the addional whitespace in front of it
	remove some old disabled/unported code

2005-10-23  John Luke  <john.luke@gmail.com>

	* CSharpBinding.addin.xml: add FormattingStrategy
	
2005-10-11  John Luke  <john.luke@gmail.com>

	* CSharpAmbience.cs: comment out SharpAssembly stuff
	
2005-10-11  Lluis Sanchez Gual  <lluis@novell.com>

	* CSharpBinding.addin.xml: Fixed incorrect class name.

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

	* CSharpBinding.addin.xml: Fixed addin header information.
	Use "id" attribuet instead of "name" to identify addins.

2005-10-06  John Luke  <john.luke@gmail.com> 

	* CSharpBindingCompilerManager (GenerateMakefile): fix mistaken
	empty statement warning
	
2005-10-06  Lluis Sanchez Gual  <lluis@novell.com> 

	* CSharpBinding.addin.xml:
	* CSharpLanguageBinding.cs: Register serializable types in the addin
	configuration file.

2005-10-04  Lluis Sanchez Gual  <lluis@novell.com> 

	* CSharpBinding.addin.xml: Added addin dependencies.

2005-09-23  Peter Johanson  <latexer@gentoo.org>

	* CSharpBindingCompilerManager.cs: Fix mcs location detection.

2005-08-20  Peter Johanson  <latexer@gentoo.org>

	* templates/GnomeSharp2Project.xpt.xml:
	* templates/GladeSharp2Project.xpt.xml:
	* templates/GtkSharp2Project.xpt.xml: Change gtk-sharp references to
	match new assembly versions.

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

	* CSharpAmbience.cs: Don't include the inheritance tree when converting
	an enum.

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

	* templates/*:
	* CSharpBinding.addin.xml: Properly reference resource icons and
	templates.
	* Makefile.am: Embed icon and templates as resources.

2005-08-10  Ben Motmans  <ben.motmans@gmail.com>

	* CSharpBinding.mdp: references update

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

	* CSharpBindingCompilerManager.cs: Disable implicit references to
	system assemblies. All references must now be explicitely specified.

2005-08-06  Ben Motmans  <ben.motmans@gmail.com>

	* CSharpBindingCompilerManager.cs: correctly parse mcs errors.

2005-08-09  Lluis Sanchez Gual  <lluis@novell.com> 

	* Parser/Parser.cs:
	* Parser/Resolver.cs:
	* Gui/CodeGenerationPanel.cs: Use the new IParserContext API.
	
	* Parser/TypeVisitor.cs: Made the class internal.

2005-07-18  Lluis Sanchez Gual  <lluis@novell.com>

	* CSharp.glade:
	* Gui/CodeGenerationPanel.cs: Use a combo entry for the main class
	field. Disable that entry when building a library.

2005-07-14  Ben Motmans  <ben.motmans@gmail.com>

	* templates/GladeSharp2Project.xpt.xml:
	removed duplicate reference to glade-sharp-2.0

2005-07-11  Lluis Sanchez Gual  <lluis@novell.com>

	* Project/CSharpCompilerParameters.cs: Implement ICloneable.
	* CSharpLanguageBinding.cs: CreateCompilationParameters now returns an
	ICloneable.

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

	* CSharp.glade: Several fixes to make the dialogs more conforming
	to the HIG.

2005-04-17  John Luke  <john.luke@gmail.com>

	* Makefile.am: fix distcheck

2005-04-09  John Luke  <john.luke@gmail.com>

	* PrettyPrinter: kill (it was empty)
	* Parser/ExpressionFinder.cs: remove redundent assignment
	to fix warning
	* Gui/CodeGenerationPanel.cs: remove unused StringParserService
	section

2005-03-20  John Luke  <john.luke@gmail.com>

	* CSharpBindingCompilerManager.cs: display warning on invalid
	reference lookup, partial fix for bug #70645

2005-03-07  Lluis Sanchez Gual  <lluis@novell.com>

	* Parser/Resolver.cs: Track api changes.

2005-02-16  Ben Motmans  <ben.motmans@gmail.com>

	* ConsoleProject.xpt.xml:
	* CSharpSessionStateWebService.xpt.xml:
	* CSharpWebService.xpt.xml:
	* Library.xpt.xml:
	Consistent naming

	* GladeSharp2Project.xpt.xml:
	* GnomeSharp2Project.xpt.xml:
	* GtkSharp2Project.xpt.xml:
	* CSharpBinding.addin.xml:
	* Makefile.am:
	Added templates

2005-02-18  John Luke  <john.luke@gmail.com>

	* CSharpCompilerManager.cs: pass /optimize if enabled

2005-02-05  John Luke  <john.luke@gmail.com>

	* Gui/CodeGenerationPanel.cs: enable doc generation

2005-02-01  John Luke  <john.luke@gmail.com>

	* Parser/Parser.cs: use ErrorInfo

2005-01-28  John Luke  <john.luke@gmail.com>

	* Parser/Resolver.cs (IsAccessible):
	internal should return true
	fixes bug# 60526

2005-01-28  John Luke  <john.luke@gmail.com>

	* Parser/Resolver.cs: remove incorrect special case
	for properties that made them visible to completion
	incorrectly on static to instance and vice-versa
	fixes bug# 69741

2005-01-28  John Luke  <john.luke@gmail.com>

	* Parser/Parser.cs: update to CanParse
	* Parser/*.cs: update some minor fixes from SD

2005-01-27  John Luke  <john.luke@gmail.com>

	* CSharpBindingCompilerManager.cs:
	* Parser/CSharpVisitor.cs:
	* Parser/Resolver.cs:
	* FormattingStrategy/CSharpFormattingStrategy.cs: comment out
	some unused lines that produced warnings

2005-01-27  John Luke  <john.luke@gmail.com>

	* CSharp.glade: update to new glade format
	* Gui/CodeGenerationPanel.cs:
	* CSharp.glade: use ComboBox instead of OptionMenu

2005-01-26  John Luke  <john.luke@gmail.com>

	* templates/GtkSharpProject.xpt.xml
	* templates/GnomeSharpProgram.xft.xml
	* templates/GladeSharpProject.xpt.xml: clean up,
	consistent naming, spacing, tabbing

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

	* CSharpLanguageBinding.cs: 
	* CSharpBindingCompilerManager.cs: Use the new progress monitor API.
	
2005-01-11  Lluis Sanchez Gual  <lluis@novell.com>

	* CSharpLanguageBinding.cs: 
	* Gui/ChooseRuntimePanel.cs:
	* Gui/CodeGenerationPanel.cs:
	* CSharpBindingCompilerManager.cs:
	* CSharpBinding.addin.xml:
	* Parser/Parser.cs:
	* Parser/Resolver.cs: Follow architecture changes.
	
	* Project/CSharpCompilerParameters.cs: Moved some parameters and enum
	definitions to DotNetProjectConfiguration.
	
	* CSharp.glade:
	* Gui/OutputOptionsPanel.cs: Removed dialog now implemented in Monodevelop.Base.

	* Project/CSharpProject.cs:
	* CSharpBindingExecutionManager.cs.in: Removed. Not needed any more.
	
	* Makefile.am: Updated.

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

	* CSharpBindingCompilerManager.cs: StatusBarService.ProgressMonitor is
	not a StatusBar widget any more.

2004-12-09  Todd Berman  <tberman@off.net>

	* CSharpBindingCompilerManager.cs: mcs in Mono 1.1.3 now outputs error
	on stderr instead of stdout. The old code just inspected stdout, now
	we look at both.

2004-12-08  Everaldo Canuto  <everaldo_canuto@yahoo.com.br>

	* CSharpBindingCompilerManager.cs: Add support to multiple compilers
	in Makefiles generated by MonoDevelop.

2004-12-07  Alexandre Gomes <alexmipego@hotmail.com>

	* CSharpLanguageBinding.cs: Added CommentTag to be used by (Un)CommentCode

2004-11-16  Todd Berman  <tberman@off.net>

	* CSharpBindingCompilerManager.cs: Properly output local assembly
	references.

2004-11-09  Todd Berman  <tberman@off.net>

	* CSharpBindingCompilerManager.cs: Use SAS for assembly detection.
	This doesnt seem to break anything for me.

2004-11-05  Levi Bard  <taktaktaktaktaktaktaktaktaktak@gmail.com>
      
	* Parser/Parser.cs: Added HandlesFileExtension to work with new
	IParser

2004-11-01  Todd Berman  <tberman@off.net>

	* CSharpBindingExecutionManager.cs.in: Add fu to actually properly run
	the execute script.

2004-09-25  Peter Johanson <latexer@gentoo.org>

	* CSharpBindingCompilerManager.cs: Hack to a hack to fix compilation
	on 1.1.1 with the new corlib location.

2004-09-20  Valters Svabe  <valters@inbox.lv>

	* CSharpBindingExecutionManager.cs.in: Respect PauseConsoleOutput
	option.

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

	* Parser/Resolver.cs: When locating the inner or outer classes, get the 
	  class from the parser service, since it has all type names resolved 
	  (the one got from the compilation unit does not).

2004-07-05  Todd Berman  <tberman@off.net>

	* CSharpBindingExecutionManager.cs: removed.
	* CSharpBindingExecutionManager.cs.in: Added
	* Makefile.am: modified.
	This patch is from Marcin Krzyzanowski <krzak@pld-linux.org> and it
	fixes mint issues.

2004-07-04  John Luke  <jluke@cfl.rr.com>

	* Gui/OutputOptionsPanel.cs: use MessageService, remove ResourceService

2004-07-01  Todd Berman  <tberman@off.net>

	* Parser/Resolver.cs: fix up CtrlSpace resolving to add this. members
	to the completion window. We need to figure out what is causing the
	public class MyWindow : Window not working but the public class
	MyWindow : Gtk.Window still works and this stuff will look good.
	* Gui/OutputOptionsPanel.cs: remove dup'd namespace.

2004-06-22  John Luke <jluke@cfl.rr.com>

	* CSharpBindingCompilerManager.cs: be explicit when copying the
	assembly to avoid silent failures (use build/bin/. not build/bin)

2004-06-17  John Luke  <jluke@cfl.rr.com>

	* Gui/OutputOptionsPanel.cs: Use MonoDevelop.Gui.Widgets.FileSelector
	instead of Gtk.FileSelection

2004-05-30  Lluis Sanchez Gual  <lluis@ximian.com>

	* Parser/Resolver.cs: Resolve base classes using a deep search in all
	  project references. In SearchType, fixed namespace lookup so it works
	  for inner classes as well.

2004-05-27  Todd Berman  <tberman@sevenl.net>

	* CSharpBindingCompilerManager.cs: fix up projects with space in
	their name.

2004-05-26  Todd Berman  <tberman@sevenl.net>

	* CSharpBindingCompilerManager.cs: more makefile magic.

2004-05-25  Todd Berman  <tberman@sevenl.net>

	* Parser/Parser.cs: Update MonodocResolver and IsAsResolver.
	* Parser/Resolver.cs: Update MonodocResolver and IsAsResolver

2004-05-25  Lluis Sanchez Gual  <lluis@ximian.com>

	* Parser/Parser.cs: Set the file name to the region of each parsed class.
	  Added IProject parameter in CtrlSpace and Resolve.
	* Parser/Resolver.cs: Added IProject parameter where needed. Use new 
	  methods in IParserService.

2004-05-25  Todd Berman  <tberman@sevenl.net>

	* CSharpLanguageBinding.cs: signature change for GenerateMakefile
	* CSharpBindingCompilerManager.cs: lots of new stuff, make run compat
	stuff, etc, etc

2004-05-22  Todd Berman  <tberman@sevenl.net>

	* CSharpBindingCompilerManager.cs: add "s to work around potential
	spaces... spaces... urgh. closes bug #58840

2004-05-18  Todd Berman  <tberman@sevenl.net>

	* CSharpBindingCompilerManager.cs: add a warning to the top of the
	makefiles.

2004-05-18  Todd Berman  <tberman@sevenl.net>

	* CSharpBindingCompilerManager.cs: change from /option to -option

2004-05-16  Todd Berman  <tberman@sevenl.net>

	* CSharpBindingCompilerManager.cs: output a much better makefile.
	now using /pkg, checking for deps, etc.
	* Parser/Parser.cs: passthrough for Monodoc resolver.
	* Parser/Resolver.cs: New resolver for identifying a type and sending
	back a monodoc url for it. It needs to be worked on to return proper
	M: style urls in addition to T: style urls.

2004-05-08  Todd Berman  <tberman@sevenl.net>

	* CSharpBindingCompilerManager.cs: output /define and /main properly.

2004-05-08  Todd Berman  <tberman@sevenl.net>

	* CSharpBindingCompilerManager.cs: output /unsafe properly.

2004-04-29  Todd Berman  <tberman@sevenl.net>

	* CSharpBindingCompilerManager.cs: add a clean target

2004-04-28  Todd Berman  <tberman@sevenl.net>

	* CSharpBindingExecutionManager.cs: People running apps from the IDE
	can be assumed to want line numbers if we can give them. Adding --debug
	to the execution.

2004-04-28  Todd Berman  <tberman@sevenl.net>

	* CSharpBindingCompilerManager.cs: add code for project references.

2004-04-28  Todd Berman  <tberman@sevenl.net>

	* CSharpBindingCompilerManger.cs: add code for assembly references
	and embeding resources.

2004-04-28  Todd Berman  <tberman@sevenl.net>

	* CSharpLanguageBinding.cs: implemented GetMakefile passthru.
	* CSharpBindingCompilerManager.cs: dirty dirty dirty first draft run
	through of GenerateMakefile, I have tested this with exactly *one*
	project, and that is all, just wanted to get something in svn.

2004-04-24  Todd Berman  <tberman@sevenl.net>

	* Parser/Parser.cs: new IsAsResolver passthrough.
	* Parser/Resolver.cs: new IsAsResolver to manage some (limited)
	completion there.

2004-04-23  John Luke  <jluke@cfl.rr.com>

	* CsharpBindingCompilerManager.cs: add /codepage:utf8

2004-04-19  Todd Berman  <tberman@sevenl.net>

	* Parser/Resolver.cs: Turn local variables into a properly consumable
	type for code completion.

2004-04-09  Todd Berman  <tberman@sevenl.net>

	* CSharpBindingCompilerManager.cs: Show that something is going
	on so people dont get too worried. (Speed might need some work)
	* Makefile.am: add glib

2004-04-04  John Luke  <jluke@cfl.rr.com>

	* CSharpBindingExecutionManager.cs: improve error message

2004-04-03  Todd Berman  <tberman@sevenl.net>

	* Gui/OutputOptionsPanel.cs:
	* Gui/CodeGenerationPanel.cs: gettextify

2004-04-03  Todd Berman  <tberman@sevenl.net>

	* Project/CSharpCompilerParameters.cs: duh, refix library target bug

2004-04-01  Todd Berman  <tberman@sevenl.net>

	* Gui/OutputOptionsPanel.cs: parse resource string, closes bug #56325

2004-03-31  Todd Berman  <tberman@sevenl.net>

	* CSharpBindingExecutionManager.cs: dont test CompileTarget, for now
	assume *everything* is being run in a terminal and pausing for output.

2004-03-31  Todd Berman  <tberman@sevenl.net>

	* Makefile.am: i think this fixed nick's bug.

2004-03-28  John Luke  <jluke@cfl.rr.com>

	* Parser/Resolver.cs: comment some CWL's that were causing exceptions

2003-03-27  Todd Berman  <tberman@sevenl.net>

	* *: update parser and other things from upstream.

2003-03-26  John Luke  <jluke@cfl.rr.com>

	* CSharpBindingExecutionManager.cs: use xterm instead of
	gnome-terminal, fixes bug #53689 and also works when people
	don't have gnome-terminal installed

2004-03-22  Todd Berman  <tberman@sevenl.net>

	* Project/CSharpCompilerParameters.cs: reverse WinExe and Library in
	the enum, closing bug #55881. fix from vdaron

2004-03-21  Todd Berman  <tberman@sevenl.net>

	* Parser/Parser.cs:
	* Parser/CSharpVisitor.cs:
	* Parser/Resolver.cs:
	* Parser/TypeVisitor.cs:
	* Parser/SharpDevelopTree/Indexer.cs:
	* Parser/SharpDevelopTree/Method.cs:
	* Parser/SharpDevelopTree/Event.cs:
	* Parser/SharpDevelopTree/ReturnType.cs:
	* Parser/SharpDevelopTree/Field.cs:
	* Parser/SharpDevelopTree/Property.cs:
	* Parser/SharpDevelopTree/Constructor.cs:
	* Parser/SharpDevelopTree/Class.cs: changes to reflect brand spankin
	new parser. (from #D)