Note: This is the migration API reference for FAKE 5. The new (modularized) API documentation can be found here. If the API is already migrated you can check here if exists in a module. More information regarding the migration can be found here

OBSOLETE

Use Fake.Installer.Wix instead (FAKE0001 - package: Fake.Installer.Wix - member: Fake.Installer.Wix.RegistryKey)

WiXRegistryKey

Parameters for WiX RegistryKey

Record Fields

Record FieldDescription
ForceCreateOnInstall
Signature: YesOrNo

Set this attribute to 'yes' to create an empty key, if absent, when the parent component is installed This value is needed only to create an empty key with no subkeys or values. Windows Installer creates keys as needed to store subkeys and values. The default is "no"

ForceDeleteOnUninstall
Signature: YesOrNo

Set this attribute to 'yes' to remove the key with all its values and subkeys when the parent component is uninstalled Note that this value is useful only if your program creates additional values or subkeys under this key and you want an uninstall to remove them MSI already removes all values and subkeys that it creates, so this option just adds additional overhead to uninstall. The default is "no"

Id
Signature: string

Primary key used to identify this particular entry

Key
Signature: string

The localizable key for the registry value If the parent element is a RegistryKey, this value may be omitted to use the path of the parent, or if its specified it will be appended to the path of the parent

Keys
Signature: seq<WiXRegistryKey>

You can nest child registry keys here

Root
Signature: Option<WiXRegistryRootType>

The predefined root key for the registry value

Values
Signature: seq<WiXRegistryValue>

You can nest child registry values here

Instance members

Instance memberDescription
x.createAttributeList()
Signature: unit -> seq<string * string>
Attributes:
[<Obsolete("Use Fake.Installer.Wix instead (FAKE0001 - package: Fake.Installer.Wix - member: Fake.Installer.Wix.RegistryKey.createAttributeList)")>]
OBSOLETE

Use Fake.Installer.Wix instead (FAKE0001 - package: Fake.Installer.Wix - member: Fake.Installer.Wix.RegistryKey.createAttributeList)