在网站的 Web 设置中使用安装类时出现问题
我正在尝试为我的网站创建一个网络设置,并且我想使用安装程序类来执行一些自定义操作。我使用的是 VS 2010,网站和安装程序是 .NET 3.5。
我在自定义操作
下的Install
部分添加了对安装程序类项目输出的引用:
我还在 /targetdir="[TARGETDIR]/"
上设置了此操作的 >CustomActionData。
InstallScript
项目是一个标准类库 (dll)。
有一个继承自 Installer
类的公共类。它覆盖了 Install 方法,正如我在几个在线示例中看到的那样:
using System.Collections;
using System.Windows.Forms;
namespace InstallScript
{
public class MyWebInstaller : System.Configuration.Install.Installer
{
public override void Install(IDictionary stateSaver)
{
base.Install(stateSaver);
var targetDir = Context.Parameters["targetdir"];
if(targetDir==null) targetDir = "No TARGETDIR!";
MessageBox.Show("TARGETDIR:\t" + targetDir);
}
}
}
我认为在安装过程中的某个时间应该在此处显示一个消息框,但似乎从未调用过它。也没有显示错误。安装程序只是运行,就好像从未调用过该代码一样。
任何人都知道出了什么问题吗?
I am trying to create a web setup for my web site, and I want to use an installer class to do some custom stuff. I am using VS 2010, and the web site and installer is .NET 3.5.
I have added reference to the installer class project output in the Install
section under Custom Actions
:
I have also set /targetdir="[TARGETDIR]/"
on the CustomActionData
for this action.
The InstallScript
project is a standard class library (dll).
There is a public class that inherits from Installer
class. It overrides the Install method as I have seen been done in several online examples:
using System.Collections;
using System.Windows.Forms;
namespace InstallScript
{
public class MyWebInstaller : System.Configuration.Install.Installer
{
public override void Install(IDictionary stateSaver)
{
base.Install(stateSaver);
var targetDir = Context.Parameters["targetdir"];
if(targetDir==null) targetDir = "No TARGETDIR!";
MessageBox.Show("TARGETDIR:\t" + targetDir);
}
}
}
I would think there should be shown a message box here som time during the install, but it seems like it is never called. No error is shown either. The setup just runs through as if this code was never called.
Anyone have idea of what is wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我发现缺少了什么。
您需要使用类属性
RunInstaller(true)
指定类,以便安装程序拾取并实际运行代码。所以该类需要这样声明:
OK, I found out what was missing.
You need to specify the class with the class attribute
RunInstaller(true)
for the setup to pick up and actually run the code.So the class needs to be declared like this: