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