Skip to content

Latest commit

 

History

History
59 lines (52 loc) · 4.06 KB

windows-specific-properties.md

File metadata and controls

59 lines (52 loc) · 4.06 KB

Windows specific properties

<winConfig>
    <!-- exe creation properties -->
	<headerType>gui</headerType>
	<companyName>${organizationName}</companyName>
	<fileVersion>1.0.0.0</fileVersion>
	<txtFileVersion>${version}</txtFileVersion>
	<productVersion>1.0.0.0</productVersion>
	<txtProductVersion>${version}</txtProductVersion>
	<fileDescription>${description}</fileDescription>
	<copyright>${organizationName}</copyright>
	<productName>${name}</productName>
	<internalName>${name}</internalName>
	<originalFilename>${name}.exe</originalFilename>
	<!-- installer generation properties -->
	<disableDirPage>true|false</disableDirPage>
	<disableProgramGroupPage>true|false</disableProgramGroupPage>
	<disableFinishedPage>true|false</disableFinishedPage>
	<createDesktopIconTask>true|false</createDesktopIconTask>
    <!-- enables/disables installers generation -->
    <generateSetup>true|false</generateSetup>
    <generateMsi>true|false</generateMsi>
</winConfig>
Property Mandatory Default value Description
generateSetup true Generates Setup installer.
generateMsi true Generates MSI installer.

Exe creation properties

Property Mandatory Default value Description
headerType "gui" EXE header type: console or gui.
companyName ${organizationName} EXE company name.
fileVersion "1.0.0.0" EXE file version.
txtFileVersion ${version} EXE txt file version.
productVersion "1.0.0.0" EXE product version.
txtProductVersion ${version} EXE txt product version.
fileDescription ${description} EXE file description.
copyright ${organizationName} EXE copyright.
productName ${name} EXE product name.
internalName ${name} EXE internal name.
originalFilename ${name}.exe EXE original filename.
trademark null EXE trademark.
language null EXE language.

Setup generation properties

Property Mandatory Default value Description
disableDirPage true If this is set to yes, Setup will not show the Select Destination Location wizard page.
disableProgramGroupPage true If this is set to yes, Setup will not show the Select Start Menu Folder wizard page.
disableFinishedPage true If this is set to yes, Setup will not show the Setup Completed wizard page.
createDesktopIconTask true If this is set to yes, Setup will not ask for desktop icon creation.