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>2004-06-11 10:36:21 +0400
committerGert Driesen <drieseng@users.sourceforge.net>2004-06-11 10:36:21 +0400
commit4f5a23f73b5513469605acf080a0655ac7514c22 (patch)
tree2bdfca02205a31e8a58a2606fb906edaaf9218ef /mcs/class/System.Configuration.Install
parent9badc5a4f9f02d28374a1cf8071eea6ec560d930 (diff)
* Installer.cs: use Type instead of string argument for
Designer attribute svn path=/trunk/mcs/; revision=29270
Diffstat (limited to 'mcs/class/System.Configuration.Install')
-rw-r--r--mcs/class/System.Configuration.Install/System.Configuration.Install/ChangeLog5
-rw-r--r--mcs/class/System.Configuration.Install/System.Configuration.Install/Installer.cs3
2 files changed, 7 insertions, 1 deletions
diff --git a/mcs/class/System.Configuration.Install/System.Configuration.Install/ChangeLog b/mcs/class/System.Configuration.Install/System.Configuration.Install/ChangeLog
index c5f021e4aea..fb392d37e21 100644
--- a/mcs/class/System.Configuration.Install/System.Configuration.Install/ChangeLog
+++ b/mcs/class/System.Configuration.Install/System.Configuration.Install/ChangeLog
@@ -1,5 +1,10 @@
2004-06-11 Gert Driesen <drieseng@users.sourceforge.net>
+ * Installer.cs: use Type instead of string argument for
+ Designer attribute
+
+2004-06-11 Gert Driesen <drieseng@users.sourceforge.net>
+
* AssemblyInstaller.cs: stubbed
* ManagedInstallerClass.cs: stubbed
* TransactedInstaller.cs: stubbed
diff --git a/mcs/class/System.Configuration.Install/System.Configuration.Install/Installer.cs b/mcs/class/System.Configuration.Install/System.Configuration.Install/Installer.cs
index 3455d4f1489..9b679a6a7ea 100644
--- a/mcs/class/System.Configuration.Install/System.Configuration.Install/Installer.cs
+++ b/mcs/class/System.Configuration.Install/System.Configuration.Install/Installer.cs
@@ -8,13 +8,14 @@
using System.Collections;
using System.ComponentModel;
+using System.ComponentModel.Design;
namespace System.Configuration.Install
{
[DefaultEvent("AfterInstall")]
#if (!NET_2_0)
// .NET 2.0 (Community Preview) no longer has this attribute
- [Designer("Microsoft.VisualStudio.Configuration.InstallerDesigner, " + Consts.AssemblyMicrosoft_VisualStudio, "System.ComponentModel.Design.IRootDesigner," + Consts.AssemblySystem)]
+ [Designer("Microsoft.VisualStudio.Configuration.InstallerDesigner, " + Consts.AssemblyMicrosoft_VisualStudio, typeof(IRootDesigner))]
#endif
public class Installer : Component
{