Skip to content

Commit

Permalink
2004-05-03 Lluis Sanchez <lluis@ximian.com>
Browse files Browse the repository at this point in the history
	* Assembly.cs: Don't remove version and culture information from
	the name, since it will be used by load_with_partial_name.


svn path=/trunk/mcs/; revision=43934
  • Loading branch information
slluis committed May 3, 2005
1 parent dc34455 commit 307a1b1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 0 additions & 4 deletions mcs/class/corlib/System.Reflection/Assembly.cs
Original file line number Diff line number Diff line change
Expand Up @@ -548,10 +548,6 @@ static Assembly LoadWithPartialName (string partialName, Evidence securityEviden
if (partialName == null)
throw new NullReferenceException ();

int ci = partialName.IndexOf (',');
if (ci > 0)
partialName = partialName.Substring (0, ci);

return load_with_partial_name (partialName, securityEvidence);
}

Expand Down
7 changes: 6 additions & 1 deletion mcs/class/corlib/System.Reflection/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2004-05-03 Lluis Sanchez <lluis@ximian.com>

* Assembly.cs: Don't remove version and culture information from
the name, since it will be used by load_with_partial_name.

2005-04-14 Sebastien Pouliot <sebastien@ximian.com>

* Assembly.cs: Added some CAS security to avoid returning restricted
Expand Down Expand Up @@ -799,7 +804,7 @@ Sat Jul 10 15:48:34 CEST 2004 Paolo Molaro <lupus@ximian.com>
abstract; use an interncall in MonoMethod and a custom
implementation in MethodBuilder.

2003-10-17 Pedro Mart�nez Juli� <yoros@wanadoo.es>
2003-10-17 Pedro Martínez Juliá <yoros@wanadoo.es>

* MonoEvent.cs: implement ToString method as in MS.NET.

Expand Down

0 comments on commit 307a1b1

Please sign in to comment.