use a 2.0 network stack for MONOTOUCH
[mcs.git] / tools / csharp / ChangeLog
blob4045cdb9ad7ec321a46034d56f2d151e4ad95c34
1 2009-04-17  Miguel de Icaza  <miguel@novell.com>
3         * Makefile: Make this build using csharplib instead of referencing
4         the gmcs.exe that was just built.
5         
6         * repl.cs: Support executing files that were specified in the
7         command line. 
9 2008-12-16  Jb Evain  <jbevain@novell.com>
11         * Makefile: use the monolinker.exe from the profile directory.
13 2008-11-02  Miguel de Icaza  <miguel@novell.com>
15         * repl.cs: Fix regression, quit when requested.
17 2008-09-28  Miguel de Icaza  <miguel@novell.com>
19         * repl.cs (PrettyPrint): Add support for displaying characters
20         properly. 
22 2008-09-27  Miguel de Icaza  <miguel@novell.com>
24         * getline.cs: Add support for autocompletion.
25         
26         * repl.cs (RunRepl): Catch exceptions, and send those as errors
27         back to the client.
29         * repl.cs: Rename AttachedCSharpShell to ClientCSharpShell.
31         Make most of the CSharpShell code into instance code, so that we
32         can override the behavior on ClientCSharpShell and reuse most of
33         the logic there.
35         CSharpShell now has a virtual `Evaluate' that is used to implement
36         the evaluator. 
38         Implemented a new more robust protocol for sending the information
39         back and forth.
41         Now the results are show on the client, and come prettyprinted.
43 2008-09-25  Miguel de Icaza  <miguel@novell.com>
45         * repl.cs: On errors, return null.
47 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
49         * Makefile repl.cs: Add support for attaching to arbitrary mono
50         processes.
52 2008-09-10  Miguel de Icaza  <miguel@novell.com>
54         * Move the repl shell here.