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:
authorGert Driesen <drieseng@users.sourceforge.net>2005-08-09 12:44:10 +0400
committerGert Driesen <drieseng@users.sourceforge.net>2005-08-09 12:44:10 +0400
commit39421f4b7c452ebb0844a13bd8fa179fa5ec063f (patch)
tree7818c73d0586e057d0ce41ed4aca8552a228f69f /mcs/class/System/System.Diagnostics/PerformanceCounter.cs
parent1aa808bcb0e8bf69e4350db55543786e8c85dfec (diff)
* EventLog.cs: Fixed Designer attribute to match MS.NET.
* ICollectData.cs: Added marshalling attribute to match MS.NET. * PerformanceCounter.cs: Fixed Designer attribute to match MS.NET. * Process.cs: Fixed Designer attribute to match MS.NET, modified * ProcessModule.cs: Fixed Designer attribute to match MS.NET. * ProcessThread.cs: Fixed Designer attribute to match MS.NET. DesignerSerializationVisibility on StartInfo to match MS.NET, changed Category attribute on Exited event to match MS.NET. svn path=/trunk/mcs/; revision=48151
Diffstat (limited to 'mcs/class/System/System.Diagnostics/PerformanceCounter.cs')
-rw-r--r--mcs/class/System/System.Diagnostics/PerformanceCounter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System/System.Diagnostics/PerformanceCounter.cs b/mcs/class/System/System.Diagnostics/PerformanceCounter.cs
index cda6f61a873..6f62763b0c7 100644
--- a/mcs/class/System/System.Diagnostics/PerformanceCounter.cs
+++ b/mcs/class/System/System.Diagnostics/PerformanceCounter.cs
@@ -38,7 +38,7 @@ using System.Diagnostics;
namespace System.Diagnostics {
// must be safe for multithreaded operations
- [Designer ("Microsoft.VisualStudio.Install.PerformanceCounterDesigner, Microsoft.VisualStudio, " + Consts.AssemblyMicrosoft_VisualStudio, typeof (IDesigner))]
+ [Designer ("Microsoft.VisualStudio.Install.PerformanceCounterDesigner, " + Consts.AssemblyMicrosoft_VisualStudio)]
[InstallerType (typeof (PerformanceCounterInstaller))]
public sealed class PerformanceCounter : Component, ISupportInitialize
{