Imported Upstream version 3.6.0

Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
This commit is contained in:
Jo Shields
2014-08-13 10:39:27 +01:00
commit a575963da9
50588 changed files with 8155799 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
//
// AssemblyInfo.cs
//
// Author:
// Gert Driesen (drieseng@user.sourceforge.net)
//
// (C) 2004 Ximian, Inc. http://www.ximian.com
//
using System;
using System.Reflection;
using System.Resources;
using System.Security;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about the system assembly
[assembly: AssemblyVersion (Consts.FxVersion)]
[assembly: SatelliteContractVersion (Consts.FxVersion)]
[assembly: AssemblyInformationalVersion(Consts.FxFileVersion)]
#if (NET_2_0)
[assembly: AssemblyFileVersion(Consts.FxFileVersion)]
#endif
[assembly: AssemblyTitle("ResGen.exe")]
[assembly: AssemblyDescription("ResGen.exe")]
[assembly: AssemblyConfiguration("Development version")]
[assembly: AssemblyCompany("MONO development team")]
[assembly: AssemblyProduct("MONO CLI")]
[assembly: AssemblyCopyright("(c) 2003 Various Authors")]
[assembly: AssemblyTrademark("")]
[assembly: CLSCompliant(true)]
[assembly: AssemblyDefaultAlias("ResGen.exe")]
[assembly: NeutralResourcesLanguage("en-US")]
[assembly: ComVisible(false)]

View File

@@ -0,0 +1,11 @@
2005-11-05 Kornél Pál <kornelpal@hotmail.com>
* AssemblyInfo.cs: Use Consts.FxFileVersion as
AssemblyInformationalVersion and AssemblyFileVersion.
2004-05-09 Gert Driesen <drieseng@users.sourceforge.net>
* AssemblyInfo.cs: Added
* Consts.cs : Added
* Locale.cs : Added
* ChangeLog: Added

View File

@@ -0,0 +1,98 @@
2008-09-09 Sebastien Pouliot <sebastien@ximian.com>
* monoresgen.cs: Make resgen2 report a bit more useful by considering
the extra XmlException in the exception chain.
2007-04-18 Gert Driesen <drieseng@users.sourceforge.net>
* monoresgen.cs: Clean up resources when resource file cannot be
compiled.
2007-04-18 Gert Driesen <drieseng@users.sourceforge.net>
* monoresgen.cs: Added support for 4 digit unicode escapes on 2.0
profile. Patch provided by Alex Earl. Fixes bug #81136.
2007-04-15 Marek Safar <marek.safar@gmail.com>
* monoresgen.cs: Use invariant ToLower.
2007-02-16 Gert Driesen <drieseng@users.sourceforge.net>
* monoresgen.cs: Added support for /useSourcePath option (2.0 only).
Fixes bug #80571. Update usage instructions. When Exception is
TargetInvocationException, and an InnerException is available then use
that one instead. Support absolute filenames for resource files.
2006-05-02 Robert Jordan <robertj@gmx.net>
* monoresgen.cs (TxtResourceReader/Writer): Support escapes
(\n, \r, \t, \\) in input and output. Fixes bug #78270 and
an internal TODO.
2006-04-11 Gert Driesen <gert.driesen@telenet.be>
Raja R Harinath <rharinath@novell.com>
* Makefile (PROGRAM): Make profile-specific.
(PROGRAM_COMPILE): Don't set.
(CLEAN_FILES): Add 'resgen.exe'.
2005-01-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* monoresgen.cs: s/monoresgen/resgen/. Open the destination file with
FileMode.Create. Fixes bug #52105.
2004-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* monoresgen.cs: fixed format exception in the po reader.
2004-05-20 Raja R Harinath <rharinath@novell.com>
* Makefile (PROGRAM_COMPILE): Define to $(BOOT_COMPILE).
2004-05-09 Gert Driesen <drieseng@users.sourceforge.net>
* monoresgen.cs : use Assembly.Load with fullly qualified assembly
name for loading swf assembly
* monoresgen.exe.sources : added AssemblyInfo.cs, Consts.cs,
Locale.cs
2004-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* monoresgen.cs: don't create the output file on error reading the
input. Fixes bug #55916.
2004-01-12 Miguel de Icaza <miguel@ximian.com>
* monoresgen.cs (PoResourceWriter.AddResource): Escape strings,
fixes #52105
2003-12-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* monoresgen.cs: ignore entries marked as 'fuzzy' in .po files.
2003-12-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* monoresgen.cs: generate valid .po files. Fixes bug #52106.
2003-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* monoresgen.cs: added reader/writer for .po files.
Wed Mar 5 11:35:54 CET 2003 Paolo Molaro <lupus@ximian.com>
* monoresgen.cs: patch from Ian MacLean <ianm@ActiveState.com>
to add the /compile option.
2003/01/22 Nick Drochak <ndrochak@gol.com>
* makefile: assume csc for makefile, and mcs for makfile.gnu.
2002-08-19 Dick Porter <dick@ximian.com>
* monoresgen.cs: Added ';' as a text format comment char
Wed Aug 7 15:51:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
* monoresgen.cs: added the Mono implementation of resgen.

14
mcs/tools/resgen/Makefile Normal file
View File

@@ -0,0 +1,14 @@
thisdir = tools/resgen
SUBDIRS =
include ../../build/rules.make
PROGRAM = resgen.exe
CLEAN_FILES = resgen.exe
INSTALL_PROFILE := $(filter net_2_0 net_4_5, $(PROFILE))
ifndef INSTALL_PROFILE
NO_INSTALL = yes
endif
include ../../build/executable.make

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,4 @@
Assembly/AssemblyInfo.cs
../../build/common/Consts.cs
../../build/common/Locale.cs
monoresgen.cs