* TreeView.cs: Allow more explicit setting of top node
[mono-project.git] / mcs / tools / gacutil / ChangeLog
blob0b789694b072dbcbe0d5f058e7cec4fe56bf26c1
1 2006-07-24  Alp Toker  <alp@atoker.com>
3         * driver.cs: Minor typo fixes in comments and informational output.
5 2006-04-12  Miguel de Icaza  <miguel@novell.com>
7         * driver.cs: Delete the target file before copying over, this will
8         ensure that if some running application is using the assembly or
9         any of its datafiles, it does not get corrupted by an install. 
11 2005-10-26  Geoff Norton  <gnorton@customerdna.com>
13         * driver.cs: Do not match every item with a blank string.  Fixes
14         #76563
16 2005-09-10  Miguel de Icaza  <miguel@novell.com>
18         * driver.cs: Only symlink if the file that we are symlking to
19         exists.   This fixes all the stale symlinks on $prefix/mono/1.0/
20         to config files that do not exist.
22 2005-09-05  Miguel de Icaza  <miguel@novell.com>
24         * driver.cs (Uninstall): Add workaround, Directory.GetFiles does
25         not return symlinks inside the directories which makes this break
26         on uninstall (make distcheck on monodoc exposed this).
28 2005-07-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
30         * driver.cs (Install): Copy the linked resource files
31         for the assembly when installing it.
32         
33 2005-05-20  Ben Maurer  <bmaurer@ximian.com>
35         * driver.cs (Main): If the switch argument isn't actually a
36         switch, treat it like a file. Fixes 73405.
38 2005-03-14  Raja R Harinath  <rharinath@novell.com>
40         * Makefile (PROGRAM): Make profile-specific during
41         net_1_1_bootstrap.
43 2005-01-18  Raja R Harinath  <rharinath@novell.com>
45         * driver.cs (Install): Restore fix from 2004-12-08.
47 2005-01-13  Mike Kestner  <mkestner@novell.com>
49         * driver.cs: use relative symlinks for the package dir.
51 2005-01-11  Jackson Harper  <jackson@ximian.com>
53         * driver.cs: Make sure the actual assembly file exists when
54         listing assemblies. Some packages don't remove the entire
55         directory so we get existing directories without assemblies in
56         them.
58 2004-12-08  Raja R Harinath  <rharinath@novell.com>
60         * driver.cs (Symlink): Pass additional parameter: the name of the
61         dll being installed.  If needed copy that file, not 'oldpath',
62         since 'oldpath' need not be a valid file (esp. on DESTDIR builds).
63         (Install): Update.
65 2004-07-28  Jackson Harper  <jackson@ximian.com>
67         * driver.cs: Check for and install .mdb (debuger symbol files).
68         
69 2004-07-15  Jackson Harper  <jackson@ximian.com>
71         * driver.cs: MONO_GAC_PREFIX not MONO_GAC_PATH.
72         
73 2004-06-15  Jackson Harper  <jackson@ximian.com>
75         * driver.cs: Ensure that the -gacdir ends with /lib if it does not
76         appened one. The reason for this is that the runtime expects it,
77         and existing makefiles user -gacdir $(destdir)/$(libdir) so auto
78         appending it without checking would break many things.
79         
80 2004-06-10  Jackson Harper  <jackson@ximian.com>
82         * driver.cs: We don't need to check if the canidate is a file in
83         IsSwitch anymore as some other commandline handling will take care
84         of this case.
85         
86 2004-06-10  Jackson Harper  <jackson@ximian.com>
88         * driver.cs: Don't append gacdir to /root. This breaks
89         everything. Will add another option for doing this if its needed.
90         
91 2004-06-09  Jackson Harper  <jackson@ximian.com>
93         * gacutil.exe.sources: Make the new gacutil the default and return
94         seats to their upright position.
95         
96 2004-06-08  Jackson Harper  <jackson@ximian.com>
98         * driver.cs: When checking refs don't bother using an AppDomain
99         and load the assembly using the code base so we get the right
100         one. Print out the name of the non strong named assembly if one is
101         referenced.
102         
103 2004-06-08  Jackson Harper  <jackson@ximian.com>
105         * driver.cs Add install from list and uninstall from list
106         commands. Allow options to come before commands. Add the /silent
107         option so we can shut the tool up. And use returns instead of
108         Environment.Exit where appropriate.
109         
110 2004-06-07  Jackson Harper  <jackson@ximian.com>
112         * driver.cs: Add -check_refs option to check if all referenced
113         assemblies are stron named. Fix some pathing issues when create
114         links for packaged. Update todds (C) info.
116 2004-06-05  Miguel de Icaza  <miguel@ximian.com>
118         * gacutil.cs: GetAssemblyInfo might return null now, check for
119         that.
121         Add try/catch to GetAssemblyInfo.
122         
123 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
125         * gacutil.cs: when -il, don't stop if one assembly fails to install.
127 2004-05-21  Jackson Harper  <jackson@ximian.com>
129         * driver.cs: More fiddling with paths.
130         
131 2004-05-21  Jackson Harper  <jackson@ximian.com>
133         * driver.cs: Allow the root and gacdir to both be specified. In
134         this case they are combined.
135         
136 2004-05-21  Jackson Harper  <jackson@ximian.com>
138         * driver.cs: Do not allow gacdir and root to be specified at the
139         same time. Cleanup help. Add help for options.
140         
141 2004-05-21  Jackson Harper  <jackson@ximian.com>
143         * driver.cs: Add uninstall-specific option. This takes an assembly
144         file and uninstalls a matching named one from the GAC. Fix search
145         string shenanigans when uninstalling.
147 2004-05-21  Jackson Harper  <jackson@ximian.com>
149         * driver.cs: This is the new gacutil. Right now it wont get built,
150         after I do a little more testing I will make it the built/installed
151         gacutil.
152         
153 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
155         * gacutil.cs: force = true requested by Miguel.
157 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
159         * gacutil.cs:
160         (InstallAssembly): use Array.IndexOf to search for "/f", "-f" or
161         "--force" instead of expecting it in a fixed place.
163 2004-05-14  Todd Berman  <tberman@sevenl.net>
165         * gacutil.cs: Remove old file/symlink, thanks urs. 
167 2004-05-14  Jackson Harper  <jackson@ximian.com>
169         * gacutil.cs: Always install the package files.
170         
171 2004-05-04  Jackson Harper  <jackson@ximian.com>
173         * gacutil.cs: We need to overwrite existing libraries if they
174         already exist in the package directory on windows. Also made the
175         code somewhat readable with 80 cols.
176         
177 2004-05-03  Todd Berman  <tberman@sevenl.net>
179         * gacutil.cs: potential fix for miguel.
181 2004-05-03  Todd Berman  <tberman@sevenl.net>
183         * gacutil.cs: support /package in /u now as well.
185 2004-05-03  Todd Berman  <tberman@sevenl.net>
187         * gacutil.cs: Add /package support. Seriously going to rewrite cmdline
188         handling *asap* cause this is just wrong.
190 2004-05-01  Todd Berman  <tberman@sevenl.net>
192         * gacutil.cs: copy the config file, not the assembly again.
194 2004-05-01  Todd Berman  <tberman@sevenl.net>
196         * gacutil.cs: ack, miguel is right, cmdline handling needs some love.
198 2004-04-30  Todd Berman  <tberman@sevenl.net>
200         * gacutil.cs: cleanup help.
202 2004-04-30  Todd Berman  <tberman@sevenl.net>
204         * gacutil.cs: remove /prefix, now --root and /root
206 2004-04-30  Todd Berman  <tberman@sevenl.net>
208         * gacutil.cs: Change the way of handling the /prefix stuff.
209         Now all gacbased operations will work with /prefix or --root. This
210         *MUST* be at the end of the commandline for it to work.
211         Also note, that in a Makefile changing /i to /u will not work, as the
212         gac uninstalls based on AssemblyName.Name, so forexample:
214         gacutil /i some/path/blah/System.dll --root /usr/lib/somefakegac
216         will install and
218         gacutil /u System --root /usr/lib/somefakegac
220         will uninstall.
222 2004-04-30  Miguel de Icaza  <miguel@ximian.com>
224         * gacutil.cs: Rename /prefix with /libdir,  Append mono/gac to
225         that. 
227 2004-04-30  Jackson Harper  <jackson@ximian.com>
229         * gacutil.cs: Install config files.
230         
231 2004-04-30  Jackson Harper  <jackson@ximian.com>
233         * gacutil.cs: Use invariant culture for ToLower. Patch from Urs Muff.
234         
235 2004-04-30  Todd Berman  <tberman@sevenl.net>
237         * gacutil.cs: Add a missing .Trim ()
239 2004-04-29  Jackson Harper  <jackson@ximian.com>
241         * gacutil.cs: Allow a prefix to be specified. This is only for
242         packaging if you install to some wack prefix it wont work.
243         
244 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
246         * gacutil.cs: return non-zero when something fails.
248 2004-04-29  Todd Berman  <tberman@sevenl.net>
250         * gacutil.cs: Add assembly name to installation message.
252 2004-04-27  Jackson Harper  <jackson@ximian.com>
254         * gacutil.cs: Temporarily disable strong name verification when
255         installing.
256         
257 2004-04-27  Jackson Harper  <jackson@ximian.com>
259         * gacutil.cs: Remove hack for removing strong name headers. The
260         strong name type now handles these properly and this screwed up
261         the ecma key.
262         
263 2004-03-25  Jackson Harper  <jackson@ximian.com>
265         * gacutil.cs: Add culture to assemblies version string.
266         
267 2003-12-10  Todd Berman  <tberman@gentoo.org>
269         * gacutil.cs: Properly detect and fail gracefully on ms.net runtime
270         * README:
271         * TODO: Updated
273 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
275         * gacutil.cs: Fix binding flags.
276         
277         * gacutil.cs: Applied patch from Todd Berman (tbermann@gentoo.org).
278         Use Environment.GacPath () instead of hardcoding the GAC path.
280 2003-11-16  Sebastien Pouliot  <spouliot@videotron.ca>
282         * gacutil.cs: Added strongname validation
283         * Makefile: Added a reference to Mono.Security assembly.
285 2003-11-16  Todd Berman  <tberman@gentoo.org>
287         * gacutil.cs: /il functionality
288         * gacutil.cs: /ul functionality
289         * TODO: updated
290         * gacutil.cs: help text added.
292 2003-11-15  Todd Berman  <tberman@gentoo.org>
293         
294         * gacutil.cs: Added reference counting for installation and deletion.
295         An assembly will have a RefCount of 1 if --force is used.
296         * gacutil.cs: Changed ... + Path.DirSepChar + ... to Path.Combine
297         Thanks to Ben Maurer. Turns out code marked as potentially not
298         needed was not needed, now refcounting with /u assemblyname works
299         as well.
300         * gacutil.cs: Incorporated uac (User Assembly Cache), needs some
301         machine.config security checking as well.
303 2003-11-14  Todd Berman  <tberman@gentoo.org>
305         * gacutil.cs: added proper removal of assemblies, now the version=
306         syntax also works.
307         * gacutil.exe: somehow got added, removing, duh.
309 2003-11-12  Todd Berman  <tberman@gentoo.org>
311         * Makefile:
312         * TODO:
313         * README:
314         * ChangeLog: 
315         * gacutil.exe.sources:
316         * gacutil.cs: Added