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
|
2006-11-27 Andrew Skiba <andrews@mainsoft.com>
* System-tests20.sln, System-tests20.vmcsproj, run-tests.bat: added
Grasshopper test project and bat file.
2006-11-17 Sebastien Pouliot <sebastien@ximian.com>
* System_test.dll.sources: Add unit tests for System.Security.
Cryptography.X509Certificates/X509Certificate2Collection and
X509ExtensionCollection classes to the build.
2006-11-08 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added ArrayConverterTests.cs.
2006-11-07 Andrew Skiba <andrews@mainsoft.com>
* System.Security.AccessControl/SemaphoreAuditRule.cs,
System.Net/HttpWebRequest.jvm.cs, System.Net/VMWHttpProvider.cs,
System.Net/HttpWebResponse.jvm.cs, System.Net/HttpStateCache.cs,
System.Net/HttpProvider.cs, System.Net/ServicePoint.cs,
System.Net.Sockets/Socket.jvm.cs, System.Net.Sockets/GHStreamSocket.cs,
System.Net.Sockets/GHSocketFactory.cs, System.Net.Sockets/GHStreamSocketSSL.cs,
System.Net.Sockets/GHSocket.cs, System.J2EE20.vmwcsproj,
System.J2EE20.sln, machine.config: add files and TARGET_JVM-s to compile
System.dll in GH.
2006-11-07 Sebastien Pouliot <sebastien@ximian.com>
* System_test.dll.sources: Add unit tests for System.ComponentModel.
CollectionConverter to the build.
2006-11-07 Andrew Skiba <andrews@mainsoft.com>
* ApplicationSettingsBase.cs, AppSettingsReader.cs,
ConfigurationSettings.cs, LocalFileSettingsProvider.cs: exclude using
PrebuiltSystem on TARGET_JVM
2006-10-31 Sebastien Pouliot <sebastien@ximian.com>
* System.dll.sources: Add System.Net.Mail.SmtpPermission[Attribute] to
the build.
* System_test.dll.sources: Add unit tests for System.Net.Mail
SmtpPermission[Attribute] to the build.
2006-08-22 Miguel de Icaza <miguel@novell.com>
* System.ComponentModel.Design/HelpKeywordAttribute.cs: Add new
file.
2006-08-20 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added EventInstanceTest.cs
2006-08-20 Gert Driesen <drieseng@users.sourceforge.net>
* System.dll.sources: Added Win32EventLog.cs.
2006-08-14 Atsushi Enomoto <atsushi@ximian.com>
* System.dll.sources : added LocalFileEventLog.cs and NullEventLog.cs.
2006-08-14 Atsushi Enomoto <atsushi@ximian.com>
* System.dll.sources : reverted all recent changes on EventLogs.
It does not work at all.
2006-08-11 Gert Driesen <drieseng@users.sourceforge.net>
* System.dll.sources: Added UnixEventLog.cs and Win32EventLog.cs.
* System_test.dll.sources: Added EventLogTest.cs.
2006-08-09 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.souces: Added EventSourceCreationDataTest.cs.
2006-08-09 Gert Driesen <drieseng@users.sourceforge.net>
* System.dll.sources: Added EventInstance.cs, OverflowAction.cs,
EventSourceCreationData.cs.
2006-08-07 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added X509Certificate2Test.cs.
2006-07-14 Peter Dennis Bartok <pbartok@novell.com>
* System.dll.sources: Added System.ComponentModel/MaskedTextResultHint.cs
2006-07-06 Dick Porter <dick@ximian.com>
* System.dll.sources: Added
System.Security.AccessControl/SemaphoreAccessRule.cs
System.Security.AccessControl/SemaphoreAuditRule.cs
2006-05-10 Atsushi Enomoto <atsushi@ximian.com>
* System_test.dll.sources : added ConnectionManagementSectionTest.cs
and WebRequestModulesSectionTest.cs.
2006-05-10 Atsushi Enomoto <atsushi@ximian.com>
* Makefile : add -r:System.Configuration under net_2_0.
2005-05-08 Carlos Alberto Cortez <calberto.cortez@gmail.com>
* Makefile: Add -unsafe flag, since it is needed in
System.IO.Ports.WinSerialStream.
2006-05-08 Atsushi Enomoto <atsushi@ximian.com>
* System.dll.sources : added SettingsBindableAttribute.cs.
2006-05-06 Carlos Alberto Cortez <calberto.cortez@gmail.com>
* System.dll.sources: Added new System.IO.Ports/ISerialStream.cs
file.
2006-04-28 Atsushi Enomoto <atsushi@ximian.com>
* System.dll.sources : added a bunch of missing sys.configuration
files.
2006-04-27 Atsushi Enomoto <atsushi@ximian.com>
* System.dll.sources : added ClientSettingsSection.cs.
2006-04-26 Atsushi Enomoto <atsushi@ximian.com>
* System.dll.sources : added ApplicationSettingsGroup.cs.
2006-04-20 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeGeneratorFromNamespaceTest.cs from
Microsoft.VisualBasic.
2006-04-17 Atsushi Enomoto <atsushi@ximian.com>
* System.dll.sources : Added AsyncOperation.cs,
AsyncOperationManager.cs, BackgroundWorker.cs,
DoWorkEventHandler.cs, DoWorkEventArgs.cs,
RunWorkerCompletedEventArgs.cs and
RunWorkerCompletedEventHandler.cs.
2006-04-06 Carlos Alberto Cortez <calberto.cortez@gmail.com>
* System.dll.sources: Added System.IO.Ports/SerialSignal.cs.
2006-04-05 Atsushi Enomoto <atsushi@ximian.com>
* System.dll.sources : added SslPolicyErrors.cs.
2006-04-05 Atsushi Enomoto <atsushi@ximian.com>
* System.dll.sources : added SortedDictionary.cs.
* System_test.dll.sources : added SortedDictionaryTest.cs.
2006-04-04 Atsushi Enomoto <atsushi@ximian.com>
* System.dll.sources: added DataReceivedEventArgs.cs and
DataReceivedEventHandler.cs.
* System_test.dll.sources : added StopwatchTest.cs.
2006-04-01 Zoltan Varga <vargaz@gmail.com>
* System.dll.sources: Added System.Diagnostics/Stopwatch.cs.
2006-03-30 Atsushi Enomoto <atsushi@ximian.com>
* System.dll.sources:
DownloadStringCompletedEventHandler.cs was missing.
2006-03-28 Atsushi Enomoto <atsushi@ximian.com>
* System.dll.sources : added ProgressChangedEvent[Args|Handler] in
System.ComponentModel, and several WebClient event args in
System.Net.
2006-03-09 Zoltan Varga <vargaz@gmail.com>
* System.dll.sources: Added System.ComponentModel.Design.Serialization/
CodeDomSerializerException.cs.
2006-02-28 Carlos Alberto Cortez <calberto.cortez@gmail.com>
* System.dll.sources: Forgot to add inside System.IO.Ports:
SerialData.cs, SerialError.cs, SerialPinChange.cs
2006-02-22 Kornél Pál <kornelpal@hotmail.com>
* System.dll.sources: Added System.IO.Ports.SerialPortStream.cs
to fix build.
2005-02-02 Carlos Alberto Cortez <calberto.cortez@gmail.com>
* System.dll.sources: Add the recently added System.Net 2.0
clases (FtpWebRequest, FtpWebResponse, FtpDataStream, FtpAsyncResult,
and also FtpStatusCode and WebRequestMethods).
2005-01-13 John Luke <john.luke@gmail.com>
* System_test.dll.sources: add System.Net.Mail.SmtpClient tests
2006-01-09 Chris Toshok <toshok@ximian.com>
* Makefile (LIB_MCS_FLAGS): if we're building net_2_0, define
CONFIGURATION_2_0 to use the new System.Configuration api.
2006-01-02 Chris Toshok <toshok@ximian.com>
* Makefile: use an external alias (PrebuiltSystem) when building
with CONFIGURATION_DEP.
2005-12-24 John Luke <john.luke@gmail.com>
* System_test.dll.sources: add System.Net.Mail tests
2005-12-23 John Luke <john.luke@gmail.com>
* System_test.dll.sources: add
System.Net.Mime/ContentDispositionTest.cs
System.Net.Mime/ContentTypeTest.cs
2005-12-13 Chris Toshok <toshok@ximian.com>
* System.dll.sources: add
System.Net.Configuration/FtpCachePolicyElement.cs.
2005-12-07 Robert Jordan <robertj@gmx.net>
* System.dll.sources: Added System.Net.Sockets/SocketError.cs.
2005-11-30 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeRemoveEventStatementTest.cs from
System.CodeDom.
2005-11-26 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeGeneratorFromStatementTest.cs
from Microsoft.VisualBasic.
2005-11-20 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeNamespaceImportCollectionTest.cs,
CodeNamespaceCollectionTest.cs, CodeTypeDeclarationCollectionTest.cs,
CodeTypeMemberCollectionTest.cs, CodeTypeParameterCollectionTest.cs,
CodeAttributeArgumentCollectionTest.cs, CodeDirectiveCollectionTest.cs,
CodeAttributeDeclarationCollectionTest.cs,
CodeCatchClauseCollectionTest.cs,
CodeCommentStatementCollectionTest.cs.
2005-11-09 Zoltan Varga <vargaz@gmail.com>
* System_test.dll.sources: Add Test/System.Collections.Generic/SortedListTest.cs.
* System.dll.sources: Add System.Collections.Generic/SortedList.cs.
2005-11-08 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeExpressionCollectionTest.cs,
CodeParameterDeclarationExpressionCollectionTest.cs,
CodeTypeReferenceCollectionTest.cs.
2005-11-04 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeCastExpressionTest.cs,
CodeCatchClauseTest.cs, CodeChecksumPragmaTest.cs,
CodeConstructorTest.cs, CodeDefaultValueExpressionTest.cs;
CodeDelegateCreateExpressionTest.cs, CodeEventReferenceExpressionTest.cs
CodeGotoStatementTest.cs, CodeLabeledStatementTest.cs,
CodeLinePragmaTest.cs, CodeMemberMethodTest.cs,
CodeMethodInvokeExpressionTest.cs, CodeMethodReferenceExpressionTest.cs,
CodeNamespaceImportTest.cs, CodeNamespaceTest.cs,
CodeObjectCreateExpressionTest.cs,
CodeParameterDeclarationExpressionTest.cs,
CodePropertyReferenceExpressionTest.cs, CodeRegionDirectiveTest.cs,
CodeSnippetCompileUnitTest.cs, CodeSnippetExpressionTest.cs,
CodeSnippetStatementTest.cs, CodeSnippetTypeMemberTest.cs,
CodeStatementCollectionTest.cs, CodeTypeConstructorTest.cs,
CodeTypeParameterTest.cs, CodeTypeOfExpressionTest.cs,
CodeTypeReferenceExpressionTest.cs,
CodeVariableDeclarationStatementTest.cs,
CodeVariableReferenceExpressionTest.cs
2005-10-24 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeArgumentReferenceExceptionTest.cs,
CodeArrayCreateExpressionTest.cs, CodeAttachEventStatementTest.cs,
CodeAttributeArgumentTest.cs, CodeAttributeDeclarationTest.cs.
2005-10-18 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added HttpWebRequestElementTest.cs
from Test/System.Net.Configuration.
2005-10-07 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeGeneratorTypeOutputTest.cs
from Test/Microsoft.CSharp.
2005-10-05 Atsushi Enomoto <atsushi@ximian.com>
* System.dll.sources: added System.Net/AuthenticationSchemes.cs.
2005-09-23 Chris Toshok <toshok@ximian.com>
* System.dll.sources: remove the System.Configuration.Property/*
* System.Configuration.Property/*: move to ../System.Configuration
where it belongs.
2005-09-19 Chris Toshok <toshok@ximian.com>
* System.Configuration/ProviderBase.cs: nuke this - it's in
System.Configuration.Provider.
* System/InvalidDataException.cs: move this to System.IO, where it
belongs.
* System.dll.sources: track movement of InvalidDataException.cs
and removal of ProviderBase.cs
2005-09-19 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added TypeConverterTest.cs and
PropertyDescriptorCollection.cs.
2005-09-04 David Waite <mass@akuma.org>
* System.dll.sources, System_test.dll.sources: Added LinkedList.cs,
LinkedListNode.cs and LinkedListTest.cs
2005-08-28 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added DateTimeConverterTests.cs.
2005-08-23 Raja R Harinath <rharinath@novell.com>
* System.dll.sources: Update.
2005-08-18 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added DecimalConverterTests.cs,
DoubleConverterTests.cs, Int64ConverterTests.cs, SByteConverterTests.cs
SingleConverterTests.cs, UInt16ConverterTests.cs,
UInt32ConverterTests.cs, UInt64ConverterTests.cs.
2005-08-16 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added ByteConverterTests.cs,
Int16ConverterTests.cs and Int32ConverterTests.cs.
* Makefile: We also need to reference System.Drawing assembly to
build test assembly.
2005-08-16 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added ToolboxItemAttributeTests.cs from
System.ComponentModel.
>>>>>>> .r48427
2005-07-24 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeTypeDelegateTest.cs from
System.CodeDom.
2005-07-21 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeGeneratorTest.cs from
System.CodeDom.Compiler.
2005-07-21 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeGeneratorFromTypeTestBase.cs
and CodeGeneratorTestBase.cs from System.CodeDom.Compiler.
2005-06-28 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeTypeReferenceTest.cs from
System.CodeDom.
2005-06-27 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeGeneratorFromExpressionTest.cs
from Microsoft.VisualBasic.
2005-06-27 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeMemberPropertyTest.cs from
System.CodeDom.
2005-06-25 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeMemberFieldTest.cs from
System.CodeDom.
2005-06-25 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeGeneratorFromTypeTest.cs from
Microsoft.VisualBasic.
2005-06-25 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CodeGeneratorTestBase.cs and
CodeGeneratorFromCompileUnitTest.cs from Microsoft.VisualBasic.
2005-06-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* Makefile: added reference to Mono.Security.dll when building the
tests.
2005-06-22 Sebastien Pouliot <sebastien@ximian.com>
* Makefile: Removed LIB_MCS_FLAGS for referencing corlib and added the
__SECURITY_BOOTSTRAP_DB export. This will allow the work on #74975 to
continue and shouldn't cause any harm to Linux or Cygwin builds.
2005-06-15 Lluis Sanchez Gual <lluis@novell.com>
* System.dll.sources: Added ProviderBase.cs.
2005-06-14 Lluis Sanchez Gual <lluis@novell.com>
* System.dll.sources: Removed some files that have been moved to the
new System.Configuration assembly.
* Makefile: Handle the cyclic dependency with the new
System.Configuration assembly.
2005-05-30 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added CSharpCodeProviderTest.cs
2005-05-28 Kornél Pál <kornelpal@hotmail.com>
* System_test.dll.sources: Added TimerTest.cs.
2005-05-20 Sebastien Pouliot <sebastien@ximian.com>
* System_test.dll.sources: Added new CAS unit tests for NetworkStream,
Socket and TcpClient to the build (stack propagation in async calls).
2005-05-20 Raja R Harinath <rharinath@novell.com>
* System_test.dll.sources: Add
System.Text.RegularExpressions/RegexReplace.cs.
* System.dll.sources: Update to reflect split-up of
System.Text.RegularExpressions/match.cs.
2005-05-19 Sebastien Pouliot <sebastien@ximian.com>
* Makefile: Do not report Obsolete warnings when compiling unit tests.
* System_test.dll.sources: Added new CAS unit tests to the build.
2005-05-13 Atsushi Enomoto <atsushi@ximian.com>
* System_test.dll.sources,
System.dll.sources: generic Queue.cs and Stack.cs are now in System.
2005-03-14 Raja R Harinath <rharinath@novell.com>
* Makefile (NO_INSTALL): Define during the first pass.
2005-03-04 Lluis Sanchez Gual <lluis@novell.com>
* System.dll.sources: Added OrderedDictionary.cs.
2005-02-22 Sureshkumar T <tsureshkumar@novell.com>
* System.dll.sources: Added files.
System.Configuration/ConnectionStringSettingsCollection.cs
System.Configuration/ConnectionStringSettings.cs
2005-02-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* System.dll.sources: added CodeDomConfigurationHandler.
2005-02-03 Raja R Harinath <rharinath@novell.com>
* Makefile (TEST_RESOURCES): New.
(EXTRA_DISTFILES): Distribute them.
2005-02-02 Ben Maurer <bmaurer@ximian.com>
* Makefile: Embed the uri stuff as a resource.
2005-01-24 Raja R Harinath <rharinath@novell.com>
Add circular dependency on System.Security.dll.
* Makefile (XML_DEP, XML_DEP_FILE): Rename from CYCLIC_DEP and
CYCLIC_DEP_FILE.
(SECURITY_DEP, SECURITY_DEP_FILE): Parallel defines for expressing
cyclic dependency on System.Security.dll. Defined only in NET2.0
related profiles.
(CYCLIC_DEPS, CYCLIC_DEP_FILES): New. Used to detect which of the
dependencies are present.
(echo-warning, LIB_MCS_FLAGS): Update to reflect new circular
dependencies.
2005-01-20 Miguel de Icaza <miguel@ximian.com>
* Add a couple more -nowarns when compiling tests.
2005-01-17 Raja R Harinath <rharinath@novell.com>
* Makefile ($(test_lib).config): New. Create it when test library
is built.
(CLEAN_FILES): Remove it.
(test-recursive,clean-recursive): Delete.
2005-01-14 Jonathan Pryor (jonpryor@vt.edu)
* Makefile: Add test-recursive and clean-recursive targets. Test-recursive
creates a Syste_test_PROFILE.dll.config file, required for the Switch
regression tests, and clean-recursive cleans up this file.
* System_test_default.dll.config, System_test.dll.config: Delete. These are
no longer necessary as the appropriate file is generated in test-recursive.
2005-01-10 Lluis Sanchez Gual <lluis@novell.com>
* System.dll.sources: Added new file:
System.ComponentModel/BindingDirection.cs
2004-12-26 Zoltan Varga <vargaz@freemail.hu>
* System.IO.Ports/ChangeLog: New file.
2004-12-21 Chris Toshok <toshok@ximian.com>
* System.dll.sources: add System.IO.Ports/*.
* System.IO.Ports/SerialPort.cs,
System.IO.Ports/SerialReceivedEventArgs.cs,
System.IO.Ports/SerialPinChangedEventArgs.cs,
System.IO.Ports/SerialErrorEventArgs.cs: initial import of the
System.IO.Ports stuff.
2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* System_test.dll.sources: added CookieContainerTest.cs.
2004-11-19 Raja R Harinath <rharinath@novell.com>
* Makefile (USE_BOOT_COMPILE): Re-organize to use BOOT_COMPILE
during the first pass.
(BOOTSTRAP_MCS): Use mscorlib.dll from the net_2_0 profile.
2004-11-18 Lluis Sanchez Gual <lluis@novell.com>
* System.dll.sources: Added new files:
System.Configuration/ProviderSettings.cs
System.Configuration/ProviderSettingsCollection.cs
System.Configuration.Provider/ProviderBase.cs
2004-11-15 Lluis Sanchez Gual <lluis@novell.com>
* System.dll.sources: Added new files:
System.Configuration/TimeSpanConfigurationProperty.cs
System.Configuration/TimeSpanPropertyFlags.cs
System.Configuration/TimeSpanSerializedFormat.cs
2004-11-09 Lluis Sanchez Gual <lluis@novell.com>
* System.dll.sources: Added new files:
System.Configuration/NonEmptyStringConfigurationProperty.cs
System.Configuration/NonEmptyStringFlags.cs
2004-11-04 Lluis Sanchez Gual <lluis@novell.com>
* System.dll.sources: Added new files:
System.Configuration/ConfigInfo.cs
System.Configuration/IntegerConfigurationProperty.cs
System.Configuration/RuntimeOnlySection.cs
System.Configuration/SectionInfo.cs
System.Configuration/SectionGroupInfo.cs
2004-09-21 Raja R Harinath <rharinath@novell.com>
* Makefile (lib_file) [PROFILE=net_2_0]: New test. Use
net_2_0_bootstrap libraries if necessary.
($(the_lib)): Don't depend on a phony target. Move 'echo-warning' ...
(all-local): ... here. Will now warn unnecessarily, but is better
than rebuilding the library each time.
2004-09-20 Gert Driesen <drieseng@users.sourceforge.net>
* System.dll.sources: Moved ReadOnlyCollection.cs and Collection.cs
from corlib to System.Collections.Generic in System assembly
2004-09-13 Tim Coleman <tim@timcoleman.com>
* System.dll.sources: Add new classes in System.Net.Security and
System.Security.Authentication for Fx 2.0
2004-09-12 Gert Driesen <drieseng@users.sourceforge.net>
* System.dll.sources: removed duplicate entry for System.Net.
Configuration.WebRequestModuleHandler
2004-09-11 Sebastien Pouliot <sebastien@ximian.com>
* System_test.dll.sources: Added unit tests for System.Diagnostics.
EventLogPermission and PerformanceCounterPermission.
2004-09-10 Sebastien Pouliot <sebastien@ximian.com>
* System_test.dll.sources: Added PermissionHelper to the build.
* System_test.dll.sources: Added unit tests for System.Security.
Permissions.ResourcePermissionBase and ResourcePermissionBaseEntry,
System.Web.AspNetHostingPermission and AspNetHostingPermissionAttribute.
2004-09-10 Tim Coleman <tim@timcoleman.com>
* System.dll.sources: Add System.Net.Cache, System.Net.Configuration,
System.Net.Mail, System.Configuration classes
2004-09-09 Tim Coleman <tim@timcoleman.com>
* System.dll.sources: Add new System.Net.Mail classes
2004-09-04 Tim Coleman <tim@timcoleman.com>
* System.dll.sources: Add System.Net.Mail and System.Net.Mime classes.
2004-09-03 Tim Coleman <tim@timcoleman.com>
* System.dll.sources: Add new class in System.Net
2004-08-16 Duncan Mak <duncan@ximian.com>
* System.dll.sources: Added new classes in System.Configuration.
2004-07-14 Atsushi Enomoto <atsushi@ximian.com>
* System.dll.sources:
Added IChangeTracking.cs and IRevertibleChangeTracking.cs
2004-07-09 LLuis Sanchez Gual <lluis@novell.com>
* System.dll.sources: Added files
System.ComponentModel/AsyncCompletedEventArgs.cs
System.ComponentModel/AsyncCompletedEventHandler.cs
2004-07-02 Raja R Harinath <rharinath@novell.com>
* Makefile (LIBRARY_USE_INTERMEDIATE_FILE): Define.
2004-06-13 Gert Driesen <drieseng@users.sourceforge.net>
* System_test.dll.sources: Added IndentedTextWriterTest to unit
tests
2004-06-10 Raja R Harinath <rharinath@novell.com>
* Makefile (LIBRARY_COMPILE): Define only if 'USE_BOOT_COMPILE' is
defined. Don't conflate building a non-Xml temporary System.dll
with building System.dll for bootstrapping mcs.
2004-06-09 Raja R Harinath <rharinath@novell.com>
* Makefile (CYCLIC_DEP_FILE): New. Used to detect if
System.Xml.dll is present.
(SECOND_PASS): Remove.
2004-06-05 Sebastien Pouliot <sebastien@ximian.com>
* System_test.dll.sources: Added X509CertificateCollectionTest
to the unit tests.
2004-06-03 Atsushi Enomoto <atsushi@ximian.com>
* Makefile : add run-test-ondotnet target support.
2004-05-24 Raja R Harinath <rharinath@novell.com>
* Makefile (EXTRA_FLAGS): Remove.
(LIBRARY_COMPILE) [!HAVE_SYSTEM_XML]: Use $(BOOT_COMPILE) for
non-Xml first build.
(all-local) [!SECOND_PASS]: Simplify.
2004-05-10 Raja R Harinath <rharinath@novell.com>
* Makefile (install-local,test-local,run-test-local,clean-local):
Make cyclic-dependency safe.
2004-05-07 Raja R Harinath <rharinath@novell.com>
* Makefile (all-local) [SECOND_PASS]: Rewrite to use 'make' itself
to determine out-of-date-ness. (This fixes an unlogged change.)
(install-local,test-local,run-test-local,clean-local): Collapse
near-identical rules.
2004-05-07 Raja R Harinath <rharinath@novell.com>
* Makefile (all-local): Built first pass with BOOT_COMPILE.
2004-04-26 Jackson Harper <jackson@ximian.com>
* Makefile: Use new $(PROFILE) directory to search for cyclical
dependancy.
2004-04-16 Lluis Sanchez Gual <lluis@ximian.com>
* System_test.dll.sources: Added
System.ComponentModel/TypeDescriptorTests.cs.
2004-04-14 Lluis Sanchez Gual <lluis@ximian.com>
* System.dll.sources: Added
System.ComponentModel/ReflectionEventDescriptor.cs,
System.ComponentModel/ReflectionPropertyDescriptor.cs.
2004-03-17 Ivan Hamilton <ivan@chimerical.com.au>
* System.dll.sources: Added System/System.ComponentModel.Design
/RuntimeLicenseContext.cs
* System_test.dll.sources : Added System.ComponentModel
/LicenseManagerTests.cs
2004-03-11 Zoltan Varga <vargaz@freemail.hu>
* Makefile (all-local): Fix for non-bash shells.
2004-02-26 Sebastien Pouliot <sebastien@ximian.com>
* System.dll.sources: Added System.Net/DefaultCertificatePolicy.cs to
the build.
2004-02-04 Marek Safar <marek.safar@seznam.cz>
* Makefile: Build System.dll in two steps. Because of the circular
dependency with System.XML.dll.
2004-01-21 Atsushi Enomoto <atsushi@ximian.com>
* System_test.dll.sources : Added CodeGeneratorIdentifierTest.cs
2004-01-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* System.dll.sources: added new files.
* System_test.dll.sources: added new test.
2004-01-01 Nick Drochak <ndrochak@gol.com>
* Makefile: Suppress warnings about multiple Regex defs and obsolete
calls in the test assembly.
2003-05-29 Nick Drochak <ndrochak@gol.com>
* System_test.dll.config: Nunit loads configs with the same name as the
test assembly. This is for the Swithes test.
2003-12-08 Atsushi Enomoto <atsushi@ximian.com>
* System_test.dll.sources : Added UriTest2.cs
2003-11-18 Todd Berman <tberman@gentoo.org>
* System.dll.sources: Added IOrderedDictionary.cs
2003-11-12 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* System.dll.sources: Added some new class files
2003-09-04 Duncan Mak <duncan@ximian.com>
* System_test.dll.sources: Add new test, ListDictionaryTest.cs.
2003-08-31 Alexandre Pigolkine <pigolkine@gmx.de>
* System_test.dll.sources new test added
2003-07-27 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* System.dll.sources: SRDescriptionAttribute.cs moved
2003-07-21 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* README: removed (contained only obsolete build instructions)
2003-07-21 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* System.dll.sources: EventLogImpl.cs added
2003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* System.dll.sources: AlphabeticalEnumConverter.cs, SRDescriptionAttribute.cs added
2003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* System.dll.sources: Assembly/Locale.cs added, Globalization.Locale.cs removed
2003-07-18 Peter Williams <peter@newton.cx>
* Makefile (EXTRA_DISTFILES): Oops, NUnit.Prefs is not
a distable file.
(EXTRA_DISTFILES): A few more.
2003-07-17 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* System.dll.sources: Assembly/Consts.cs added
2003-07-16 Peter Williams <peter@newton.cx>
* Makefile (SCARY_LIB): Flip around since what was bootstrap
is now default.
2003-07-14 Jerome Laban <jlaban@wanadoo.fr>
* System.dll.sources: Added NetConfigurationHandler.cs,
NetConfig.cs, IPv6MulticastOption.cs
2003-07-10 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* list.unix: Added AssemblyInfo.cs
2003-07-10 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* list.unix: Removed System.Net/ProxyUseType.cs, System.Net/WebStatus.cs
2003-07-06 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* list.unix: Add VBCodeGenerator.cs, VBCodeProvider.cs
2003-07-05 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* list.unix: Add CodeParser.cs, Executor.cs, removed CompilerOptions.cs
2003-07-05 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* list.unix: Add WebPermission.cs, WebPermissionAttribute.cs
2003-05-29 Nick Drochak <ndrochak@gol.com>
* makefile.gnu: turn on debug since it works again.
2003-05-21 Ben Maurer <bmaurer@users.sourceforge.net>
* StringWriter.cs: Fixed bug #43379 "Missing WebException.Response
property."
2003-03-30 Martin Willemoes Hansen <mwh@sysrq.dk>
* Stubed rest of System.ComponentModel
2003-03-29 Martin Willemoes Hansen <mwh@sysrq.dk>
* System.ComponentModel.Design.Serialization
Removed references to System.Web namespaces
2003-03-29 Martin Willemoes Hansen <mwh@sysrq.dk>
* Stubed System.ComponentModel/LicenseContext.cs
* Stubed System.ComponentModel/LicenseUsageMode.cs
* Stubed rest of System.ComponentModel.Design
2003-03-29 Martin Willemoes Hansen <mwh@sysrq.dk>
* Stubed System.ComponentModel/InheritanceAttribute.cs
* Stubed System.ComponentModel/InheritanceLevel.cs
* Stubed System.ComponentModel.Design/IDesignerFilter.cs
* Stubed System.ComponentModel.Design/IInheritanceService.cs
2003-03-27 Martin Willemoes Hansen <mwh@sysrq.dk>
* Stubed rest of System.ComponentModel.Design.Serialization
2003-03-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* list.unix: added RunInstallerAttribute.cs
2003-02-18 Alan Tam <Tam@SiuLung.com>
* list.unix (): Add DesignerCategoryAttribute.cs
2003-01-10 Duncan Mak <duncan@ximian.com>
* list.unix (CSharpCodeCompiler): Add
Microsoft.Charp.CSharpCodeCompiler for Sean Kasun.
2002-12-10 Jeroen Janssen <japj@darius.demon.nl>
* updated .build file(s) to correctly contain required buildfile
attribute for nant
2002-12-07 Jackson Harper <jackson@latitudegeo.com>
* list list.unix: Put CSharpCodeGenerator.cs back in build
2002-12-07 Jackson Harper <jackson@latitudegeo.com>
* list list.unix: Removed Compiler classes that are being moved to their own assembly
2002-12-05 Alejandro Sánchez Acosta <raciel@gnome.org>
* list.unix: updated.
2002-11-30 Alejandro Sánchez Acosta <raciel@es.gnu.org>
* list.unix: Changed.
* System.ComponentModel.Design: Added
2002-11-11 Tim Coleman <tim@timcoleman.com>
* list.unix:
* list:
* System.ComponentModel/DesignTimeVisibleAttribute.cs:
Add new class
2002-11-06 Jackson Harper <jackson@latitudegeo.com>
* list.unix: Added Microsoft.CSharp/Compiler.cs to build
2002-11-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* list.unix: added new files.
2002-11-04 Tim Coleman <tim@timcoleman.com>
* System.ComponentModel/RefreshProperties.cs:
* System.ComponentModel/RefreshPropertiesAttribute.cs:
Add new classes
2002-11-02 Duncan Mak <duncan@ximian.com>
* list.unix: Added InvalidEnumArgumentException.
2002-10-31 Dick Porter <dick@ximian.com>
* list.unix: Added MonoIO and MonoIOError to the build
2002-10-29 Daniel Morgan <danmorg@sc.rr.com>
* System.ComponentModel/PropertyDescriptor.cs: added
missing abstract methods and properties
* System.ComponentModel/DerivedPropertyDescriptor.cs: implemented
SetValue and added stubs for missing methods and properties
2002-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* list.unix: added new files in System.Configuration.
2002-10-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* list.unix: added new files.
2002-08-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* System.ComponentModel/Component.cs:
* System.ComponentModel/ComponentCollection.cs:
* System.ComponentModel/Container.cs:
* System.ComponentModel/MarshalByValueComponent.cs:
* System.Diagnostics/Process.cs:
* System.Diagnostics/TextWriterTraceListener.cs:
* System.IO/FileSystemWatcher.cs:
IDisposable fixes.
2002-08-15 Tim Coleman <tim@timcoleman.com>
* list.unix: Added System.IO files.
2002-07-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* list:
* list.unix: added EnumConverter.cs
2002-07-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* list:
* list.unix: added DerivedPropertyDescriptor.cs
2002-07-22 Tim Coleman <tim@timcoleman.com>
* list.unix: Added new file
System.ComponentModel.RecommendedAsConfigurableAttribute.cs
to build on unix.
2002-07-22 Tim Coleman <tim@timcoleman.com>
* list.unix: Added files to the build for linux
System.ComponentModel.BindableAttribute.cs,
System.ComponentModel.BindableSupport.cs,
System.ComponentModel.ExpandableObjectConverter.cs,
System.ComponentModel.NotifyParentPropertyAttribute.cs,
System.ComponentModel.ToolboxItemAttribute.cs,
2002-07-22 Tim Coleman <tim@timcoleman.com>
* list.unix: Added System.ComponentModel/DefaultEventAttribute.cs
and System.ComponentModel.DefaultProperty.cs to build
2002-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* System.build: removed System.Drawing.dll dependency.
2002-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* System.build: referenced System.Drawing.dll.
2002-05-12 Lawrence Pit <loz@cable.a2000.nl>
* System.Security.Cryptography.X509Certificates: directory added
2002-05-09 Rodrigo Moya <rodrigo@ximian.com>
* System.build: don't exclude anymore excluded files in
System.ComponentModel. They compile on Linux, so they might also
on Windows.
2002-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* System.build: excluded EventDescriptor.cs,
EventDescriptorCollection.cs and ICustomTypeDescriptor.cs.
2002-04-08 Nick Drochak <ndrochak@gol.com>
* System.build: Build System.dll with mono's corlib.dll and
System.Xml.dll.
2002-01-23 Dick Porter <dick@ximian.com>
* System.build: Start build System.Net.Sockets.Socket.cs,
TcpClient.cs and TcpListener.cs
2001-12-07 Nick Drochak <ndrochak@gol.com>
* ChangeLog: Add the change log to this directory
* System.build: Add dependancy on linux target to test target. Need to
have the dll before we can test it, right? Plus it encourages others
to try 'make test'.
|