Imported Upstream version 4.6.0.125

Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2016-08-03 10:59:49 +00:00
parent a569aebcfd
commit e79aa3c0ed
17047 changed files with 3137615 additions and 392334 deletions

View File

@@ -1,22 +0,0 @@
2008-04-25 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* AssemblyInfo.cs: Change to use more constants
2008-04-09 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* AssemblyInfo.cs: Add missing attributes
2005-11-05 Kornél Pál <kornelpal@hotmail.com>
* AssemblyInfo.cs: Use Consts.VsFileVersion as AssemblyFileVersion and
AssemblyInformationalVersion.
2005-08-07 Gert Driesen <drieseng@users.sourceforge.net>
* AssemblyInfo.cs: Fixed attributes to match MS.NET.
2004-04-06 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* AssemblyInfo.cs: Added
* ChangeLog: Added
* Locale.cs: Added

View File

@@ -1,16 +0,0 @@
2004-05-11 Jacskon Harper <jackson@ximian.com>
* Makefile: Specify correct lowercase assembly name.
2004-02-22 Atsushi Enomoto <atsushi@ximian.com>
* Added Cscompmgd_test.dll.sources.
* Makefile: Removed NO_TEST=yes
2003-07-03 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* Cscompmgd.build: Removed unneeded unsafe compiler switch
2002-12-07 Jackson Harper <jackson@latitudegeo.com>
* Cscompmgd.build: Added file

View File

@@ -4,7 +4,7 @@ include ../../build/rules.make
LIBRARY = Cscompmgd.dll
LIB_REFS = System
LIB_MCS_FLAGS = /r:$(corlib)
LIB_MCS_FLAGS =
TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:0618 -nowarn:219 -nowarn:169
LIBRARY_NAME = cscompmgd.dll

View File

@@ -1,83 +0,0 @@
2006-05-30 Gert Driesen <drieseng@users.sourceforge.net>
* ErrorLevel.cs: Removed extra Serializable attribute in 2.0 profile.
2005-04-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* Compiler.cs: redirect standard error. Patch by Toby Miller that fixes
bug #74067.
2004-12-14 Jackson Harper <jackson@ximian.com>
* Compiler.cs: mcs writes to stderr now. Also read stdout so we do
not block if mcs writes a lot of data to is.
2004-07-02 Jackson Harper <jackson@ximian.com>
* Compiler.cs:
* CompilerError.cs:
* ErrorLevel.cs: Make obsolete in 2.0
2004-05-11 Gert Driesen (drieseng@users.sourceforge.net)
* Compiler.cs: marked ctor private to match MS.NET
2003-02-23 Jackson Harper <jackson@latitudegeo.com>
* CompilerError.cs: Use fields not properties, and remove unneeded finalizer
2002-12-15 Jackson Harper <jackson@latitudegeo.com>
* CompilerError.cs ErrorLevel.cs: Moved ErrorLevel enum into its own file
2002-12-12 Jackson Harper <jackson@latitudegeo.com>
* Compiler.cs: Partially implemented bugreport option, also only allow valid options now
2002-12-07 Jackson Harper <jackson@latitudegeo.com>
* Compiler.cs: Moved StreamWriter creation into a try block
2002-12-07 Jackson Harper <jackson@latitudegeo.com>
* Compiler.cs: Source text is now implemented so you can pass strings of C# code to be compiled
2002-12-07 Jackson Harper <jackson@latitudegeo.com>
* TODOAttribute.cs: Added file
2002-12-07 Jackson Harper <jackson@latitudegeo.com>
* Compiler.cs CompilerError.cs: Moved file
2002-11-11 Jackson Harper <jackson@latitudegeo.com>
* CompilerError.cs: Reordered ErrorLevel enumeration to match MS values
2002-11-11 Jackson Harper <jackson@latitudegeo.com>
* CompilerError.cs: Error levels are now lower case to match MS spec
2002-11-9 Jackson Harper <jackson@latitudegeo.com>
* CompilerError.cs: ToString() Do not show source file info if there was no source file in the error message
2002-11-6 Jackson Harper <jackson@latitudegeo.com>
* Compiler.cs: No longers waits untill mcs is finished running to read output, this should prevent
crashes from buffers filling up.
2002-11-4 Jackson Harper <jackson@latitudegeo.com>
* Compiler.cs CompilerError.cs: Fixed (C) in header
2002-11-4 Jackson Harper <jackson@latitudegeo.com>
* Compiler.cs: Added file
2002-11-4 Jackson Harper <jackson@latitudegeo.com>
* CompilerError.cs: Changed FileName property to the correct name 'SourceFile'
2002-10-30 Jackson Harper <jackson@latitudegeo.com>
* CompilerError.cs: Added class

View File

@@ -1,8 +0,0 @@
2004-05-11 Raja R Harinath <rharinath@novell.com>
* CompilerTest.cs (constructor): Remove. Compiler is a static-only
class.
2004-02-22 Atsushi Enomot <atsushi@ximian.com>
* Added CompilerTest.cs (just for setting up)