Skip to content

Commit

Permalink
2005-09-08 Atsushi Enomoto <atsushi@ximian.com>
Browse files Browse the repository at this point in the history
	* soapsuds.cs: passing just file name would be better than full
	  assembly name.


svn path=/trunk/mcs/; revision=49713
  • Loading branch information
atsushieno committed Sep 8, 2005
1 parent d0ced61 commit 18281a7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions mcs/tools/soapsuds/ChangeLog
@@ -1,3 +1,8 @@
2005-09-08 Atsushi Enomoto <atsushi@ximian.com>

* soapsuds.cs: passing just file name would be better than full
assembly name.

2004-03-25 Lluis Sanchez Gual <lluis@ximian.com>

* soapsuds.cs: Execute the tool from a new domain that has the current
Expand Down
2 changes: 1 addition & 1 deletion mcs/tools/soapsuds/soapsuds.cs
Expand Up @@ -77,7 +77,7 @@ public void Main ()

if (inputAssembly != null)
{
assembly = Assembly.Load (inputAssembly);
assembly = Assembly.LoadFile (inputAssembly);
foreach (Type t in assembly.GetTypes ())
types.Add (new ServiceType (t, serviceEndpoint));
}
Expand Down

0 comments on commit 18281a7

Please sign in to comment.