如何在 C# 中获取安装项目的自定义操作数据?

How can I get custom action data of a setup project in C#?

我为我的服务创建了一个 windows 服务和一个安装项目。 在我的 windows 服务中,我可以获得我的客户行为数据:

Context.Parameters["dbname"]

但我想在我的服务中访问我的客户行为数据的价值,以便在我的项目中使用它。

有人知道如何在 C# 中实现吗?

更新

在我的 ProjectInstaller 中:

public ProjectInstaller()
{
    InitializeComponent();
}

public override void Install(IDictionary stateSaver)
{
    base.Install(stateSaver);
    string dbName = Context.Parameters["dbname"];
    AppHelper.Save(dbName+" "+ Context.Parameters["targetdir"].ToString());

    string xml = Context.Parameters["targetdir"].ToString() + "App.config";

    XmlDocument document = new XmlDocument();
    document.Load(xml);

    XPathNavigator navigator = document.CreateNavigator();
    XmlNamespaceManager ns = new XmlNamespaceManager(navigator.NameTable);

    foreach (XPathNavigator nav in navigator.Select(@"/configuration.appSettings/add[@key='dbName']"))
    {
        nav.SetValue(dbName);
    }

    document.Save(xml);
}

我的 windows 服务的 app.config :

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <appSettings>
    <add key="dbName" value="totodb"/>
  </appSettings>

  <configSections>

    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
  </startup>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="v13.0" />
      </parameters>
    </defaultConnectionFactory>
    <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
  </entityFramework>
</configuration>

当我尝试安装我的项目时出现错误,提示我的 app.config 不存在。

这对我有用。您需要将 ConsoleApp2 替换为您的输出文件名。

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

    string dbName = Context.Parameters["dbname"].ToString();
    string xml = Context.Parameters["name"].ToString() + "ConsoleApp2.exe.config";

    XmlDocument document = new XmlDocument();
    document.Load(xml);

    XmlNode dbNameNode = document.SelectSingleNode("//configuration/appSettings/add[@key='dbName']");

    dbNameNode.Attributes["value"].Value = dbName;

    document.Save(xml);
}

我的自定义操作数据是:

/name="[TARGETDIR]\" /dbname=[EDITA1]

您可以添加 MessageBox 和东西来帮助调试。