我有一个Windows窗体应用程序,并使用Visual Studio 2010中的向导创建了一个Windows Installer。 安装应用程序后,我想从我编写的另一个程序集中运行一个操作。我试图运行的代码在一个名为RegistrationController的程序集中,并由Windows窗体应用程序引用,以便我想运行:
var controller = new RegistrationController();
controller.Register("Adrian");
应用程序成功安装后。 我似乎无法找到如何添加动作。
提前致谢, 阿德里安