In wix project, I have a property "MyProperty" contained in a fragment in a file "FileContainingMyPropery.wxs". I want to use that property in both the merge module and the msi of the project:
But since SecureCustomProperties are not merged from MergeModule, I cannot mark my property as Secure...
The purpose of the property is to store the path to which some components are deployed to. The value of the property is set by querying the registry:
<Property Id="MY_PROPERTY" Secure="no">
<RegistrySearch Id="ProductSignature" Root="HKLM" Win64="no"
Key="SOFTWARE\MyCompany\MyProduct\MyVersion" Name="PathName" Type="directory">
</RegistrySearch>
</Property>
Is it ok to set this property as not secure?