Corrected path of custom action in Installer to avoid issues if there are spaces
This commit is contained in:
Родитель
a3872a70f3
Коммит
2876b2de86
|
@ -1164,43 +1164,43 @@
|
||||||
<CustomAction Id='PostSetupActionVS10User'
|
<CustomAction Id='PostSetupActionVS10User'
|
||||||
Execute='deferred'
|
Execute='deferred'
|
||||||
Impersonate='yes'
|
Impersonate='yes'
|
||||||
ExeCommand='[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe -i10u "[SNIPPETS];[VPDXINSTALL]'
|
ExeCommand='"[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe" -i10u "[SNIPPETS];[VPDXINSTALL]'
|
||||||
Directory='TARGETDIR' />
|
Directory='TARGETDIR' />
|
||||||
|
|
||||||
<CustomAction Id='PostSetupActionVS10Machine'
|
<CustomAction Id='PostSetupActionVS10Machine'
|
||||||
Execute='deferred'
|
Execute='deferred'
|
||||||
Impersonate='no'
|
Impersonate='no'
|
||||||
ExeCommand='[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe -i10m "[SNIPPETS];[VPDXINSTALL]'
|
ExeCommand='"[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe" -i10m "[SNIPPETS];[VPDXINSTALL]'
|
||||||
Directory='TARGETDIR' />
|
Directory='TARGETDIR' />
|
||||||
|
|
||||||
<CustomAction Id='PostSetupActionVS08User'
|
<CustomAction Id='PostSetupActionVS08User'
|
||||||
Execute='deferred'
|
Execute='deferred'
|
||||||
Impersonate='yes'
|
Impersonate='yes'
|
||||||
ExeCommand='[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe -i08u "[SNIPPETS];[VPDXINSTALL]'
|
ExeCommand='"[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe" -i08u "[SNIPPETS];[VPDXINSTALL]'
|
||||||
Directory='TARGETDIR' />
|
Directory='TARGETDIR' />
|
||||||
|
|
||||||
<CustomAction Id='PostSetupActionVS08Machine'
|
<CustomAction Id='PostSetupActionVS08Machine'
|
||||||
Execute='deferred'
|
Execute='deferred'
|
||||||
Impersonate='no'
|
Impersonate='no'
|
||||||
ExeCommand='[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe -i08m "[SNIPPETS];[VPDXINSTALL]'
|
ExeCommand='"[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe" -i08m "[SNIPPETS];[VPDXINSTALL]'
|
||||||
Directory='TARGETDIR' />
|
Directory='TARGETDIR' />
|
||||||
|
|
||||||
<CustomAction Id='PostSetupActionVs10x'
|
<CustomAction Id='PostSetupActionVs10x'
|
||||||
Execute='deferred'
|
Execute='deferred'
|
||||||
Impersonate='no'
|
Impersonate='no'
|
||||||
ExeCommand='[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe -i10x "[SNIPPETS];[VPDXINSTALL]'
|
ExeCommand='"[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe" -i10x "[SNIPPETS];[VPDXINSTALL]'
|
||||||
Directory='TARGETDIR' />
|
Directory='TARGETDIR' />
|
||||||
|
|
||||||
<CustomAction Id='PostRemoveActionUser'
|
<CustomAction Id='PostRemoveActionUser'
|
||||||
Execute='deferred'
|
Execute='deferred'
|
||||||
Impersonate='yes'
|
Impersonate='yes'
|
||||||
ExeCommand='[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe -uu "[SNIPPETS];[VPDXINSTALL]'
|
ExeCommand='"[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe" -uu "[SNIPPETS];[VPDXINSTALL]'
|
||||||
Directory='TARGETDIR' />
|
Directory='TARGETDIR' />
|
||||||
|
|
||||||
<CustomAction Id='PostRemoveActionMachine'
|
<CustomAction Id='PostRemoveActionMachine'
|
||||||
Execute='deferred'
|
Execute='deferred'
|
||||||
Impersonate='no'
|
Impersonate='no'
|
||||||
ExeCommand='[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe -um "[SNIPPETS];[VPDXINSTALL]'
|
ExeCommand='"[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe" -um "[SNIPPETS];[VPDXINSTALL]'
|
||||||
Directory='TARGETDIR' />
|
Directory='TARGETDIR' />
|
||||||
|
|
||||||
<InstallExecuteSequence>
|
<InstallExecuteSequence>
|
||||||
|
|
|
@ -1071,43 +1071,43 @@
|
||||||
<CustomAction Id='PostSetupActionVS10User'
|
<CustomAction Id='PostSetupActionVS10User'
|
||||||
Execute='deferred'
|
Execute='deferred'
|
||||||
Impersonate='yes'
|
Impersonate='yes'
|
||||||
ExeCommand='[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe -i10u "[SNIPPETS];[VPDXINSTALL]'
|
ExeCommand='"[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe" -i10u "[SNIPPETS];[VPDXINSTALL]'
|
||||||
Directory='TARGETDIR' />
|
Directory='TARGETDIR' />
|
||||||
|
|
||||||
<CustomAction Id='PostSetupActionVS10Machine'
|
<CustomAction Id='PostSetupActionVS10Machine'
|
||||||
Execute='deferred'
|
Execute='deferred'
|
||||||
Impersonate='no'
|
Impersonate='no'
|
||||||
ExeCommand='[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe -i10m "[SNIPPETS];[VPDXINSTALL]'
|
ExeCommand='"[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe" -i10m "[SNIPPETS];[VPDXINSTALL]'
|
||||||
Directory='TARGETDIR' />
|
Directory='TARGETDIR' />
|
||||||
|
|
||||||
<CustomAction Id='PostSetupActionVS08User'
|
<CustomAction Id='PostSetupActionVS08User'
|
||||||
Execute='deferred'
|
Execute='deferred'
|
||||||
Impersonate='yes'
|
Impersonate='yes'
|
||||||
ExeCommand='[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe -i08u "[SNIPPETS];[VPDXINSTALL]'
|
ExeCommand='"[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe" -i08u "[SNIPPETS];[VPDXINSTALL]'
|
||||||
Directory='TARGETDIR' />
|
Directory='TARGETDIR' />
|
||||||
|
|
||||||
<CustomAction Id='PostSetupActionVS08Machine'
|
<CustomAction Id='PostSetupActionVS08Machine'
|
||||||
Execute='deferred'
|
Execute='deferred'
|
||||||
Impersonate='no'
|
Impersonate='no'
|
||||||
ExeCommand='[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe -i08m "[SNIPPETS];[VPDXINSTALL]'
|
ExeCommand='"[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe" -i08m "[SNIPPETS];[VPDXINSTALL]'
|
||||||
Directory='TARGETDIR' />
|
Directory='TARGETDIR' />
|
||||||
|
|
||||||
<CustomAction Id='PostSetupActionVs10x'
|
<CustomAction Id='PostSetupActionVs10x'
|
||||||
Execute='deferred'
|
Execute='deferred'
|
||||||
Impersonate='no'
|
Impersonate='no'
|
||||||
ExeCommand='[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe -i10x "[SNIPPETS];[VPDXINSTALL]'
|
ExeCommand='"[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe" -i10x "[SNIPPETS];[VPDXINSTALL]'
|
||||||
Directory='TARGETDIR' />
|
Directory='TARGETDIR' />
|
||||||
|
|
||||||
<CustomAction Id='PostRemoveActionUser'
|
<CustomAction Id='PostRemoveActionUser'
|
||||||
Execute='deferred'
|
Execute='deferred'
|
||||||
Impersonate='yes'
|
Impersonate='yes'
|
||||||
ExeCommand='[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe -uu "[SNIPPETS];[VPDXINSTALL]'
|
ExeCommand='"[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe" -uu "[SNIPPETS];[VPDXINSTALL]'
|
||||||
Directory='TARGETDIR' />
|
Directory='TARGETDIR' />
|
||||||
|
|
||||||
<CustomAction Id='PostRemoveActionMachine'
|
<CustomAction Id='PostRemoveActionMachine'
|
||||||
Execute='deferred'
|
Execute='deferred'
|
||||||
Impersonate='no'
|
Impersonate='no'
|
||||||
ExeCommand='[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe -um "[SNIPPETS];[VPDXINSTALL]'
|
ExeCommand='"[AppDataFolder]\MvvmLight\ModifyRegistryKey.exe" -um "[SNIPPETS];[VPDXINSTALL]'
|
||||||
Directory='TARGETDIR' />
|
Directory='TARGETDIR' />
|
||||||
|
|
||||||
<InstallExecuteSequence>
|
<InstallExecuteSequence>
|
||||||
|
|
Загрузка…
Ссылка в новой задаче