我对Wix和wix#完全陌生,我试图在安装完成后更新app.config。
我可以使用Wix Util扩展名util:XmlFile
来实现它,但我希望通过wix#CustomDialog UI
来实现。
下面是我尝试过的代码
var project = new ManagedProject("MyProduct",
new Dir(@"%ProgramFiles%\My Company\My Product",
new File("Program.cs"),
new File(@"myPath\App.config")),
new ElevatedManagedAction(CustomActions.OnInstall, Return.check, When.After, Step.InstallFiles, Condition.NOT_Installed)
{
UsesProperties = "CONFIG_FILE=[INSTALLDIR]App.config"
});
project.Load += Msi_Load;
project.BeforeInstall += Msi_BeforeInstall;
project.AfterInstall += Msi_AfterInstall;
创建了CustomDialog
并将其值设置为下一个之后的会话变量
void next_Click(object sender, EventArgs e)
{
MsiRuntime.Session["NAME"] = name.Text;
Shell.GoNext();
}
我能够在Msi_BeforeInstall
中检索会话值,但是在这里app.config路径变得空,因为它没有复制到INSTALLDIR
上,并且在我尝试在Msi_AfterInstall
上执行时这里我没有会话变量属性
我还尝试在安装后通过CustomAction进行操作
[CustomAction]
public static ActionResult OnInstall(Session session)
{
return session.HandleErrors(() =>
{
string configFile = session.Property("INSTALLDIR") + "App.config";
string userName = session.Property("NAME");
UpdateAsAppConfig(configFile, userName);
});
}
static public void UpdateAsAppConfig(string configFile,string name)
{
var config = ConfigurationManager.OpenMappedExeConfiguration(new ExeConfigurationFileMap { ExeConfigFilename = configFile }, ConfigurationUserLevel.None);
config.AppSettings.Settings["MyName"].Value = name;
config.Save();
}
但未获取会话变量属性。 我真的很陌生,任何帮助将不胜感激。如果我做错了,或者安装后如何更新我的app.config,请帮助我。
谢谢。
答案 0 :(得分:0)
我知道您的问题,安装后事件适用于无效会话,目前无法访问。如果需要在安装后瞬间使用某些属性,则可以使用 SetupEventArgs.Data 属性:
private void OnBeforeInstall(SetupEventArgs arguments)
{
//....
arguments.Data["MyName"] = arguments.Session["MyName"];
}
private void OnAfterInstall(SetupEventArgs arguments)
{
var propertyValue = arguments.Data["MyName"];
}
还可以在ProgressBarForm之后显示的UI窗体中使用Data属性。希望对您有所帮助,让我知道您的反馈。