- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 WiX v3.14 构建 .Net Core 安装程序。我有一个 CustomAction - UpdateJsonAppSettings - 用 C# 编写,旨在更新作为安装一部分的 appsettings.json 文件(使用从执行安装的用户输入的字段构建的数据库连接字符串)。当我将 CustomAction 安排为立即运行 After="InstallFinalize"时,已使用 Before="UpdateJsonAppSettings"安排的 CustomActionData 集合,session.CustomActionData 集合为空。
<CustomAction Id="SetCustomActionData"
Return="check"
Property="UpdateJsonAppSettings"
Value="connectionString=[CONNECTION_STRING_FORMATTED];filepath=[PATH_TO_APPSETTINGS_JSON]" />
<CustomAction Id="UpdateJsonAppSettings"
BinaryKey="CustomActions"
DllEntry="UpdateJsonAppSettings"
Execute="immediate"
Return="ignore" />
<InstallExecuteSequence>
<Custom Action="ConnectionString" Before="SetCustomActionData" />
<Custom Action="SetCustomActionData" Before="UpdateJsonAppSettings" />
<Custom Action="UpdateJsonAppSettings" After="InstallFinalize">NOT Installed AND NOT PATCH</Custom>
</InstallExecuteSequence>
session .Log:
Session.Log:
MSI (s) (C8:8C) [11:15:44:363]: Doing action: SetCustomActionData
Action 11:15:44: SetCustomActionData.
Action start 11:15:44: SetCustomActionData.
MSI (s) (C8:8C) [11:15:44:379]: PROPERTY CHANGE: Adding UpdateJsonAppSettings property. Its value is 'connectionString=Data Source=localhost\SQLEXPRESS;;Initial Catalog=DB;;User Id=dbuser;;Password=dbuserpassword;;MultipleActiveResultSets=true;;App=EntityFramework;filepath=[#appSettings]'.
Action ended 11:15:44: SetCustomActionData. Return value 1.
[SNIP]
Action start 11:15:44: UpdateJsonAppSettings.
MSI (s) (C8:B8) [11:15:44:382]: Invoking remote custom action. DLL: C:\windows\Installer\MSI95BF.tmp, Entrypoint: UpdateJsonAppSettings
SFXCA: Extracting custom action to temporary directory: C:\TEMP\MSI95BF.tmp-\
SFXCA: Binding to CLR version v4.0.30319
Calling custom action CustomActions!CustomActions.CustomAction.UpdateJsonAppSettings
Session.CustomActionData.Count(): 0
Exception thrown by custom action:
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
当我将 CustomAction UpdateJsonAppSettings 修改为 Execute="deferred"并将其安排在 After="InstallFiles"时,CustomActionData 已正确设置并且可用于 CustomAction,但安装失败并出现文件未找到异常。 Scheduled Before="InstallFinalize"失败并出现相同的异常。
Session.Log:
Calling custom action CustomActions!CustomActions.CustomAction.UpdateJsonAppSettings
Session.CustomActionData.Count(): 2
key: connectionString, value: Data Source=localhost\SQLEXPRESS;Initial Catalog=DB;User Id=dbuser;Password=dbuserpassword;MultipleActiveResultSets=true;App=EntityFramework
key: filepath, value: C:\inetpub\wwwroot\ServiceApi\appsettings.json
UpdateJsonAppSettings() returned: NotExecuted; _result: File not found:C:\inetpub\wwwroot\ServiceApi\appsettings.json; filepath: C:\inetpub\wwwroot\ServiceApi\appsettings.json; connectionString: Data Source=localhost\SQLEXPRESS;Initial Catalog=DB;User Id=dbuser;Password=dbuserpassword;MultipleActiveResultSets=true;App=EntityFramework
这看起来像是第 22 条军规。非常感谢收到任何帮助。
PS - 出于某种原因,我的原始帖子最终出现在 META-StackExchange 上?
最佳答案
非常感谢 Stein 的建议 - 它最终让我找到了解决方案,尽管这绝非易事。我不确定如何提出这个解释以及如何将您的评论设置为正确答案。
我发现设置 CustomDataAction 元素定义了 CustomAction 中 appsettings.json 的路径,同时在发送到 session.Log 时正确显示,而不是实际设置的内容(请参阅在线警告) .
[CustomAction]
public static ActionResult SetCustomActionData(Session session)
{
CustomActionData _data = new CustomActionData();
// ..escape single ';'
string _connectionString = session["CONNECTION_STRING"];
_connectionString.Replace(";", ";;");
_data["connectionString"] = _connectionString;
// ..correctly output in install log
session.Log(string.Format("SetCustomActionData() setting _connectionString: {0}", _connectionString));
// Property set to [#appSettings] in Product.wxs
string _filePath = session["PATH_TO_APPSETTINGS_JSON"];
_data["filepath"] = _filePath;
// ..correctly output in install log
session.Log(string.Format("SetCustomActionData() setting _filepath: {0}", _filePath));
// ..set the CustomActionData programmatically
session["UpdateJsonAppSettings"] = _data.ToString();
return ActionResult.Success;
}
Install.log:
[SNIP]
SetCustomActionData() setting _connectionString: 'Data Source=localhost\SQLEXPRESS;;Initial Catalog=...'
SetCustomActionData() setting _filepath: 'C:\inetpub\wwwroot\UServiceApi\appsettings.json'
[CustomAction]
public static ActionResult UpdateJsonAppSettings(Session session)
{
// ..as per Stein's suggestion
MessageBox.Show("Attach run32dll.dll now");
// ..correctly output to log (i.e. 2)
session.Log(string.Format("Session.CustomActionData.Count(): {0}", session.CustomActionData.Count));
// ..correctly output two key/value pairs to log
foreach(string _key in session.CustomActionData.Keys)
session.Log(string.Format("key: {0}, value: {1}", _key, session.CustomActionData[_key]));
string _connectionString = session.CustomActionData["connectionString"];
string _pathToAppSettings = session.CustomActionData["filepath"];
// WARNING: _pathToAppSettings has reverted to the literal "[#appSettings]" - which of course triggers File not found Exception.
ActionResult _retVal = UpdateJsonConnectionString(_connectionString, _pathToAppSettings, out string _result);
// ..log failure
if (_retVal != ActionResult.Success)
session.Log(string.Format("UpdateJsonAppSettings() returned: {0}; _result: {1}; filepath: {2}; connectionString: {3}",
_retVal, _result, _pathToAppSettings, _connectionString));
return _retVal;
}
Install.log:
[SNIP]
key: connectionString, value: Data Source=localhost\SQLEXPRESS;Initial Catalog=...
key: filepath, value: C:\inetpub\wwwroot\UServiceApi\appsettings.json
[SNIP]
UpdateJsonAppSettings() returned: NotExecuted; _result: File not found:C:\inetpub\wwwroot\ServiceApi\appsettings.json...
我尝试了 Properties 和 CustomAction 实现的多种不同组合,但最终发现正确设置 CustomActionData 以包含“真实”文件路径元素的唯一方法是将其设置为 Type 51(我认为)Product 中的 CustomAction .wxs。我尝试过的其他组合均无效。
Product.wxs 中的工作代码片段:
<Property Id="PATH_TO_APPSETTINGS_JSON" Value="[#appSettings]" />
<CustomAction Id="SetCustomActionData"
Return="check"
Property="UpdateJsonAppSettings"
Value="connectionString=[CONNECTION_STRING_FORMATTED];filepath=[#appSettings]" />// NOTE: cannot use filepath=[PATH_TO_APPSETTINGS_JSON] here
结论:一个可能的 WiX 错误 - 日志没有说实话(它有选择地“翻译”CustomActionData 元素,而编译的安装程序代码实际上使用不同的值)。
关于WiX 工具集 - 为什么 CustomActionData 集合对于 InstallFinalize 后的即时 CustomAction 为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52731219/
我有一个要求,如果安装程序失败(通过从另一个自定义操作返回 ActionResult.Failure 自动或手动失败),我需要执行自定义操作。我试过了 但未调用 CA。感谢您的帮助。 编辑:从日志中发
我创建了一个自定义操作: 安装顺序 我的安装程序确实弹出并说它需要管理员权限才能运行。我授予它。 InstallPrivileges='elevated' InstallScope='perMac
我有一个带有 RegistrationType="ContentType"的 CustomAction 定义: 所有使用此内容类型的文档库都将显示此上下文
我创建了一个具有内容类型的功能: 我想为此内容类型创建自定义操作。 这在 ECB 上有效(每个项目标题的弹出菜单): 但是,我无法让它在表单的工具栏上工作(编辑或显示):
我正在创建一个 WiX 安装程序来安装一个连接到数据库的程序。为了解决这个问题,我创建了一个 C dll,它检查服务器上是否存在特定的 SQL 实例: extern "C" UINT __stdcal
我使用 Wix,并且有一个 customAction 和一个 anb installSequence: 问题是我的自定义操作被调用了两
我正在编写我们产品的新的重大升级。 在我的安装程序中,我首先找到以前版本的配置设置,然后我想卸载以前的版本。 我找到了几份指南,告诉我应该如何制作适合此类升级的 MSI。 然而,以前的不是MSI。 这
有人告诉我 WIX 中的 CustomAction 有一种方法可以在控制台日志中显示输出。我包含一个名为 XmlPreprocess.exe 的 .exe 来操作我的 web.config,基于名为
我在 wix 安装程序中有一个相当长的 CustomAction,我希望能够在操作运行时更改“状态:...”文本,以查看其内部状态的进度和更新。 我知道如何设置自定义操作的进度文本 - 但我想要的是在
我想在安装合并模块(由 WiX 创建)期间使用以下代码运行命令行。 当我在命令行上运行命令(目前是硬编码)时,它工作正常。但是,在安装过程中运行时,它会失败。打开日志记录会显示错误代码
有没有办法将数据传递给(托管,C#)CustomAction?最好使用 Session 对象的 CustomActionData 集合。我还想在 UI 控制部分中使用 CustomAction 的返回
如果我有以下 CustomAction,如果 DoTask 失败,安装将中止。 如果我将 Return 设置为 ignore,安装将在失败时继续进行,但我不会得到任何指示。 如果 CustomAct
我想根据某些值在安装中包含不同的 dll。因此,我尝试根据使用自定义操作设置的属性加载组件。 在wxs文件中: ... ... ... ...
请告诉我在这行括号里写什么 var UtilityKey = Registry.LocalMachine.OpenSubKey(...); 这是 CustomAction 的代码: public st
我有一个 CustomInstaller 类 (System.Configuration.Install.Installer),基本上我在 Install 方法中打开一个对话框表单。我想知道是否有可能
我的wxs文件中有以下代码 现在,当我从安装程序调用自定义操作时,如何获取此 exe 的路径?我试过了 var pathToExe = session.G
我想对 WiX 安装程序的 C# CustomAction 函数进行快速测试。即从我的 C# WinForms 应用程序中调用它们。 众所周知,函数的格式为 ActionResult MyAction
据我所知 - WiX 支持两种 CustomActions: 延迟 - 运行此操作的用户(默认情况下)已提升,但不是运行安装的用户(例如,LocalSystem 或类似的用户)。 立即 - 运行此操作
所以我正在创建我的第一个 Wix 项目,但我似乎在执行自定义操作时遇到了问题。我不确定它是否包含在 msi 中,我也不太确定我做错了什么。以下是我的 Wix 文件:
我正在使用 WIX 创建一个 MSI,它具有安装 clickonce 应用程序的自定义操作。我想通过 GPO 部署 MSI。当我双击运行 msi 时自定义操作运行良好,但通过 GPO 部署时自定义操作
我是一名优秀的程序员,十分优秀!