ChangeLog 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. 2004-08-21 Jochen Wezel <[email protected]>
  2. * VBCodeGenerator.cs: Removed some indentation commenting in generated
  3. source code
  4. 2004-08-09 Jambunathan K <[email protected]>
  5. * VBCodeCompiler.cs: Regex pattern in CreateErrorFromString() now
  6. reads (?<level>error|warning) instead of (?<level>\w*). This is
  7. so that mbas's ALPHA message doesn't get captured as a error
  8. string.
  9. 2004-06-28 Atsushi Enomoto <[email protected]>
  10. * VBCodeCompiler.cs : (only for windows) First check mono.bat, then
  11. check mono.exe. It enables xsp working with mono windows installer.
  12. 2004-06-24 Atsushi Enomoto <[email protected]>
  13. * VBCodeCompiler.cs : On windows we use fixed mono.exe and mbas.exe
  14. located by mscorlib.dll. (The same fix as that of CSharpCodeCompiler)
  15. 2004-06-03 Jochen Wezel <[email protected]>
  16. * VBCodeGenerator.cs: MemberAttributes made more compatible to MS
  17. style (e. g. NotOverridable), Properties ReadOnly/WriteOnly fixed,
  18. Property Set fixed, successless analysis of wrong indentation of last
  19. line which contains "End Namespace" (should be on the very left)
  20. 2004-04-26 Jochen Wezel <[email protected]>
  21. * VBCodeGenerator.cs: GenerateAttributeDeclarationsEnd: Fix of line break
  22. 2004-02-10 Jackson Harper <[email protected]>
  23. * VBCodeCompiler.cs: Use the temp files collection for
  24. creating temp files.
  25. 2004-02-05 Jackson Harper <[email protected]>
  26. * VBCodeCompiler.cs: Set file extensions properly.
  27. 2003-11-27 Rafael Teixeira <[email protected]>
  28. * Microsoft.VisualBasic/VBCodeGenerator.cs: Support for Option Strict/Option Explicit
  29. 2003-11-27 Jackson Harper <[email protected]>
  30. * VBCodeCompiler.cs: Put a space between Property and the
  31. properties name. Only add a closing quote to strings if we are
  32. still in a quote. Use BaseType == "System.Void" to determine if a
  33. method is void. This prevents getting As Nothing functions. Many
  34. thanks to Anirban for helping me with VB Syntax.
  35. 2003-11-27 Jackson Harper <[email protected]>
  36. * VBCodeCompiler.cs: use /wlevel for warning level. This is what
  37. mbas uses.
  38. 2003-11-06 Gonzalo Paniagua Javier <[email protected]>
  39. * VBCodeGenerator.cs: some corrections regarding missing spaces in
  40. generated code (e. g. "Property "). QuoteSnippetString implemented.
  41. Patch by Jochen Wezel ([email protected]).
  42. 2003-10-17 Rafael Teixeira <[email protected]>
  43. * Microsoft.VisualBasic/VBCodeGenerator.cs: Sub or Function generation
  44. is switched by method.ReturnType being "System.Void"
  45. 2003-10-17 Rafael Teixeira <[email protected]>
  46. * Microsoft.VisualBasic/VBCodeCompiler.cs: Inserts "--" before file
  47. names block
  48. * Microsoft.VisualBasic/VBCodeGenerator.cs: Indexer should be
  49. ".Item(xx)"
  50. 2003-10-14 Gonzalo Paniagua Javier <[email protected]>
  51. * Microsoft.VisualBasic/VBCodeCompiler.cs: New.
  52. * Microsoft.VisualBasic/VBCodeGenerator.cs:
  53. * Microsoft.VisualBasic/VBCodeProvider.cs: modified others to use the
  54. new CodeCompiler.
  55. New VBCodeCompiler by Jochen Wezel <[email protected]>.
  56. 2003-07-07 Andreas Nahr <[email protected]>
  57. * VBCodeProvider.cs: Removed unneccesary attributes according to
  58. corecompare
  59. 2003-06-25 Andreas Nahr <[email protected]>
  60. * VBCodeGenerator.cs: Added and nearly completely implemented
  61. (it compiles, but the functionallity is completely untested)
  62. (also without a working mbas the compilaton options will fail)
  63. (once all command line arguments for mbas are final and the
  64. warning output is final change the apropriate code to generate
  65. these options)
  66. * VBCodeProvider.cs: Added and implemented