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:
authorMarek Safar <marek.safar@gmail.com>2012-06-07 18:17:52 +0400
committerMarek Safar <marek.safar@gmail.com>2012-06-07 18:17:52 +0400
commitd9e4371f9e07befd8ee00c7a41b329bc1ffec000 (patch)
treebd8f28766404480e2b06894e70826ac7f039fa63 /mcs/class/System.Management
parentd24f2bf83f7e4a1fcc4d32432b7bfd105a6bbd38 (diff)
Clean up assembly attributes
Diffstat (limited to 'mcs/class/System.Management')
-rw-r--r--mcs/class/System.Management/Assembly/AssemblyInfo.cs19
1 files changed, 6 insertions, 13 deletions
diff --git a/mcs/class/System.Management/Assembly/AssemblyInfo.cs b/mcs/class/System.Management/Assembly/AssemblyInfo.cs
index 7b3a6b0a9d4..7f5675a5b1e 100644
--- a/mcs/class/System.Management/Assembly/AssemblyInfo.cs
+++ b/mcs/class/System.Management/Assembly/AssemblyInfo.cs
@@ -37,23 +37,18 @@ using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about the System.Management assembly
-// This one is very different for version < 2.0
-#if NET_2_0
- [assembly: AssemblyTitle ("System.Management.dll")]
- [assembly: AssemblyDescription ("System.Management.dll")]
- [assembly: AssemblyDefaultAlias ("System.Management.dll")]
-#endif
+[assembly: AssemblyTitle ("System.Management.dll")]
+[assembly: AssemblyDescription ("System.Management.dll")]
+[assembly: AssemblyDefaultAlias ("System.Management.dll")]
[assembly: AssemblyCompany (Consts.MonoCompany)]
[assembly: AssemblyProduct (Consts.MonoProduct)]
[assembly: AssemblyCopyright (Consts.MonoCopyright)]
[assembly: AssemblyVersion (Consts.FxVersion)]
-#if NET_2_0
- [assembly: SatelliteContractVersion (Consts.FxVersion)]
- [assembly: AssemblyInformationalVersion (Consts.FxFileVersion)]
+[assembly: SatelliteContractVersion (Consts.FxVersion)]
+[assembly: AssemblyInformationalVersion (Consts.FxFileVersion)]
- [assembly: NeutralResourcesLanguage ("en-US")]
-#endif
+[assembly: NeutralResourcesLanguage ("en-US")]
[assembly: ComVisible (false)]
[assembly: CLSCompliant (true)]
@@ -62,5 +57,3 @@ using System.Runtime.InteropServices;
[assembly: AssemblyFileVersion (Consts.FxFileVersion)]
[assembly: CompilationRelaxations (CompilationRelaxations.NoStringInterning)]
-[assembly: Debuggable (DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
-[assembly: RuntimeCompatibility (WrapNonExceptionThrows = true)]