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>2003-07-17 15:27:24 +0400
committerAndreas N <andreas@mono-cvs.ximian.com>2003-07-17 15:27:24 +0400
commit44c8d493b288e8d546fa57fb9f53cd82e7f01487 (patch)
treed2cb3b5662fca1c1f3d4d4bb245c2f60c15fc418 /mcs/class/System/System.Diagnostics/CounterCreationData.cs
parent832838190c4029e4d286faacdbebfe18bea87a1c (diff)
2003-07-17 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* CounterCreationData.cs: * EventLog.cs: * EventLogEntry.cs: * PerformanceCounter.cs: * Process.cs: * ProcessModule.cs: * ProcessStartInfo.cs: * ProcessThread.cs: Reworked attributes based on the new Consts scheme svn path=/trunk/mcs/; revision=16339
Diffstat (limited to 'mcs/class/System/System.Diagnostics/CounterCreationData.cs')
-rw-r--r--mcs/class/System/System.Diagnostics/CounterCreationData.cs14
1 files changed, 2 insertions, 12 deletions
diff --git a/mcs/class/System/System.Diagnostics/CounterCreationData.cs b/mcs/class/System/System.Diagnostics/CounterCreationData.cs
index e132531f172..2eecbc85878 100644
--- a/mcs/class/System/System.Diagnostics/CounterCreationData.cs
+++ b/mcs/class/System/System.Diagnostics/CounterCreationData.cs
@@ -15,12 +15,7 @@ using System.ComponentModel;
namespace System.Diagnostics {
[Serializable]
- #if (NET_1_0)
- [TypeConverter ("System.Diagnostics.Design.CounterCreationDataConverter, System.Design, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
- #endif
- #if (NET_1_1)
- [TypeConverter ("System.Diagnostics.Design.CounterCreationDataConverter, System.Design, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
- #endif
+ [TypeConverter ("System.Diagnostics.Design.CounterCreationDataConverter, " + Consts.AssemblySystem_Design)]
public class CounterCreationData
{
@@ -50,12 +45,7 @@ namespace System.Diagnostics {
[DefaultValue ("")]
[MonitoringDescription ("Name of this counter.")]
- #if (NET_1_0)
- [TypeConverter ("System.Diagnostics.Design.StringValueConverter, System.Design, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
- #endif
- #if (NET_1_1)
- [TypeConverter ("System.Diagnostics.Design.StringValueConverter, System.Design, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
- #endif
+ [TypeConverter ("System.Diagnostics.Design.StringValueConverter, " + Consts.AssemblySystem_Design)]
public string CounterName
{
get {return name;}