Re: [Mono-list] regsvr32

2003-03-14 Thread Paolo Molaro
On 03/13/03 Daniel Grigoras wrote: > please, there is something similar with > "regsvr32.exe MyProfiler.dll"(for Windows ),but in I have no idea what regsvr32.exe does. > Linux ? > How may I register a profiler (DLL) under Linux? > In CVS , there are the equivalents of ICorProfilerInfo > and IC

Re: [Mono-list] regsvr32

2003-03-14 Thread Richard Torkar
On Fri, 2003-03-14 at 18:26, Paolo Molaro wrote: > On 03/13/03 Daniel Grigoras wrote: > > please, there is something similar with > > "regsvr32.exe MyProfiler.dll"(for Windows ),but in > > I have no idea what regsvr32.exe does. It's a tool you can use in Windows to register a global(?) dll/ocx e

Re: [Mono-list] regsvr32

2003-03-14 Thread Andy Satori
The equivalent to regsvr32 in .NET is RegSvcs. However, that's for COM+ assemblies. In the Mono world, it would be useless to register a COM dll. You would want the equivalent of the GacUtil to load an assembly in the Global Assembly Cache. Andy On 3/14/03 12:26 PM, "Paolo Molaro" <[EMAIL PR

Re: [Mono-list] regsvr32

2003-03-14 Thread Bob Smith
At some point arn't we going to have some equivilent for Bonobo? On Fri, 14 Mar 2003, Andy Satori wrote: > The equivalent to regsvr32 in .NET is RegSvcs. However, that's for COM+ > assemblies. > > In the Mono world, it would be useless to register a COM dll. You would > want the equivalent of t

Re: [Mono-list] regsvr32

2003-03-14 Thread Andy Satori
Bonobo and COM+ are about as far apart in implementation as CORBA and COM are. That's not to say that System.EnterpriseServices couldn't be implemented to support Bonobo on Gnome boxes, but they would be incapable of say calling a remote object on a Windows COM+ based server. You could probably m

Re: [Mono-list] regsvr32

2003-03-14 Thread Richard Torkar
On Fri, 2003-03-14 at 19:51, Daniel Grigoras wrote: > > I think it will disappear one day since we have the > > GAC and a different > > way to do this? > > Could you tell me what is the different method to do > this.?(link, hint ..) > Well in windows they now how the concept of a GAC - well th

RE: [Mono-list] regsvr32

2003-03-15 Thread Jonel Rienton
regsvr32.exe registers(1) an ActiveX dll(COM) in the registry -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Richard Torkar Sent: Friday, March 14, 2003 12:30 PM To: [EMAIL PROTECTED] Subject: Re: [Mono-list] regsvr32 On Fri, 2003-03-14 at 18:26, Paolo

Re: [Mono-list] regsvr32

2003-03-17 Thread Paolo Molaro
On 03/14/03 Andy Satori wrote: > The equivalent to regsvr32 in .NET is RegSvcs. However, that's for COM+ > assemblies. > > In the Mono world, it would be useless to register a COM dll. You would > want the equivalent of the GacUtil to load an assembly in the Global > Assembly Cache. Ok. *) In