Browse Source

2009-11-12 Jb Evain <[email protected]>

	* Aes.cs: avoid using an hardcoded assembly version for System.Core.


svn path=/trunk/mcs/; revision=146033
Jb Evain 16 years ago
parent
commit
40e5d7ea8a

+ 1 - 1
mcs/class/System.Core/System.Security.Cryptography/Aes.cs

@@ -42,7 +42,7 @@ namespace System.Security.Cryptography {
 
 		public static new Aes Create () 
 		{
-			return Create ("System.Security.Cryptography.AesManaged, System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");
+			return Create ("System.Security.Cryptography.AesManaged, " + Consts.AssemblySystem_Core);
 		}
 
 		public static new Aes Create (string algName) 

+ 4 - 0
mcs/class/System.Core/System.Security.Cryptography/ChangeLog

@@ -1,3 +1,7 @@
+2009-11-12  Jb Evain  <[email protected]>
+
+	* Aes.cs: avoid using an hardcoded assembly version for System.Core.
+
 2009-07-20  Sebastien Pouliot  <[email protected]>
 
 	* Aes.cs: Use the fully qualified name since this is not a type known