I am using WiX v3.14 to build a .Net Core installer. I have a CustomAction - UpdateJsonAppSettings - written in C#, which is intended to update the appsettings.json file which is part of the installation (with a database connection string built from fields entered by the user performing the install). When I schedule the CustomAction as immediate to run After="InstallFinalize", the CustomActionData collection which has been scheduled with Before="UpdateJsonAppSettings", the session.CustomActionData collection is empty.
<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>
The 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.
When I modify CustomAction UpdateJsonAppSettings to Execute="deferred" and schedule it After="InstallFiles", CustomActionData is correctly set and is available tothe CustomAction but the installation fails with a File not found exception. Scheduled Before="InstallFinalize" fails with the same exception.
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
This looks like a Catch-22 situation. Any help gratefully received.
PS - for some reason my original post ended up on META-StackExchange?