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

ChangeLog « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aacff607c2cdcea3aa2aed8174cfd934154bcf9f (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
2006-02-26  Gert Driesen  <drieseng@users.sourceforge.net>

	* corlib.dll.sources: Removed DecimalFormatter.cs.

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

	* corlib_test.dll.sources: Add ArraySegmentTest.cs

2006-01-26  Zoltan Varga  <vargaz@gmail.com>

	* corlib.dll.sources: Add DebuggerNonUserCodeAttribute.cs and 
	SuppressMessageAttribute.cs.

2006-01-19  Raja R Harinath  <rharinath@novell.com>

	* Makefile: Simplify.  Remove support for corlib_plattest and reslib.
	* corlib_plattest.dll.excludes, corlib_res.dll.excludes: remove.

2006-01-18  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : corlib_plattest dll is now profile-aware.

2006-01-13  Robert Jordan  <robertj@gmx.net>

	* corlib.dll.sources: Added System.Resources/ResourceManagerTest.cs

2006-01-05  Kornel Pal  <kornelpal@hotmail.com>

	* corlib.dll.sources: Added DriveNotFoundException.cs in System.IO.

2005-12-23  Dick Porter  <dick@ximian.com>

	* corlib.dll.sources: Added System.Security.AccessControl.MutexRights

2005-12-17  Dick Porter  <dick@ximian.com>

	* corlib.dll.sources: Added in System.Security.AccessControl:
	CommonObjectSecurity.cs, EventWaitHandleRights.cs,
	EventWaitHandleSecurity.cs, ObjectSecurity.cs, MutexSecurity.cs,
	NativeObjectSecurity.cs.  Added in System.Threading:
	AbandonedMutexException.cs, EventResetMode.cs, EventWaitHandle.cs,
	ThreadStartException.cs

2005-12-15  Gert Driesen  <drieseng@users.sourceforge.net>

	* corlib_test.dll.sources: Added ObjectManagerTest.cs in
	System.Runtime.Serialization.

2005-12-07  Zoltan Varga  <vargaz@gmail.com>

	* corlib.dll.sources: Remove obsolete System.Runtime.InteropServices/NewConstraintAttribute.cs.

2005-12-02  Robert Jordan  <robertj@gmx.net>

        * corlib_test.dll.sources: Added System.Reflection/ReflectedTypeTest.cs.

2005-11-28  Atsushi Enomoto  <atsushi@ximian.com>

	* corlib.dll.sources: added EncodingInfo.cs.

2005-11-28  Atsushi Enomoto  <atsushi@ximian.com>

	* corlib.dll.sources: added UTF32Encoding.cs.

2005-11-17  Zoltan Varga  <vargaz@gmail.com>

	* corlib.dll.sources: Add System.Runtime.InteropServices.DefaultParameterValueAttribute.cs.

2005-11-15  Atsushi Enomoto  <atsushi@ximian.com>

	* corlib_test.dll.sources:
	  Added EncoderReplacementFallbackBudderTest.cs.

2005-11-15  Atsushi Enomoto  <atsushi@ximian.com>

	* corlib_test.dll.sources:
	  Added DecoderReplacementFallbackBudderTest.cs.

2005-11-15  Zoltan Varga  <vargaz@gmail.com>

	* corlib.dll.sources: Readd NewConstraintAttribute.cs as gmcs depends on it.
	
	* corlib.dll.sources: Remove obsolete net 2.0 classes.

2005-11-15  Atsushi Enomoto  <atsushi@ximian.com>

	* corlib_test.dll.sources: added new tests for
	  DecoderReplacementFallback and EncoderReplacementFallback.

2005-11-15  Atsushi Enomoto  <atsushi@ximian.com>

	* corlib.dll.sources: Encoder support types in System.Text as well.

2005-11-14  Atsushi Enomoto  <atsushi@ximian.com>

	* corlib.dll.sources: added new .NET 2.0 Decoder support types in
	  System.Text.

2005-11-06  Zoltan Varga  <vargaz@freemail.hu>

	* corlib.dll.sources: Add System.IO/SearchOption.cs.

2005-11-05  Robert Jordan  <robertj@gmx.net>

	* corlib.dll.sources: Added System.Runtime.Remoting.Channels/ISecurableChannel.cs

2005-10-26  Zoltan Varga  <vargaz@gmail.com>

	* corlib.dll.sources: Add System.Runtime.InteropServices/IsCopyConstructed.cs.

	* corlib.dll.sources: Add/Remove some net 2.0 classes in System.Runtime.CompilerServices.

2005-10-25  Atsushi Enomoto  <atsushi@ximian.com>

	* corlib_test.dll.sources : added System.Collections.ObjectModel/KeyedCollectionTest.cs.

2005-10-07  Zoltan Varga  <vargaz@gmail.com>

	* corlib.dll.sources: Add System.Runtime.CompilerServices/{RuntimeCompatibilityAttribute.cs, RuntimeWrappedException.cs}.

	* corlib_test.dll.sources: Add System/DelegateTest.cs

2005-08-13  Zoltan Varga  <vargaz@freemail.hu>

	* Makefile (EXTRA_DISTFILES): Add resource files. Fixes #75794.

2005-08-10  Zoltan Varga  <vargaz@freemail.hu>

	* corlib.dll.sources: Add System.Runtime.InteropServices/SafeHandle.cs
	and Microsoft.Win32.SafeHandles/SafeHandleZeroOrMinusOneIsInvalid.cs.

2005-08-09  Zoltan Varga  <vargaz@freemail.hu>

	* corlib.dll.sources: Add System.Runtime.CompilerServices/SpecialNameAttribute.cs.

2005-08-08  Atsushi Enomoto  <atsushi@ximian.com>

	* corlib.dll.sources : added managed collation classes
	* Makefile : added resources to build.
	* resources : new directory for collation table resources.

2005-08-06  Gert Driesen  <drieseng@users.sourceforge.net>

	* corlib.dll.sources: Added System.Runtime.InteropServices/
	TypeLibImportClassAttribute.cs.

2005-07-26  Zoltan Varga  <vargaz@freemail.hu>

	* corlib.dll.sources: Add System/StringSplitOptions.cs and System/MidpointRounding.cs.

2005-07-26  Raja R Harinath  <rharinath@novell.com>

	* Makefile: Minor re-org for better readability.  Remove an
	outdated comment.

2005-07-26  Marek Safar  <marek.safar@seznam.cz>

	* corlib.dll.sources: Added System.StringComparer.cs.

2005-07-25  Marek Safar  <marek.safar@seznam.cz>

	* Makefile: `if' for 2.0 warnings only.

2005-07-11  Marek Safar  <marek.safar@seznam.cz>

	* Makefile: Disable warning 414.

2005-06-29  Ben Maurer  <bmaurer@ximian.com>

	* Makefile (TEST_MCS_FLAGS): Remove bad dep on S.Data.

2005-06-23  Sebastien Pouliot  <sebastien@ximian.com> 

	* corlib.dll.sources: Added System.Security.Policy.MonoTrustManager to
	the build (for 2.0).
	* corlib_test.dll.sources: Added unit tests (normal and CAS) for 
	System.Security.Policy.ApplicationSecurityManager.

2005-06-22  Sebastien Pouliot  <sebastien@ximian.com> 

	* corlib_test.dll.sources: Added CAS unit tests for System.Security.
	SecurityManager and CodeAccessPermission to the build.

2005-06-21  David Waite  <mass@akuma.org>

	* corlib_test.dll.sources: Added System.Collections.ObjectModel.Collection test

2005-06-19  Zoltan Varga  <vargaz@freemail.hu>

	* corlib.dll.sources: Add System.Collections.ObjectModel classes.

	* System.Collections.ObjectModel: New directory.

2005-06-12  David Waite  <dwaite@gmail.com>

	* corlib.dll.sources: Add the non-generic IEqualityComparer interface

2005-06-15  Martin Baulig  <martin@ximian.com>

	* System/GenericParameterAttributes.cs: Move to System.Reflection;
	thanks to Kamil Skalski <nazgul@nemerle.org> for pointing this out.

2005-06-10  Sebastien Pouliot  <sebastien@ximian.com> 

	* corlib_test.dll.sources: Added unit tests for System.Security.
	Policy.StrongNameMembershipCondition.

2005-06-07  Sebastien Pouliot  <sebastien@ximian.com> 

	* corlib_test.dll.sources: Added unit tests (normal and CAS) for 
	System.Runtime.InteropServices.RuntimeEnvironment.

2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

	* corlib.dll.sources: Some System.Reflection classes got renamed in net 2.0
	beta 2.

2005-06-04  Ben Maurer  <bmaurer@ximian.com>

	* corlib.dll.sources: IEqualityComparer, etc
	
	* corlib.dll.sources: IEquatable

	* */*.cs: .NET 2.0 fixups

2005-05-30  Sebastien Pouliot  <sebastien@ximian.com> 

	* corlib_test.dll.sources: Added (re-added?) the System.Activator unit
	tests.

2005-05-28  Sebastien Pouliot  <sebastien@ximian.com> 
 
	* corlib.dll.sources: Added System.Runtime.Hosting namespace with 
	ActivationArguments and ApplicationActivator classes. Removed 
	ApplicationActivator from System namespace.

2005-05-27  Sebastien Pouliot  <sebastien@ximian.com> 
 
	* corlib.dll.sources: Added internal System.Security.PermissionBuilder
	class to the build.
	* corlib_test.dll.sources: Added CAS unit tests for System.Security.
	PermissionSet class.

2005-05-26  Sebastien Pouliot  <sebastien@ximian.com> 
 
	* corlib.dll.sources: Removed the *Switcher structures from the build
	(NET_2_0) as they aren't part of the public API (beta2) anymore.
		- System.Threading/CompressedStackSwitcher.cs
		- System.Threading/ExecutionContextSwitcher.cs
		- System.Threading/HostExecutionContextSwitcher.cs
		 -System.Threading/SynchronizationContextSwitcher.cs
	Added System.Security.Policy/DefaultPolicies.cs

2005-05-25  Zoltan Varga  <vargaz@freemail.hu>

	* corlib_test.dll.sources: Add System.Reflection.TypeDelegatorTest.

2005-05-22  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Renamed CER to Cer to match 2.0 beta2.

2005-05-18  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources: Added new CAS tests for System.IO.Stream.

2005-05-15  Andreas Nahr  <ClassDevelopment@A-SoftTech.com>

	* corlib.dll.sources: added various files for System.Runtime.InteropServices

2005-05-13  Atsushi Enomoto  <atsushi@ximian.com>

	* corlib_test.dll.sources,
	  corlib.dll.sources: generic Queue.cs and Stack.cs are now in System.

2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>

	* corlib.dll.sources: replaced MiniParser.cs with SmallXmlParser.cs.

2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Removed SecurityContextSwitcher from build.
	* corlib_test.dll.sources: Added existing CAS unit tests not yet part
	of the build.

2005-05-09  Raja R Harinath  <rharinath@novell.com>

	* Makefile (TEST_COMPILE): Set MONO_PATH.

2005-04-27  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added new classes in System.Security and some
	support classes for X509Certificate (imported from Mono.Security.dll).

2005-04-26  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources: Added unit tests for System.Security.Policy.
	ApplicationTrust class.

2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Do not include "old removed 2.0" (wrt beta2) in
	the mscorlib.dll compilation. The file should be deleted later (if 
	they do not reappear or are required as internal).
	* corlib_test.dll.sources: Removed unit tests for classes removed in 
	beta2.

2005-04-16  Atsushi Enomoto  <atsushi@ximian.com>

	* corlib.dll.sources : added System.Text/NormalizationForm.cs.

2005-04-02  Ben Maurer  <bmaurer@ximian.com>

	* corlib_test.dll.sources: Add new test.

2005-03-24  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources : Added many new CAS unit tests to the build.

2005-03-23  Lluis Sanchez Gual  <lluis@ximian.com>

	* corlib_test.dll.sources: Added new serialization test.

2005-03-15  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources : Added new CAS unit tests BadImageFormat
	Exception, IsolatedStorageFile and IsolatedStorageFileStream.

2005-03-23  Kazuki Oikawa  <kazuki@panicode.com>

	* corlib.dll.sources: Added _ConstructorInfo, _EventInfo,
	_FieldInfo, _MemberInfo, _MethodBase, _MethodInfo, _PropertyInfo,
	_Type, BStrWrapper, ComDefaultInterfaceAttribute, ComObjectInUseException,
	CriticalHandle, DefaultCharSetAttribute, ExposeAsClassToComAttribute,
	RegistrationClassContext, RegistrationConnectionType

2005-03-02  Chris Toshok  <toshok@ximian.com>

	* corlib.dll.sources: add DebuggerBrowsableState,
	DebuggerBrowsableAttribute, DebuggerDisplayAttribute, and
	DebuggerTypeProxyAttribute.

2005-02-26  Kazuki Oikawa  <kazuki@panicode.com>

	* corlib.dll.sources: Removed DoubleFormatter and SingleFormatter.
	Added System.Runtime.InteropServices.ComTypes

2005-02-24  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources : Added new 2.0 unit tests for X.509 
	certificates in System.Security.Cryptography.X509Certificates/
	X509Cert20Test.cs to the build.

2005-02-21  Michal Moskal  <malekith@pld-linux.org>

	* Makefile (LIBRARY_INSTALL_DIR): Define in terms of $(libdir).

2005-02-20  Zoltan Varga  <vargaz@freemail.hu>

	* corlib_test.dll.sources: Add System.Threading.InterlockedTest.cs.

2005-02-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* corlib.dll.sources: added WindowsConsoleDriver.cs

2005-01-31  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.source: Added Microsoft.Win32.SafeHandles.SafeFileHandle,
	removed IsolatedStorageInfo and added IsolatedStorageFileEnumerator to
	the build.
	* corlib_test.dll.sources : Added new unit tests for System.IO.
	IsolatedStorage and new CAS (*.Cas.cs) tests to the build.

2005-01-31  Kazuki Oikawa <kazuki@panicode.com>

	* Patch from Kazuki Oikawa <kazuki@panicode.com> that replaces the
	old Integer and Floating point number string formatter with a new
	formatter that is more compliant. 

2005-01-17  Atsushi Enomoto  <atsushi@ximian.com>

	* corlib.dll.sources : added CharUnicodeInfo.cs.

2005-01-10  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added System.Security.AccessControl/
	CryptoKeySecurity.cs (2.0) to the build.

2005-01-09  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources : Added Test/System.Security/
	HostSecurityManagerTest.cs and PermissionSetCollectionTest,cs
	unit tests (2.0) to the build.

2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added System.Security/SecurityCriticalAttribute
	and SecurityTransparentAttribute (2.0) to the build.

2005-01-05  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Removed System.Security.Permissions/
	DataProtectionPermission.cs, DataProtectionPermissionAttribute.cs and
	DataProtectionFlags.cs as they are now part of the System.Security
	assembly.
	* corlib_test.dll.sources : Removed Test/System.Security.Permissions/
	DataProtectionPermissionAttributeTest.cs for the same reason.

2004-12-27  Ben Maurer  <bmaurer@ximian.com>

	* corlib_test.dll.sources: Add s.col.gen.stack test

2004-12-23  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Removed System.Security.Cryptography/
	ProtectedData.cs, ProtectedMemory.cs, DataProtectionScope.cs and
	MemoryProtectionScope.cs as they are now part of the System.Security
	assembly.
	* corlib_test.dll.sources : Removed Test/System.Security.Cryptography/
	ProtectedDataTest.cs and ProtectedMemoryTest.cs for the same reason.

2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added System.Security/SecurityFrame.cs to the build.

2004-12-06  Atsushi Enomoto  <atsushi@ximian.com>

	* corlib_test.dll.sources : added TextWriterTest.cs.

2004-11-28  Zoltan Varga  <vargaz@freemail.hu>

	* corlib.dll.sources: Added some missing 2.0 exception classes.

2004-11-19  Raja R Harinath  <rharinath@novell.com>

	* Makefile (LIBRARY_COMPILE): Simplify.

2004-10-29  Raja R Harinath  <rharinath@novell.com>

	* Makefile: Move support for building net_2_0_bootstrap libraries
	to gmcs.

2004-10-04  Zoltan Varga  <vargaz@freemail.hu>

	* corlib.dll.sources: Add more 2.0 classes under System.Runtime.InteropServices.

	* corlib.dll.sources: Add new 2.0 classes under System.Runtime.InteropServices.

2004-09-29  Zoltan Varga  <vargaz@freemail.hu>

	* corlib.dll.sources: Add System.Runtime.InteropServices/UnmanagedFunctionPointerAttribute.cs.

2004-09-27  Zoltan Varga  <vargaz@freemail.hu>

	* corlib.dll.sources: Add more 2.0 System.Reflection classes.
	
	* corlib.dll.sources: Add some 2.0 System.Reflection classes.

2004-09-26  Zoltan Varga  <vargaz@freemail.hu>

	* corlib_test.dll.sources: Add System.Reflection/FieldInfoTest.
	
	* corlib_test.dll.sources: Add System.Reflection/MethodInfoTest.

2004-09-25  Zoltan Varga  <vargaz@freemail.hu>

	* corlib_test.dll.sources: Add System.Reflection/ParameterInfoTest.

2004-09-23  Zoltan Varga  <vargaz@freemail.hu>

	* corlib.dll.sources: Add System.Reflection.ObfuscateAssemblyAttribute
	and System.Reflection.ObfuscationAttribute.

2004-09-21  Raja R Harinath  <rharinath@novell.com>

	* Makefile (net20bootstrapcorlib): Rename from net20bootstraplib.
	Build 'mscorlib.dll' using the 'net_2_0_bootstrap' profile.
	(net20bootstrapSystem): New.  Build 'System.dll' using the
	'net_2_0_bootstrap' profile.
	($(gmcs)): Depend on both the above.
	(CLEAN_FILES) [PROFILE=net_2_0]: Clean the 'net_2_0_bootstrap'
	profile and 'gmcs' too.

2004-09-20  Gert Driesen <drieseng@users.sourceforge.net>

	* corlib.dll.sources: Removed ReadOnlyCollections.cs and Collection.cs
	from corlib System.Collections.Generics to System assembly

2004-09-19  Zoltan Varga  <vargaz@freemail.hu>

	* corlib_test.dll.sources: Added System/ModuleHandleTest.

	* corlib.dll.sources: Added System/ModuleHandle.

2004-09-14  Tim Coleman <tim@timcoleman.com>
	* corlib.dll.sources: Added System.Security.Principal/TokenImpersonationLevel

2004-09-09  Tim Coleman <tim@timcoleman.com>
	* corlib.dll.sources: Added System/Base64FormattingOptions.cs to the
	build

2004-09-05  Marek Safar  <marek.safar@seznam.cz>

	* corlib.dll.sources: 
	Added System.Collections.Generic/Dictionary.cs to the build.

2004-09-03  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources: Added System.Security.Permissions/
	RegistryPermissionTest.cs to unit tests.

2004-08-30  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added Mono.Security/Uri.cs to the build.

2004-08-26  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added System.Security.Policy/
	ApplicationSecurityManager.cs, ApplicationSecurityManagerCodeGroup.cs,
	ApplicationTrustCollection.cs and ApplicationTrustEnumerator.cs for 
	NET_2_0 profile.
	* corlib_test.dll.sources: Added System.Security.Policy/
	ApplicationDirectoryTest.cs, HashMembershipConditionTest.cs,
	HashTest.cs and IBuiltInEvidenceTest.cs to unit tests.

2004-08-25  Nick Drochak <ndrochak@ieee.com>

	* Makefile : Ignore tests that hang MS.NET.

2004-08-23  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added System.Security.Policy/
	ApplicationMembershipCondition.cs, 
	DomainApplicationMembershipCondition.cs,
	MembershipConditionHelper.cs for NET_2_0 profile.
	* corlib_test.dll.sources: Added System.Security.Policy/
	AllMembershipConditionTest.cs,
	ApplicationDirectoryMembershipConditionTest.cs,
	ApplicationMembershipConditionTest.cs and
	DomainApplicationMembershipConditionTest.cs to unit tests.

2004-08-23  Martin Baulig  <martin@ximian.com>

	* Makefile: Add $(LIBRARY_FLAGS) to the $(net20bootstraplib)
	compilation to get /nostdlib.

2004-08-20  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources: Added System.Security.Permissions/
	SiteIdentityPermissionTest.cs and UrlIdentityPermissionTest.cs
	to unit tests.

2004-08-19  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources: Added System.Security.Permissions/
	CodeAccessSecurityAttributeTest.cs,
	DataProtectionPermissionAttributeTest.cs (NET_2_0),
	HostProtectionAttributeTest.cs (NET_2_0), 
	IsolatedStoragePermissionAttributeTest.cs and
	KeyContainerPermissionAttributeTest.cs  (NET_2_0) to unit tests.

2004-08-19  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources: Added SecurityPermissionTest.cs to unit 
	tests.

2004-08-18  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources: Added GacIdentityPermissionTest.cs and
	GacIdentityPermissionAttributeTest.cs to unit tests. Added 
	IsolatedStorageFilePermissionTest.cs.

2004-08-17  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources: Added StrongNameIdentityPermissionTest.cs
	to unit tests.

2004-08-17  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added System.Security.Permissions/
	DataProtectionPermission.cs, DataProtectionPermissionAttribute.cs,
	DataProtectionPermissionFlags.cs, HostProtectionAttribute.cs,
	HostProtectionPermission.cs, KeyContainerPermission.cs,
	KeyContainerPermissionAccessEntry.cs, 
	KeyContainerPermissionAccessEntryCollection.cs,
	KeyContainerPermissionAccessEntryEnumerator.cs
	KeyContainerPermissionAttribute.cs and KeyContainerPermissionFlags.cs
	to NET_2_0 profile.
	* corlib_test.dll.sources: Added System.Security.Permissions/
	IBuiltInPermissionTest.cs and UIPermissionTest.cs unit tests.

2004-08-12  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added System.Runtime.ConstrainedExecution/
	CER.cs, Consistency.cs, PrePrepareMethodAttribute.cs and
	ReliabilityContractAttribute.cs. Added System.Threading/
	ParameterizedThreadStart.cs. All for NET_2_0 profile.

2004-08-09  Marek Safar  <marek.safar@seznam.cz>

	* corlib.dll.sources: Added System/EnvironmentVariableTarget.cs
	for NET_2_0.

2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added System/ApplicationId.cs, 
	System.Reflection/ImageFileMachine.cs and PortableExecutableKind.cs,
	and System.Security.Policy/ApplicationSecurityInfo.cs for NET_2_0.
	* corlib_test.dll.sources: Added System/ApplicationIdentityTest.cs and
	ApplicationIdTest.cs unit tests for NET_2_0.

2004-08-08  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added System/AppDomainInitializer.cs,
	AppDomainManager.cs, ApplicationActivator.cs and
	DomainManagerInitializationFlags.cs. Added System.Threading/
	HostExecutionContext.cs, HostExecutionContextManager.cs and
	HostExecutionContextSwitcher.cs for NET_2_0.

2004-08-04  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added System.Security.Permissions/
	GacIdentityPermission.cs and GacIdentityPermissionAttribute.cs, and
	System.Security.Policy/Gac.cs and GacMembershipCondition.cs to NET_2_0
	* corlib_test.dll.sources: Added /Test/System.Security.Policy/
	GacMembershipConditionTest.cs, GacTest.cs and
	ZoneMembershipConditionTest.cs to unit tests.

2004-08-03  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added PermissionSetCollection and SecureString
	in System.Security. Moved CriticalFinalizerObject to System.Runtime.
	ConstrainedExecution.
	* corlib_test.dll.sources: Added /Test/System.Security.Permissions/
	ZoneIdentityPermissionTest.cs to unit tests.

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

	* Makefile: Use the new FRAMEWORK_VERSION variable to build the destination
	  path for mscorlib.

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

	* corlib.dll.sources: Added new files for NET_2_0 profile: 
		System.Threading/ExecutionContext.cs
		System.Threading/ExecutionContextSwitcher.cs
		System.Threading/SynchronizationContext.cs
		System.Threading/SynchronizationContextSwitcher.cs

2004-07-14  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added new files for NET_2_0 profile: 
		System.Security/HostProtectionException.cs
		System.Security/HostSecurityManager.cs
		System.Security/HostSecurityManagerFlags.cs
		System.Security/SecurityContext.cs
		System.Security/SecurityContextSwitcher.cs
		System.Security.Permissions/HostProtectionResource.cs
		System.Threading/AsyncFlowControl.cs
		System.Threading/CompressedStackSwitcher.cs
		System.Threading/ContextCallback.cs

2004-07-13  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added new files for NET_2_0 profile: 
		System/ActivationContext.cs
		System/ApplicationIdentity.cs
		System/IApplicationDescription.cs
		System/IHostContext.cs
		System.Security.Policy/ApplicationDefaultCodeGroup.cs 
		System.Security.Policy/ApplicationInstallScope.cs 
		System.Security.Policy.Security.Policy/ApplicationTrust.cs 
		System.Security.Policy/ApplicationVersionMatch.cs 
		System.Security.Policy/CodeConnectAccess.cs 
		System.Security.Policy/CodeGroupGrantScope.cs 
		System.Security.Policy/IApplicationTrustManager.cs 
		System.Security.Policy/ITrustLicenseIssuerCollection.cs 
		System.Security.Policy/ITrustManager.cs 
		System.Security.Policy/ITrustManagerConfig.cs 
		System.Security.Policy/PromptingLevel.cs 
		System.Security.Policy/ProvideAssemblyEvidenceEventArgs.cs 
		System.Security.Policy/TrustLicenseIssuer.cs 
		System.Security.Policy/TrustManagerContext.cs
		System.Security.Policy/TrustManagerUIContext.cs 
		System.Security.Policy/TrustManagerZoneConfig.cs 

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

	* corlib.dll.sources: Added System.Threading.SendOrPostCallback.cs.

2004-07-07  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added new files for NET_2_0: 
		System.Runtime.InteropServices/_Exception.cs
		System.Security.Cryptography/RijndaelManagedTransform.cs
		System.Security.Cryptography/RIPEMD160.cs
		System.Security.Cryptography/RIPEMD160Managed.cs
		System.Security.AccessControl/AccessControlActions.cs
		System.Security.Cryptography.X509Certificates/X509ContentType.cs
		System.Security.Cryptography.X509Certificates/X509KeyStorageFlags.cs
	* corlib.dll.sources: Added new tests for CipherMode and 
	CspProviderFlags.

2004-07-02  Raja R Harinath  <rharinath@novell.com>

	* Makefile (LIBRARY_USE_INTERMEDIATE_FILE): Define.

2004-07-02  Raja R Harinath  <rharinath@novell.com>	

	* Makefile ($(net20bootstrap_makefrag)): Build from net_2_0
	profile response file.
	(gmcs): Style update.

2004-06-14  Raja R Harinath  <rharinath@novell.com>

	* Makefile (net20bootstrap_response): Remove.  This shouldn't
	differ from $(response).
	(post_process): Remove, now that PLATFORM_CHANGE_SEPARATOR_CMD is
	unconditional.
	($(cmp_response),$(res_response)): Update.

2004-06-11  Raja R Harinath  <rharinath@novell.com>

	* Makefile (TEST_COMPILE): Use internal mcs to compile the
	platform testsuite too.

2004-06-11  Gert Driesen <drieseng@users.sourceforge.net>

	* corlib_test.dll.sources: added EnumBuilderTest and 
	FieldBuilderTest to the build

2004-06-11  Raja R Harinath  <rharinath@novell.com>

	* corlib_plattest.dll.excludes: Remove contents.  Any file listed
	here has also to be listed in corlib_test.dll.sources.

	* Makefile: Rewrite to use library.make.  Do away with stampfiles.

2004-06-04  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : fixed incorrectly unified corlib-plattest in the
	  previous fix.

2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : added run-test-ondotnet support.

2004-05-30  Martin Baulig  <martin@ximian.com>

	* Makefile (net_2_0_dir): New variable; also use the correct
	directory here.

2004-05-29  Gert Driesen  (drieseng@users.sourceforge.net)

	* corlib.dll.sources: added SetWin32ContextInIDispatchAttribute
	and VariantWrapper

2004-05-25  Sebastien Pouliot  <sebastien@ximian.com>

	* Makefile: changed case on nunit.framework.dll (lowercase)

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

	* corlib.dll.sources: added Mono/Runtime.cs
	* Mono: added Mono directory back
	* Mono/Runtime.cs: add back Runtime.cs, marked as internal, gnome#
	needs it.

2004-05-22  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources: Added IntPtrTest and UIntPtrTest to the 
	build.

2004-05-21  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources: Added SingleTest to the build.

2005-05-18  Gert Driesen (drieseng@users.sourceforge.net)

	* corlib_test.dll.sources: added PropertyInfoTest

2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* corlib.dll.sources: removed obsolete Mono/Runtime.cs
	* corlib_test.dll.sources: added BinderTests
	* Mono: removed obsolete directory.
	* Mono/ChangeLog: Removed file.
	* Mono/Runtime.cs: Removed file.

2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Makefile: install-local is verbose now.

2004-05-14  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added System/__ComObject.cs to the build.

2004-05-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* corlib_test.dll.sources: added BinderTests.cs

2004-05-12  Zoltan Varga  <vargaz@freemail.hu>

	* corlib.dll.sources: Added System.Threading/CompressedStack.cs

2004-05-11  Jackson Harper  <jackson@ximian.com>

	* Makefile: Use snazzy new PLATFORM_PATH_SEPARATOR when setting
	the mono path, so it works on Windows.
	
2004-05-10  Raja R Harinath  <rharinath@novell.com>

	* Makefile (corlib_net_2_0_bootstrap): Remove extraneous copying.

2004-05-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Makefile: build NUnit if the dll is not found when running
	'make test'. Use INTERNAL_MCS to build the tests as csc fails miserably
	to compile them.

2004-05-07  Raja R Harinath  <rharinath@novell.com>

	* Makefile (corlib_net_2_0_bootstrap): Copy System.dll and
	System.Xml.dll from 'default' profile build.
	($(gmcs)): Always go to 'gmcs' directory.

2004-05-06  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources: Added SymmetricAlgorithm2Test, 
	ToBaseTransformTest, TripleDESTest unit tests to the build.

2004-05-07  Nick Drochak <ndrochak@gol.com>

	* Makefile (plattest_flags): Add /unsafe.

2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added Base64Constants to the build.
	Added SHAConstants to the build.

2004-05-05  Zoltan Varga  <vargaz@freemail.hu>

	* Makefile (test_flags): Add /unsafe.

2004-05-03 Lluis Sanches Gual  <lluis@ximian.com>
	
	* corlib.dll.sources: Added Assembly/Consts.cs.
		
2004-04-30  Jackson Harper  <jackson@ximian.com>

	* Makefile: Add dependancies.
	
2004-04-29  Jackson Harper  <jackson@ximian.com>

	* Makefile: net_2_0 corlib goes to a special place.
	
2004-04-28  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added X509ChainStatusFlags, X509CRL, X509Store, 
	X509StoreManager, X509Stores, BasicConstraintsExtension, 
	KeyUsageExtension and SubjectKeyIdentifierExtension to the build.
	Removed ITrustAnchors.cs, TestAnchors.cs and TrustAnchors from the 
	build.

2004-04-28  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources: Added DESCryptoServiceProviderTest.cs.

2004-04-28  Zoltan Varga  <vargaz@freemail.hu>

	* corlib.dll.sources: Added System.Reflection.Emit/MethodRental.cs.

	* corlib_test.dll.sources: Added Test/System.Reflection.Emit/MethodRentalTest.cs.

2004-04-27  Zoltan Varga  <vargaz@freemail.hu>

	* Makefile: Fix tests with new directory structure.

2004-04-26  Jackson Harper  <jackson@ximian.com>

	* Makefile: Use profile dependant directory.
	
2004-04-26  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources: Added DESTest.cs.

2004-04-22  Martin Baulig  <martin@ximian.com>

	Use `#if NET_2_0 || BOOTSTRAP_2_0' for the generic reflection stuff.

2004-04-09  Zoltan Varga  <vargaz@freemail.hu>

	* corlib_test.dll.sources: Added System.Threading/TimerTest.cs.

2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>

	* corlib.dll.sources: Added Mono.Security/BitConverterLE.cs

2004-04-03 Lluis Sanches Gual  <lluis@ximian.com>
	
	* corlib_test.dll.sources: Added System.Threading/ReaderWriterLockTest.cs.
		
2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib_test.dll.sources: Added System/EnvironmentTest.cs.

2004-03-31  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added Mono.Security/StrongNameManager.cs.

2004-03-11  Martin Baulig  <martin@ximian.com>

	* corlib.dll.sources: Added System.Collections.Generic/Queue.cs
	and System.Collections.Generic.Stack.cs.

2004-03-11  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile, corlib.dll.win32-excludes : 
	  now csc build includes SecurityPermissionAttribute.cs.

2004-03-09  Jackson Harper  <jackson@ximian.com>

	* corlib_test.dll.sources: Add new test cases to the build.
	
2004-03-03  Jackson Harper <jackson@ximian.com>

	* corlib.dll.sources: Add new registry files to the build.
	
2004-02-20  Jackson Harper  <jackson@ximian.com>

	* corlib.dll.sources: Add LockQueue.cs to build.
	
2004-02-18  Atsushi Enomoto  <atsushi@ximian.com>

	* corlib_test.dll.sources : Added CharCategoryTest.cs

2004-02-17 Lluis Sanches Gual  <lluis@ximian.com>
	
	* corlib.dll.sources: Added 
		System.Runtime.Serialization.Formatter.Binary.CodeGenerator.cs

2004-02-10 Carlos Guzman Alvarez  <carlosga@telefonica.net>

    * Mono.Security.Cryptography/PKCS1.cs:

        - Added little change for allow the class to be used with
        hash implementations that doesn't have an oid like the MD5SHA1 hash.

2004-02-06  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Moved SymmetricTransform class from System.
	Security.Cryptography (SymmetricAlgorithm) to Mono.Security.
	Cryptography.

2004-02-05  Sebastien Pouliot  <sebastien@ximian.com>

	* corlib.dll.sources: Added KeyPairPersistance class, in Mono.
	Security.Cryptography namespace, to the build.
	* corlib_test.dll.sources: Added AppDomain unit tests in System.
	Some tests are currently ignored because they produce lots of GC
	Warning failures but they seems to work (nunit finishes).

2004-01-14  Sebastien Pouliot  <spouliot@videotron.ca>

	* corlib_test.dll.sources: Added Url and UrlMembershipCondition unit 
	tests in System.Security.Policy namespace.

2004-01-06  Sebastien Pouliot  <spouliot@videotron.ca>

	* corlib_test.dll.sources: Added SecurityException unit tests in
	System.Security namespace.

2004-01-05  Sebastien Pouliot  <spouliot@videotron.ca>

	* corlib_test.dll.sources: Added CodeAccessPermission unit tests in
	System.Security namespace. Added CodeGroup related and PolicyLevel
	unit tests to System.Security.Policy.

2004-01-05  Zoltan Varga  <vargaz@freemail.hu>

	* corlib.dll.sources: Added System.Resources.Win32Resources.cs.

2004-01-03  Sebastien Pouliot  <spouliot@videotron.ca>

	* corlib_test.dll.sources: Added SecurityManager unit tests in
	in System.Security namespace.

2004-01-03  Sebastien Pouliot  <spouliot@videotron.ca>

	* corlib.dll.sources: Added SiteMembershipCondition to 
	System.Security.Policy namespace.
	* corlib_test.dll.sources: Added Site and SiteMembershipCondition
	unit tests in System.Security.Policy namespace.

2004-01-02  Sebastien Pouliot  <spouliot@videotron.ca>

	* corlib.dll.sources: Added many (long time) missing classes in the
	System.Security.Policy namespace.

2004-01-01  Nick Drochak  <ndrochak@gol.com>

	* corlib_test.dll.sources: Add PermissionRequestEvidenceTest.cs
	* corlib.dll.sources. Add PermissionRequestEvidence.cs

2003-12-29  Sebastien Pouliot  <spouliot@videotron.ca>

	* corlib_test.dll.sources: Added new unit tests to System.Security.
	Permissions and System.Security.Principal.

2003-12-25  Sebastien Pouliot  <spouliot@videotron.ca>

	* corlib.dll.sources: Added WindowsPrincipal to build.

2003-12-15  Sebastien Pouliot  <spouliot@videotron.ca>

	* corlib_test.dll.sources: Added unit tests PaddingMode and X509 
	using CryptoAPI.

2003-12-14  Pedro Martinez Julia <yoros@wanadoo.es>

	* DateTime.cs: Be sure that the array access is not out of range
	when looking for ArgumentOutOfRangeException in the year value.

2003-12-08  Peter Williams  <peter@newton.cx>

	* Makefile: Use embedded tab instead of $(ECHO_ESCAPE).
	Fixes build on OS X.

2003-12-04  Martin Baulig  <martin@ximian.com>

	* corlib.dll.sources: Added System.Collections.Generic.

2003-11-26  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* corlib.dll.sources: Added file:
		System.Runtime.InteropServices.DispatchWrapper.cs

2003-11-26  Lluis Sanchez Gual <lluis@ximian.com>

	* corlib.dll.sources: Added 
		System.Runtime.Remoting.Services/EnterpriseServicesHelper.cs
	* corlib_test.dll.sources: Added System.Runtime.Remoting/SoapServicesTest.cs

2003-11-24  Zoltan Varga  <vargaz@freemail.hu>

	* corlib.dll.sources: Add System.Reflection.Emit/DynamicMethod.cs.

2003-11-19  Lluis Sanchez Gual <lluis@ximian.com>

	* corlib_test.dll.sources: Added some test files:
		System.Runtime.Remoting/ContextTest.cs
		System.Runtime.Remoting/SynchronizationAttributeTest.cs

2003-11-18  Lluis Sanchez Gual <lluis@ximian.com>

	* corlib.dll.sources: Added some files:
		System.Runtime.Remoting.Contexts/IContextPropertyActivator.cs
		System.Runtime.Remoting.Contexts/SynchronizationAttribute.cs
		System.Runtime.Remoting.Messaging/ISerializationRootObject.cs

2003-11-18  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* corlib.dll.sources: Added already existing, but not added delegate
		Added various classes in System.InteropServices

2003-11-18  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* corlib.dll.sources: Added some files:
		System.Runtime.Serialization.Formatter.cs
		System.Runtime.Serialization.Formatters/InternalRM.cs
		System.Runtime.Serialization.Formatters/InternalST.cs
		System.Runtime.Serialization.Formatters/TypeFilterLevel.cs

2003-11-17  Lluis Sanchez Gual <lluis@ximian.com>

	* corlib.dll.sources: Added some files:
		System.Runtime.Remoting.Channels/AggregateDictionary.cs
		System.Runtime.Remoting.Metadata.W3cXsd2001/SoapHelper.cs
	
2003-11-16  Lluis Sanchez Gual <lluis@ximian.com>

	* corlib.dll.sources: Add System.Runtime.Remoting/InternalRemotingServices.cs
	
2003-11-15  Zoltan Varga  <vargaz@freemail.hu>

	* corlib.dll.sources: Add System.Runtime.CompilerServices/IsVolatile.cs.

2003-11-12 Jackson Harper <jackson@ximian.com>

	* Makefile: corlib is now named mscorlib.

2003-11-09  Sebastien Pouliot  <spouliot@videotron.ca>

	* corlib.dll.sources: Added new 1.2 classes for System.Security.Cryptography.
	* corlib_test.dll.sources: Added unit tests for some HMAC (new in 1.2).

2003-10-18  Sebastien Pouliot  <spouliot@videotron.ca>

	* corlib.dll.sources: Added classes StrongName to support StrongNames.

2003-10-17  Sebastien Pouliot  <spouliot@videotron.ca>

	* corlib.dll.sources: Added classes CryptoConvert to support StrongNames.

2003-10-12  Sebastien Pouliot  <spouliot@videotron.ca>

	* corlib.dll.sources: Added classes for Authenticode support.
	* corlib_test.dll.sources: Added unit test for SPC certificates.

2003-09-26  Pedro Martinez Julia <yoros@wanadoo.es>

	* corlib_test.dll.sources: Remove tests that generate compile
	errors. The tests are still there but its name is rmoved here.

2003-09-24    <cesar@ciencias.unam.mx>

	* corlib.dll.sources: Added CompilerGlobalScopeAttribute.cs to the build

2003-08-20  Duncan Mak  <duncan@ximian.com>

	* corlib_test.dll.sources: Added DictionaryBaseTest.cs

2003-08-19 Nick Drochak <ndrochak@gol.com>

	* Makefile: Turn on debug for the corlib tests on .NET.

2003-08-06  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* corlib.dll.sources: added quite some files

2003-08-06  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* corlib.dll.sources: added/removed Locale.cs

2003-08-03  Sebastien Pouliot  <spouliot@videotron.ca>

	* corlib.dll.sources: Added IBuiltInPermission.cs to System.Security.Permissions

2003-07-31  Sebastien Pouliot  <spouliot@videotron.ca>

	* corlib_test.dll.sources: Added new CryptoStreamTest.cs

2003-07-24  Peter Williams  <peter@newton.cx>

	* Makefile: Boo-yah! Add corlib_plattest.dll, which is a
	corlib test library built against the platform corlib. This
	lets us test our corlib tests. On a non-mono-native platform
	(Windows) we run those tests only; on a mono-native platform, we
	run the full corlib test suite on our own tests.
	(clean-local): Forgot $(plattestlib).

	* corlib_plattest.dll.excludes: Add this. (The result of
	'grep Mono corlib_test.dll.sources')

	* corlib_test.dll.sources: Extraneous newline was messing things
	up.
	
2003-07-23  Ravi Pratap  <ravi@ximian.com>

	* Type.cs, TypeBuilder.cs, MonoType.cs: Fixes to IsArrayImpl
	from Paolo in response to bug #45993.

2003-07-23  Lluis Sanchez Gual  <lluis@ximian.com>

	* corlib_test.dll.sources: added System.Runtime.Serialization/SerializationTest.cs

2003-07-20  Peter Williams  <peter@newton.cx>

	* Makefile: Add in corlib_res.dll, which we use as a basis
	for tests on non-linux platforms. Nearly identical rules to
	corlib_cmp: corlib - some files that cause the MS runtime to
	barf.

	* corlib_res.dll.excludes: Added.

2003-07-20  Peter Williams  <peter@newton.cx>

	* Makefile: Don't use real_corlib; use $(PLATFORM_CORLIB).

2003-07-18  Peter Williams  <peter@newton.cx>

	* Makefile (dist-local): The fancy shell script was neat, but
	ultimately unnecessary and counterproductive. Alas.

2003-07-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* corlib.dll.sources:
	* unix.args: AssemblyInfo.cs added

2003-07-17  Peter Williams  <peter@newton.cx>

	* Makefile ($(testlib)): Build with $(BOOT_COMPILE), not $(CSCOMPILE),
	which sort of makes sense and is needed on Windows too.
	($(corlib)): same.
	$(cmplib): Don't include the makefrag to save the Windows build and some
	time.

2003-07-16  Peter Williams  <peter@newton.cx>

	* Makefile ($(test_makefrag)): Use $(ECHO_ESCAPE) for HP/UX
	portability fixes.
	(all-local): Don't build $(cmplib) by default, it's not something
	most people need, and the build is broken on Windows right now anyway.

2003-07-13  Zoltan Varga  <vargaz@freemail.hu>

	* unix.args: Fix UNIX build.

2003-07-12  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* unix.args: Added Runtime.InteropServices.ComCompatibleVersionAttribute.cs,
	Runtime.InteropServices.TypeLibVersionAttribute.cs

2003-07-05  Sebastien Pouliot <spouliot@videotron.ca>

	* unix.args: Added SecurityParser.cs to Mono.Xml

2003-06-22  Sebastien Pouliot <spouliot@videotron.ca>

	* unix.args: Added FileDialogPermission.cs, IsolatedStorageFilePermission.cs,
	PrincipalPermission.cs, PublisherIdentityPermissionAttribute.cs,
	RegistryPermission.cs, SiteIdentityPermission.cs, UIPermission.cs,
	UrlIdentityPermission.cs and ZoneIdentityPermission.cs.

2003-06-22  Lluis Sanchez Gual <lluis@ximian.com>

	* unix.args: added System.Runtime.Remoting/SoapServices.cs

2003-06-11  Sebastien Pouliot <spouliot@videotron.ca>

	* unix.args: added Mono.Security.Cryptography/DSAManaged.cs and
	RSAManaged.cs

2003-05-29  Nick Drochak <ndrochak@gol.com>

	* makefile.gnu: turn on debug since it works again.

2003-05-09  Sebastien Pouliot <spouliot@videotron.ca>

	* unix.args: added System.Security/
	AllowPartiallyTrustedCallersAttribute.cs

2003-04-05  Nick Drochak  <ndrochak@gol.com>

	* makefile.gnu: revert. debugger support not installed by default in mcs

2003-04-05  Nick Drochak  <ndrochak@gol.com>

	* makefile.gnu: compile with debug.

2003-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* unix.args: added SEHException.

2003-03-25  Martin Willemoes Hansen <mwh@sysrq.dk>

	* Stubed System.Runtime.Remoting.Metadata.W3cXsd2001
	* Updated unix.args with the stubs

2003-03-21  Martin Willemoes Hansen <mwh@sysrq.dk>
	
	* unix.args: Added System.Runtime.Remoting.Channels/IChannelReceiverHook.cs

2003-03-21  Lluis Sanchez Gual <lluis@ideary.com>

	* unix.args: Added System.Runtime.Remoting.Activation/AppDomainLevelActivator.cs

2003-03-16  Pedro Martinez Julia <yoros@wanadoo.es>

	* unix.args: Added "System.FloatingPointFormatter.cs".

2003-03-15  Sebastien Pouliot <spouliot@videotron.ca>

	* unix.args: Added Mono.Security.X509/*.cs and ASN1Convert.cs

2003-03-03  Tim Coleman <tim@timcoleman.com>
	* unix.args: Added
		System.Runtime.InteropServices/HandleRef.cs

2003-03-04  Pedro Martinez Julia <yoros@wanadoo.es>

	* unix.args: Added "DoubleFormatter.cs" and "SingleFormatter.cs"


2003-03-03  Lluis Sanchez Gual <lluis@ideary.com>

	* unix.args: added ConstructionLevelActivator.cs, ContextLevelActivator.cs,
		RemoteActivationAttribute.cs, UrlAttribute.cs, ContextAttribute.cs,
		IContributeDynamicSink.cs, IContributeEnvoySink.cs, IContributeObjectSink.cs

2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* unix.args: added ModuleResolveEventHandler.cs

2003-02-19  Lluis Sanchez Gual <lluis@ideary.com>

	* unix.args: added 
		System.Runtime.Remoting/EnvoyInfo.cs
		System.Runtime.Remoting.Activation/ActivationServices.cs
		System.Runtime.Remoting.Contexts/CrossContextChannel.cs
		System.Runtime.Remoting.Messaging/ClientContextTerminatorSink.cs
		System.Runtime.Remoting.Messaging/ConstructionCall.cs
		System.Runtime.Remoting.Messaging/ConstructionCallDictionary.cs
		System.Runtime.Remoting.Messaging/ConstructionResponse.cs
		System.Runtime.Remoting.Messaging/EnvoyTerminatorSink.cs
		System.Runtime.Remoting.Messaging/IInternalMessage.cs

2003-02-08  Zoltan Varga  <vargaz@freemail.hu>

	* unix.args: added MACAlgorithm and HMACAlgorithm.

2003-02-06  Sebastien Pouliot <spouliot@videotron.ca>

	* unix.args: Move some class from System.Security.Cryptography
	  into Mono.* for easier reuse.

2003-02-04  Lluis Sanchez Gual <lluis@ideary.com>

	* unix.args: added ServerIdentity.cs, Lease.cs, LeaseManager.cs

2003-02-03  Patrik Torstensson

	* corlib.build: fixes so corlib_cmp and corlib_res builds, need to
	  check if we need the libs and if they still are correct.

2003-02-03  Patrik Torstensson

	* unix.args: added CADMessages.cs

2003-01-26  Lluis Sanchez Gual <lluis@ideary.com>

	* unix.args: added RemoteActivator.cs.

2003-01-26  Lluis Sanchez Gual <lluis@ideary.com>

	* unix.args: added System.Runtime.Remoting.Messaging/ArgInfo.cs,
		System.Runtime.Remoting.Messaging/MethodCallDictionary.cs
		System.Runtime.Remoting.Messaging/MethodDictionary.cs
		System.Runtime.Remoting.Messaging/MethodReturnDictionary.cs

2003-01-24  Lluis Sanchez Gual <lluis@ideary.com>

	* unix.args: added System.Runtime.Remoting/TypeInfo.cs and
	  System.Runtime.Serialization.Formatters.Binary/MessageFormatter.cs

2003-01-18  Jonathan Pryor <jonpryor@vt.edu>

	* unix.args: Added IsolatedStorageFile.cs and IsolatedStorageInfo.cs in
	  System.IO.IsolatedStorage


2003-01-17  Lluis Sanchez Gual <lluis@ideary.com>
	* unix.args: Added System/DelegateSerializationHolder.cs, 
	  System/UnitySerializationHolder.cs,
	  System.Runtime.Serialization/ObjectManager.cs,
	  System.Runtime.Serialization.Formatters.Binary/BinaryCommon.cs,
      System.Runtime.Serialization.Formatters.Binary/ObjectReader.cs and
	  System.Runtime.Serialization.Formatters.Binary/ObjectWriter.cs

2003-01-05  Sebastien Pouliot <spouliot@videotron.ca>

	* unix.args: added COMException.cs in System.Runtime.InteropServices

2003-01-01  Jaime Anguiano Olarra <jaime@gnome.org>

	* unix.args: added System.Diagnostics.Process.cs 

2002-12-28  Duncan Mak  <duncan@ximian.com>

	* unix.args (ASN1.cs): Sebastien forgot to include this file.

2002-12-27  Sebastien Pouliot <spouliot@videotron.ca>

	* unix.args: added CryptoTools.cs file.

2002-12-16  Sebastien Pouliot <spouliot@videotron.ca>

	* unix.args: added StrongName.cs, StrongNamePublicKeyBlob.cs 
	and StrongNameIdentityPermission.cs files.

2002-12-15  Sebastien Pouliot <spouliot@videotron.ca>

	* unix.args: added PublisherIdentityPermission.cs,
	Publisher.cs and PublisherMembershipCondition.cs

2002-12-10  Jeroen Janssen <japj@darius.demon.nl>
	
	* updated .build file(s) to correctly contain required buildfile 
	  attribute for nant

2002-11-17  Sebastien Pouliot <spouliot@videotron.ca>

	* unix.args: added missing files from System.Security.Cryptography
	namespace.

2002-10-28  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>

	* unix.args: added missing files from System.Security.Cryptography
	namespace.

2002-10-19  Sebastien Pouliot <spouliot@videotron.ca>

	* corlib.build: Removed all excluded cryptographic source code as the
	cyclic dependency was removed (well commented)

2002-10-11  Duncan Mak  <duncan@ximian.com>

	* unix.args: Added System.Security.Cryptography.CryptoConfig.

2002-10-08  Miguel de Icaza  <miguel@ximian.com>

	* Mono/Runtime.cs: New file.

2002-10-05  Andrew Birkett  <andy@nobugs.org>

	* unix.args: Added System.Security.Cryptography.RC2

2002-09-12  Dick Porter  <dick@ximian.com>

	* unix.args: Add System.Globalization.SortKey,
	System.Globalization.StringInfo and
	System.Globalizaton.TextElementEnumerator
	
2002-09-12  Dick Porter  <dick@ximian.com>

	* unix.args: Add System.ArgIterator and System.TypedReference

	* corlib.build: Adding DecimalConstantAttribute to Decimal (which
	corcompare showed as missing) causes a SecurityException in
	corcompare, so exclude Decimal from the corlib_cmp build.

2002-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* unix.args: added a couple of new files in System.Security.Principal.

2002-08-15  Tim Coleman <tim@timcoleman.com>
	* unix.args: 
		Add System.Globalization/TextInfo.cs
		Add System.Runtime.Serialization/FormatterConverter.cs

2002-07-31  Rodrigo Moya <rodrigo@ximian.com>

	* unix.args: added new files from System.Runtime.Remoting.Channels.

2002-07-31  Duncan Mak  <duncan@ximian.com>

	* unix.args: Added interfaces and enumerations from
	System.Runtime.Remoting.Channels. 

2002-07-31  Duncan Mak  <duncan@ximian.com>

	* unix.args: Added new classes in
	System.Runtime.Remoting.Contexts.
	

2002-07-31  Duncan Mak  <duncan@ximian.com>

	* unix.args: Added new Exceptions, Interfaces and various
	TypeEntries from System.Runtime.Remoting.

2002-07-29  Martin Baulig  <martin@gnome.org>

	* list: Removed, this isn't used anymore and people are already
	getting confused which file to use.

2002-07-24  Duncan Mak  <duncan@ximian.com>

	* unix.args: Added files from Remoting.Lifetime and
	Remoting.Metadata.

	* ChangeLog: Moved entries from System.Runtime.Remoting.Activation
	and System.Runtime.Remoting.Proxies to their own ChangeLog.

2002-07-23  Duncan Mak  <duncan@ximian.com>

	* list: 
	* unix.args: Added new Attributes in
	System.Runtime.CompilerServices and System.Runtime.Remoting.Messaging.

2002-07-22  Tim Coleman <tim@timcoleman.com>
	* list:
	* unix.args:
		Added System.Security.Permission/ReflectionPermission.cs and
		System.Security.Permission/EnvironmentPermission.cs and

2002-07-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* list:
	* unix.args: added IObjectHandle.cs.

2002-06-20  Martin Baulig  <martin@gnome.org>

	* unix.args: New file.  This is a mcs response file to compile
	corlib on GNU/Linux (which doesn't work yet).

2002-04-30  Daniel Stodden  <stodden@in.tum.de>

	* System/Delegate.cs: Implemented Remove()
	* System/MulticastDelegate.cs: Implementation of RemoveImpl()
	done. Plus a fix for Equals().
	* Test/System/MulticastDelegate.cs: Added. Should reflect above
	changes.
	
2002-04-27  Martin Baulig  <martin@gnome.org>

	* corlib.build: Added new "mcs-build" target to compile corlib
	with mcs. This doesn't work yet - it's just to test mcs to find
	and fix the remaining bugs.

2002-03-27  Dan Lewis  <dihlewis@yahoo.co.uk>

	* corlib.build: removed seperate windows/linux builds. excluded
	wrapper and PAL classes from all builds.

2002-03-03  Nick Drochak  <ndrochak@gol.com>

	* corlib.build: Exclude a bunch of interfaces from corlib_res.dll
	that were preventing the tests from running on Windows.

2002-01-25  Mark Crichton  <crichton@gimp.org>

	* System.Security.Cryptography/RijndaelManaged.cs: added
	
	* System.Security.Cryptography/Rijndael.cs: changed constructor
	to set default values.  Hopefully I did it correctly.

2002-01-23  Miguel de Icaza  <miguel@ximian.com>

	* Unix/Errno.cs: Added

	* Unix/Wrapper.cs: Updated to new Wrapper

2002-01-19  Nick Drochak  <ndrochak@gol.com>
	
	* corlib.build: exclude Delegate from corlib_cmp.

2002-01-09  Nick Drochak  <ndrochak@gol.com>

	* corlib.build: Exclude Security Attribute classes that need mcs
	magic to get them to compile.

2002-01-06  Duco Fijma <duco@lorentz.xs4all.nl>
	* corlib.build: Removed <excludes> for System.Resources

2002-01-05  Nick Drochak  <ndrochak@gol.com>

	* corlib.build: Have the clean target remove any .pdb files that
	might be around if we compiled with debug on.

2002-01-05  Nick Drochak  <ndrochak@gol.com>

	* corlib.build: Make new build of corlib_cmp.dll.  This is the same
	as corlib.dll without Object and ValueType.  It is used by 
	/mcs/tools/corcompare.exe to compare with mscorlib.

2002-01-03  Nick Drochak  <ndrochak@gol.com>

	* corlib.build: Put the linux target at the top.  I keep changing the 
	build for windows 'cause it's at the top.  Then when I do make, nothing
	changes.  It seems like it always takes me half a day to remember
	that the linux target comes second.  Old age I guess.

	* .cvsignore: ignore corlib.pdb for times when it's built with debug on.

2002-01-02  Nick Drochak  <ndrochak@gol.com>

	* corlib.build: Removed "exclude CodeAccessPermission.cs"

2001-12-11  Duncan Mak  <duncan@ximian.com>

	* ChangeLog: Added "System.Resources" to the exclude list.

2001-12-05  Nick Drochak <ndrochak@gol.com>

	* ChangeLog: Add the change log to this directory

	* corlib.build: Add dependancy on linux target to test target. Need to have the dll before we can test it, right?  Plus is encourages other to try 'make test'.