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:
authorAndreas N <andreas@mono-cvs.ximian.com>2008-04-25 16:56:43 +0400
committerAndreas N <andreas@mono-cvs.ximian.com>2008-04-25 16:56:43 +0400
commitefe027f165e60876a65b38a8b5031772dda72d59 (patch)
tree3089f45a6fb118a1c2d798b4212064c1a5ddf38c /mcs/class/System.Security
parent8b7d7a847b9a56df31196fff9458f359e998a977 (diff)
2008-04-25 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* AssemblyInfo.cs: Change to consts svn path=/trunk/mcs/; revision=101802
Diffstat (limited to 'mcs/class/System.Security')
-rw-r--r--mcs/class/System.Security/Assembly/AssemblyInfo.cs31
-rw-r--r--mcs/class/System.Security/Assembly/ChangeLog4
2 files changed, 22 insertions, 13 deletions
diff --git a/mcs/class/System.Security/Assembly/AssemblyInfo.cs b/mcs/class/System.Security/Assembly/AssemblyInfo.cs
index 41d2200e038..e38dc6e14a5 100644
--- a/mcs/class/System.Security/Assembly/AssemblyInfo.cs
+++ b/mcs/class/System.Security/Assembly/AssemblyInfo.cs
@@ -35,8 +35,9 @@ using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Security;
+using System.Security.Permissions;
-// General Information about the system assembly
+// General Information about the System.Security assembly
[assembly: AssemblyVersion (Consts.FxVersion)]
[assembly: SatelliteContractVersion (Consts.FxVersion)]
@@ -49,16 +50,20 @@ using System.Security;
[assembly: AssemblyKeyFile ("../msfinal.pub")]
#if NET_2_0
-[assembly: AssemblyCompany ("MONO development team")]
-[assembly: AssemblyCopyright ("Copyright (C) 2002-2005 Various Authors")]
-[assembly: AssemblyDefaultAlias ("System.Security.dll")]
-[assembly: AssemblyDescription ("System.Security.dll")]
-[assembly: AssemblyFileVersion (Consts.FxFileVersion)]
-[assembly: AssemblyInformationalVersion ("")]
-[assembly: AssemblyProduct ("MONO CLI")]
-[assembly: AssemblyTitle ("System.Security.dll")]
-[assembly: AllowPartiallyTrustedCallers]
-[assembly: CompilationRelaxations (CompilationRelaxations.NoStringInterning)]
-[assembly: Debuggable (DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
-[assembly: RuntimeCompatibility (WrapNonExceptionThrows = true)]
+ [assembly: AssemblyDefaultAlias ("System.Security.dll")]
+ [assembly: AssemblyDescription ("System.Security.dll")]
+ [assembly: AssemblyTitle ("System.Security.dll")]
+
+ [assembly: AssemblyFileVersion (Consts.FxFileVersion)]
+ [assembly: AssemblyInformationalVersion (Consts.FxFileVersion)]
+
+ [assembly: AssemblyCompany (Consts.MonoCompany)]
+ [assembly: AssemblyProduct (Consts.MonoProduct)]
+ [assembly: AssemblyCopyright (Consts.MonoCopyright)]
+
+ [assembly: AllowPartiallyTrustedCallers]
+ [assembly: CompilationRelaxations (CompilationRelaxations.NoStringInterning)]
+ [assembly: Debuggable (DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
+ [assembly: RuntimeCompatibility (WrapNonExceptionThrows = true)]
+ [assembly: SecurityPermission (SecurityAction.RequestMinimum, SkipVerification = true)]
#endif
diff --git a/mcs/class/System.Security/Assembly/ChangeLog b/mcs/class/System.Security/Assembly/ChangeLog
index 5f03d24d1bf..63942dd3598 100644
--- a/mcs/class/System.Security/Assembly/ChangeLog
+++ b/mcs/class/System.Security/Assembly/ChangeLog
@@ -1,3 +1,7 @@
+2008-04-25 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+ * AssemblyInfo.cs: Change to consts
+
2005-11-05 Kornél Pál <kornelpal@hotmail.com>
* AssemblyInfo.cs: Use Consts.FxFileVersion as AssemblyFileVersion.