| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- 2002-12-31 Jonathan Pryor <[email protected]>
- * makefile.gnu: Add support for DIRS to all, install targets. This was done
- so type-reflector's install target could be independent/self-contained.
- 2002-12-27 Sebastien Pouliot <[email protected]>
- * ASN1.cs: New. Classes to manipulate Abstract Syntax Notation 1
- structures.
- * cert2spc.cs: New tool to generate Software Publisher Certificate
- (SPC) from a list of X509 certificate and CRL.
- * secutils.cs: Changed copyright notice.
- * makefile: Added cert2spc.exe to Windows build.
- * makefile.gnu: Added cert2spc.exe to Linux build.
- 2002-12-22 Sebastien Pouliot <[email protected]>
- * secutils.cs: New tool to extract strongname and X509 certificate
- from assembly (or other signed files).
- * makefile: Added secutil.exe to Windows build.
- * makefile.gnu: Added secutil.exe to Linux build.
- 2002-12-06 Duncan Mak <[email protected]>
- * makefile.gnu (clean): Remove *.dbg files.
- 2002-10-16 Daniel Morgan <[email protected]>
- * SqlSharpCli.cs: SQL query tool moved
- from mcs/class/System.Data/Test
- to mcs/tools/SqlSharp. Include it in the build
- so people can have a place to test connection strings
- and the ADO.NET providers
- 2002-09-01 Jonathan Pryor <[email protected]>
- * type-reflector: new tool. See type-reflector/README for more information.
- 2002-03-09 Martin Baulig <[email protected]>
- * DumpCultureInfo.cs: New tool to dump culture info. Incomplete,
- we need to get unicode support working before we can use this.
- 2002-03-05 Gaurav Vaish <[email protected]>
- * GenerateDelegate.cs: Generates delegates (EventHandler) as
- specified. The output is quite simple, a delegate that has
- the prototype as -->
- public delegate void <given-name>EventHandler(object sender,
- <given-name>EventArgs e)
- 2002-03-01 Martin Baulig <[email protected]>
- * scan-tests.pl: Catch exceptions when running the tests so that we
- always run all the tests in a test suite even if some of them fail.
- 2002-02-27 Martin Baulig <[email protected]>
- * scan-tests.pl: Moved this script here from ../class/corlib/Test.
- 2002-02-22 Nick Drochak <[email protected]>
- * makefile: move corcompare to it's own directory to hold multiple
- class files. still makes old corcompare for now. will remove that
- soon.
- 2002-02-18 Duncan Mak <[email protected]>
- * serialize.cs: When appropriate, changed Type.GetType calls to
- the faster typeof operator.
- 2002-02-19 Nick Drochak <[email protected]>
- * corcompare.cs: Reorganized into collaberating classes to analyze
- and generate reports. Still needs to find the MonoTODO's, and
- has a little more prototype code in there, but it's almost done.
- * makefile: output XML file in the tools directory for now.
- 2002-02-15 Nick Drochak <[email protected]>
- * corcompare.cs: Adding stuff to collect all the missing and todo
- information need to generate nice looking HTML pages. Not quite
- done and needs some re-org, but Duncan can take a look.
- * sample.xml: an example of how the XML will look that corcompare
- will generate. Can be used to start working on the XSLT.
- 2002-02-13 Nick Drochak <[email protected]>
- * makefile: 'clean' target now removes file generated by CorCompare
- 2002-02-03 Duncan Mak <[email protected]>
- * serialize.cs: Added namespace block.
- 2002-02-01 Duncan Mak <[email protected]>
- * serialize.cs: Added a new tool for serializing objects. It
- can create new types dynamically, but can only handle
- arguments that are of primitive types.
- 2002-01-26 Gaurav Vaish <[email protected]>
- * EnumCheckAssemblyCollection.cs,
- * assemblies.xml: Files related to EnumCheck checked-in. Now EnumCheck does
- not have any path hardcoded. It takes the assemblies to
- search from a xml files, which by default is assemblies.xml
- 2002-01-25 Nick Drochak <[email protected]>
- * .cvsignore: ignore .dll files now since we build NUnitCore.dll ourselves
- 2002-01-18 Duncan Mak <[email protected]>
- * EnumCheck.cs: A checkin for Miguel to make EnumCheck not hardcode
- path to corlib.dll.
- 2002-01-19 Nick Drochak <[email protected]>
- * makefile: corcompare works again now, so make xml of missing types
- * CorCompare.cs: use exception that .NET v1 throws to get types in mono corlib
- 2002-01-18 Nick Drochak <[email protected]>
- * makefile: remove path to beta2 csc.exe. path to csc.exe must be in PATH instead.
- don't generate xml from corcompare for now. it throws an error on v1.0 of .NET
- 2002-01-17 Nick Drochak <[email protected]>
- * IFaceDisco.cs, XMLUtil.cs: Added new files for interface discovery tool.
- * makefile: added target for IFaceDisco.exe and added to clean target for same
- 2002-01-08 John Barnette <[email protected]>
- * Removed todo.cs and related makefile data.
- 2002-01-07 John Barnette <[email protected]>
-
- * makefile: added todo target, fixed EnumCheck target, simplified clean
-
- * todo.cs: new file. generates todo list XML and compares assemblies
- 2002-01-07 Gaurav Vaish <[email protected]>
- * EnumCheck.cs: Get the numerical values of an enumeration.
- 2002-01-06 Nick Drochak <[email protected]>
- * corcompare.cs: Catch the FileNotFoundException and handle it nicely.
- 2002-01-05 Nick Drochak <[email protected]>
- * makefile: build corcompare
- * corcompare.cs: add new file. compares an assembly with mscorlib
|