2007-01-21 Rafael Teixeira * driver.cs: accept absolute *nix paths for library names without getting them confused with options 2006-07-24 Alp Toker * driver.cs: Minor typo fixes in comments and informational output. 2006-04-12 Miguel de Icaza * driver.cs: Delete the target file before copying over, this will ensure that if some running application is using the assembly or any of its datafiles, it does not get corrupted by an install. 2005-10-26 Geoff Norton * driver.cs: Do not match every item with a blank string. Fixes #76563 2005-09-10 Miguel de Icaza * driver.cs: Only symlink if the file that we are symlking to exists. This fixes all the stale symlinks on $prefix/mono/1.0/ to config files that do not exist. 2005-09-05 Miguel de Icaza * driver.cs (Uninstall): Add workaround, Directory.GetFiles does not return symlinks inside the directories which makes this break on uninstall (make distcheck on monodoc exposed this). 2005-07-01 Carlos Alberto Cortez * driver.cs (Install): Copy the linked resource files for the assembly when installing it. 2005-05-20 Ben Maurer * driver.cs (Main): If the switch argument isn't actually a switch, treat it like a file. Fixes 73405. 2005-03-14 Raja R Harinath * Makefile (PROGRAM): Make profile-specific during net_1_1_bootstrap. 2005-01-18 Raja R Harinath * driver.cs (Install): Restore fix from 2004-12-08. 2005-01-13 Mike Kestner * driver.cs: use relative symlinks for the package dir. 2005-01-11 Jackson Harper * driver.cs: Make sure the actual assembly file exists when listing assemblies. Some packages don't remove the entire directory so we get existing directories without assemblies in them. 2004-12-08 Raja R Harinath * driver.cs (Symlink): Pass additional parameter: the name of the dll being installed. If needed copy that file, not 'oldpath', since 'oldpath' need not be a valid file (esp. on DESTDIR builds). (Install): Update. 2004-07-28 Jackson Harper * driver.cs: Check for and install .mdb (debuger symbol files). 2004-07-15 Jackson Harper * driver.cs: MONO_GAC_PREFIX not MONO_GAC_PATH. 2004-06-15 Jackson Harper * driver.cs: Ensure that the -gacdir ends with /lib if it does not appened one. The reason for this is that the runtime expects it, and existing makefiles user -gacdir $(destdir)/$(libdir) so auto appending it without checking would break many things. 2004-06-10 Jackson Harper * driver.cs: We don't need to check if the canidate is a file in IsSwitch anymore as some other commandline handling will take care of this case. 2004-06-10 Jackson Harper * driver.cs: Don't append gacdir to /root. This breaks everything. Will add another option for doing this if its needed. 2004-06-09 Jackson Harper * gacutil.exe.sources: Make the new gacutil the default and return seats to their upright position. 2004-06-08 Jackson Harper * driver.cs: When checking refs don't bother using an AppDomain and load the assembly using the code base so we get the right one. Print out the name of the non strong named assembly if one is referenced. 2004-06-08 Jackson Harper * driver.cs Add install from list and uninstall from list commands. Allow options to come before commands. Add the /silent option so we can shut the tool up. And use returns instead of Environment.Exit where appropriate. 2004-06-07 Jackson Harper * driver.cs: Add -check_refs option to check if all referenced assemblies are stron named. Fix some pathing issues when create links for packaged. Update todds (C) info. 2004-06-05 Miguel de Icaza * gacutil.cs: GetAssemblyInfo might return null now, check for that. Add try/catch to GetAssemblyInfo. 2004-05-27 Gonzalo Paniagua Javier * gacutil.cs: when -il, don't stop if one assembly fails to install. 2004-05-21 Jackson Harper * driver.cs: More fiddling with paths. 2004-05-21 Jackson Harper * driver.cs: Allow the root and gacdir to both be specified. In this case they are combined. 2004-05-21 Jackson Harper * driver.cs: Do not allow gacdir and root to be specified at the same time. Cleanup help. Add help for options. 2004-05-21 Jackson Harper * driver.cs: Add uninstall-specific option. This takes an assembly file and uninstalls a matching named one from the GAC. Fix search string shenanigans when uninstalling. 2004-05-21 Jackson Harper * driver.cs: This is the new gacutil. Right now it wont get built, after I do a little more testing I will make it the built/installed gacutil. 2004-05-19 Gonzalo Paniagua Javier * gacutil.cs: force = true requested by Miguel. 2004-05-17 Gonzalo Paniagua Javier * gacutil.cs: (InstallAssembly): use Array.IndexOf to search for "/f", "-f" or "--force" instead of expecting it in a fixed place. 2004-05-14 Todd Berman * gacutil.cs: Remove old file/symlink, thanks urs. 2004-05-14 Jackson Harper * gacutil.cs: Always install the package files. 2004-05-04 Jackson Harper * gacutil.cs: We need to overwrite existing libraries if they already exist in the package directory on windows. Also made the code somewhat readable with 80 cols. 2004-05-03 Todd Berman * gacutil.cs: potential fix for miguel. 2004-05-03 Todd Berman * gacutil.cs: support /package in /u now as well. 2004-05-03 Todd Berman * gacutil.cs: Add /package support. Seriously going to rewrite cmdline handling *asap* cause this is just wrong. 2004-05-01 Todd Berman * gacutil.cs: copy the config file, not the assembly again. 2004-05-01 Todd Berman * gacutil.cs: ack, miguel is right, cmdline handling needs some love. 2004-04-30 Todd Berman * gacutil.cs: cleanup help. 2004-04-30 Todd Berman * gacutil.cs: remove /prefix, now --root and /root 2004-04-30 Todd Berman * gacutil.cs: Change the way of handling the /prefix stuff. Now all gacbased operations will work with /prefix or --root. This *MUST* be at the end of the commandline for it to work. Also note, that in a Makefile changing /i to /u will not work, as the gac uninstalls based on AssemblyName.Name, so forexample: gacutil /i some/path/blah/System.dll --root /usr/lib/somefakegac will install and gacutil /u System --root /usr/lib/somefakegac will uninstall. 2004-04-30 Miguel de Icaza * gacutil.cs: Rename /prefix with /libdir, Append mono/gac to that. 2004-04-30 Jackson Harper * gacutil.cs: Install config files. 2004-04-30 Jackson Harper * gacutil.cs: Use invariant culture for ToLower. Patch from Urs Muff. 2004-04-30 Todd Berman * gacutil.cs: Add a missing .Trim () 2004-04-29 Jackson Harper * gacutil.cs: Allow a prefix to be specified. This is only for packaging if you install to some wack prefix it wont work. 2004-04-29 Gonzalo Paniagua Javier * gacutil.cs: return non-zero when something fails. 2004-04-29 Todd Berman * gacutil.cs: Add assembly name to installation message. 2004-04-27 Jackson Harper * gacutil.cs: Temporarily disable strong name verification when installing. 2004-04-27 Jackson Harper * gacutil.cs: Remove hack for removing strong name headers. The strong name type now handles these properly and this screwed up the ecma key. 2004-03-25 Jackson Harper * gacutil.cs: Add culture to assemblies version string. 2003-12-10 Todd Berman * gacutil.cs: Properly detect and fail gracefully on ms.net runtime * README: * TODO: Updated 2003-12-10 Zoltan Varga * gacutil.cs: Fix binding flags. * gacutil.cs: Applied patch from Todd Berman (tbermann@gentoo.org). Use Environment.GacPath () instead of hardcoding the GAC path. 2003-11-16 Sebastien Pouliot * gacutil.cs: Added strongname validation * Makefile: Added a reference to Mono.Security assembly. 2003-11-16 Todd Berman * gacutil.cs: /il functionality * gacutil.cs: /ul functionality * TODO: updated * gacutil.cs: help text added. 2003-11-15 Todd Berman * gacutil.cs: Added reference counting for installation and deletion. An assembly will have a RefCount of 1 if --force is used. * gacutil.cs: Changed ... + Path.DirSepChar + ... to Path.Combine Thanks to Ben Maurer. Turns out code marked as potentially not needed was not needed, now refcounting with /u assemblyname works as well. * gacutil.cs: Incorporated uac (User Assembly Cache), needs some machine.config security checking as well. 2003-11-14 Todd Berman * gacutil.cs: added proper removal of assemblies, now the version= syntax also works. * gacutil.exe: somehow got added, removing, duh. 2003-11-12 Todd Berman * Makefile: * TODO: * README: * ChangeLog: * gacutil.exe.sources: * gacutil.cs: Added