Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Pouliot <sebastien@ximian.com>2005-10-28 17:45:08 +0400
committerSebastien Pouliot <sebastien@ximian.com>2005-10-28 17:45:08 +0400
commit120b9ed232106ad5b3c7c83e8897622daf104256 (patch)
tree9d8b835c9aa9966ed77a3943951ad5f48b92f856 /mcs/class/System.Security/Assembly
parent181dbc345905a23eb7c2bbd46c8d2ff514f42866 (diff)
2005-10-28 Sebastien Pouliot <sebastien@ximian.com>
* AssemblyInfo.cs: Updated for 2.0 final. svn path=/trunk/mcs/; revision=52319
Diffstat (limited to 'mcs/class/System.Security/Assembly')
-rw-r--r--mcs/class/System.Security/Assembly/AssemblyInfo.cs10
-rw-r--r--mcs/class/System.Security/Assembly/ChangeLog4
2 files changed, 10 insertions, 4 deletions
diff --git a/mcs/class/System.Security/Assembly/AssemblyInfo.cs b/mcs/class/System.Security/Assembly/AssemblyInfo.cs
index c20e81887db..2f8aec63660 100644
--- a/mcs/class/System.Security/Assembly/AssemblyInfo.cs
+++ b/mcs/class/System.Security/Assembly/AssemblyInfo.cs
@@ -29,6 +29,7 @@
//
using System;
+using System.Diagnostics;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
@@ -52,11 +53,12 @@ using System.Security;
[assembly: AssemblyCopyright ("Copyright (C) 2002-2005 Various Authors")]
[assembly: AssemblyDefaultAlias ("System.Security.dll")]
[assembly: AssemblyDescription ("System.Security.dll")]
-[assembly: AssemblyFileVersion ("2.0.50215.44")]
+[assembly: AssemblyFileVersion (Consts.RuntimeVersion)]
[assembly: AssemblyInformationalVersion ("")]
[assembly: AssemblyProduct ("MONO CLI")]
[assembly: AssemblyTitle ("System.Security.dll")]
-[assembly: AllowPartiallyTrustedCallers ()]
-
-[module: CompilationRelaxations (0)]
+[assembly: AllowPartiallyTrustedCallers]
+[assembly: CompilationRelaxations (CompilationRelaxations.NoStringInterning)]
+[assembly: Debuggable (DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
+[assembly: RuntimeCompatibility (WrapNonExceptionThrows = true)]
#endif
diff --git a/mcs/class/System.Security/Assembly/ChangeLog b/mcs/class/System.Security/Assembly/ChangeLog
index 12635284971..a3976729d73 100644
--- a/mcs/class/System.Security/Assembly/ChangeLog
+++ b/mcs/class/System.Security/Assembly/ChangeLog
@@ -1,3 +1,7 @@
+2005-10-28 Sebastien Pouliot <sebastien@ximian.com>
+
+ * AssemblyInfo.cs: Updated for 2.0 final.
+
2005-04-27 Sebastien Pouliot <sebastien@ximian.com>
* AssemblyInfo.cs: Updated for 2.0 beta 2.