* Aes.cs: avoid using an hardcoded assembly version for System.Core. svn path=/trunk/mcs/; revision=146033
@@ -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)
@@ -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