如何使用Visual Studio 2008部署.dll文件?

时间:2011-12-24 23:55:05

标签: visual-studio-2008 deployment dll bho regasm

我正在使用包含桌面应用程序和BHO插件的VS 2008创建安装程序 它是作为类库项目创建的。 手动,我可以使用此命令[regasm / codebase“myPlugin.dll”注册]注册myPlugin.dll,但我不知道如何在安装项目中实现这一点。有什么想法吗?

2 个答案:

答案 0 :(得分:2)

最简单,最安全的方法是创建您自己的安装程序类,该类接受要注册的DLL的名称,并使用RegistrationServices来安装或卸载您的DLL。

创建Installer时,它可以通过自定义操作的CustomActionData属性接受自定义操作中的参数。这些参数中的每一个都存储在Installer.Context.Parameters集合中。这意味着通过使用某些安装程序属性,您可以将完整的已安装路径传递给DLL,然后RegistrationServices可以使用该路径执行与Regasm相同的操作。

实施这个过程是一个多步骤:

第1步是创建安装程序类。因为这是可重用的代码,所以我建议创建一个单独的DLL项目来保存这个类。

using System;
using System.Text;
using System.ComponentModel;
using System.Configuration.Install;
using System.Collections;
using System.IO;
using System.Reflection;
using System.Runtime.InteropServices;

[RunInstaller(true)]
public partial class AssemblyRegistrationInstaller : Installer
{
    public AssemblyRegistrationInstaller()
    {
    }

    public override void Install(IDictionary stateSaver)
    {
        base.Install(stateSaver);

        RegisterAssembly(true);
    }

    public override void Rollback(IDictionary savedState)
    {
        base.Rollback(savedState);

        RegisterAssembly(false);
    }

    public override void Uninstall(IDictionary savedState)
    {
        base.Rollback(savedState);

        RegisterAssembly(false);
    }

    private void RegisterAssembly(bool fDoRegistration)
    {
        string sAssemblyFileName = base.Context.Parameters["AssemblyFileName"];

        if (string.IsNullOrEmpty(sAssemblyFileName))
        {
            throw new InstallException("AssemblyFileName must be specified");
        }

        if (!File.Exists(sAssemblyFileName))
        {
            if (fDoRegistration)
            {
                throw new InstallException(string.Format("AssemblyFileName {0} is missing", sAssemblyFileName));
            }
            else
            {
                // Just bail if we are uninstalling and the file doesn't exist
                return;
            }
        }

        var oServices = new RegistrationServices();
        var oAssembly = Assembly.LoadFrom(sAssemblyFileName);

        if (fDoRegistration)
        {
            oServices.RegisterAssembly(oAssembly, AssemblyRegistrationFlags.SetCodeBase);
        }
        else
        {
            try
            {
                oServices.UnregisterAssembly(oAssembly);
            }
            catch
            {
                // Just eat the exception so that uninstall succeeds even if there is an error
            }
        }
    }
}

步骤2是将新DLL添加到安装项目中。由于我们需要配置DLL的设置,因此不要添加项目本身;直接从项目的发布目录添加DLL。

步骤3是将新DLL添加为自定义操作。要执行此操作,请右键单击设置项目,然后选择View,然后选择Custom Actions

右键单击Custom Actions菜单,然后在弹出对话框中选择新的安装程序DLL。这将自动将DLL添加到所有4个部分。右键单击添加到Commit部分的部分并将其删除。

对于其他3个部分中的每个部分,请执行以下操作:

右键单击DLL条目,然后选择Properties Window

确保属性网格中的InstallerClass条目设置为true(应该是)。

将以下条目添加到CustomActionData属性,以将要注册的dll的名称传递给自定义安装程序类:

/AssemblyFileName="[TARGETDIR]\myplugin.dll"

答案 1 :(得分:1)

稍微好一点的解决方案是How to register a .NET CCW with regasm from a Visual Studio 2008 Setup project

您可以在其中添加安装程序类而不是dll