From 8056390e00ca6576323d6c41a4dc725bcba9b527 Mon Sep 17 00:00:00 2001 From: Owen Fraser-Green Date: Sat, 3 Apr 2004 22:00:40 +0000 Subject: Made proxy DLL names unique --- mono/Service.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mono/Service.cs') diff --git a/mono/Service.cs b/mono/Service.cs index c34ba3dc..5dea3113 100644 --- a/mono/Service.cs +++ b/mono/Service.cs @@ -167,7 +167,7 @@ namespace DBus { get { if (this.module == null) { - this.module = ProxyAssembly.DefineDynamicModule(Name, "proxy.dll", true); + this.module = ProxyAssembly.DefineDynamicModule(Name, Name + ".proxy.dll", true); } return this.module; -- cgit