mirror of
				https://github.com/winfsp/winfsp.git
				synced 2025-10-30 19:48:38 -05:00 
			
		
		
		
	installer: choose install banner based on MyDevStage project variable
This commit is contained in:
		| @@ -377,7 +377,7 @@ | |||||||
|             </Feature> |             </Feature> | ||||||
|         </Feature> |         </Feature> | ||||||
|  |  | ||||||
|         <WixVariable Id="WixUIBannerBmp" Value="wixbanner.bmp" /> |         <WixVariable Id="WixUIBannerBmp" Value="wixbanner-$(var.MyDevStage).bmp" /> | ||||||
|         <WixVariable Id="WixUIDialogBmp" Value="wixdialog.bmp" /> |         <WixVariable Id="WixUIDialogBmp" Value="wixdialog.bmp" /> | ||||||
|         <UI Id="FeatureTree"> |         <UI Id="FeatureTree"> | ||||||
|             <UIRef Id="WixUI_FeatureTree" /> |             <UIRef Id="WixUI_FeatureTree" /> | ||||||
|   | |||||||
| @@ -16,7 +16,7 @@ | |||||||
|   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> |   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> | ||||||
|     <OutputPath>$(SolutionDir)build\$(Configuration)\</OutputPath> |     <OutputPath>$(SolutionDir)build\$(Configuration)\</OutputPath> | ||||||
|     <IntermediateOutputPath>$(SolutionDir)build\$(Name).build\$(Configuration)\$(Platform)\</IntermediateOutputPath> |     <IntermediateOutputPath>$(SolutionDir)build\$(Name).build\$(Configuration)\$(Platform)\</IntermediateOutputPath> | ||||||
|     <DefineConstants>Debug;MyProductName=$(MyProductName);MyDescription=$(MyDescription);MyCompanyName=$(MyCompanyName);MyCopyright=$(MyCopyright);MyVersion=$(MyVersion)</DefineConstants> |     <DefineConstants>Debug;MyProductName=$(MyProductName);MyDescription=$(MyDescription);MyCompanyName=$(MyCompanyName);MyCopyright=$(MyCopyright);MyDevStage=$(MyDevStage);MyVersion=$(MyVersion)</DefineConstants> | ||||||
|     <SuppressAllWarnings>False</SuppressAllWarnings> |     <SuppressAllWarnings>False</SuppressAllWarnings> | ||||||
|     <Pedantic>True</Pedantic> |     <Pedantic>True</Pedantic> | ||||||
|     <SuppressPdbOutput>True</SuppressPdbOutput> |     <SuppressPdbOutput>True</SuppressPdbOutput> | ||||||
| @@ -25,7 +25,7 @@ | |||||||
|   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> |   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> | ||||||
|     <OutputPath>$(SolutionDir)build\$(Configuration)\</OutputPath> |     <OutputPath>$(SolutionDir)build\$(Configuration)\</OutputPath> | ||||||
|     <IntermediateOutputPath>$(SolutionDir)build\$(Name).build\$(Configuration)\$(Platform)\</IntermediateOutputPath> |     <IntermediateOutputPath>$(SolutionDir)build\$(Name).build\$(Configuration)\$(Platform)\</IntermediateOutputPath> | ||||||
|     <DefineConstants>MyProductName=$(MyProductName);MyDescription=$(MyDescription);MyCompanyName=$(MyCompanyName);MyCopyright=$(MyCopyright);MyVersion=$(MyVersion)</DefineConstants> |     <DefineConstants>MyProductName=$(MyProductName);MyDescription=$(MyDescription);MyCompanyName=$(MyCompanyName);MyCopyright=$(MyCopyright);MyDevStage=$(MyDevStage);MyVersion=$(MyVersion)</DefineConstants> | ||||||
|     <SuppressAllWarnings>False</SuppressAllWarnings> |     <SuppressAllWarnings>False</SuppressAllWarnings> | ||||||
|     <Pedantic>True</Pedantic> |     <Pedantic>True</Pedantic> | ||||||
|     <SuppressPdbOutput>True</SuppressPdbOutput> |     <SuppressPdbOutput>True</SuppressPdbOutput> | ||||||
|   | |||||||
| Before Width: | Height: | Size: 112 KiB After Width: | Height: | Size: 112 KiB | 
| @@ -5,6 +5,7 @@ | |||||||
|         <MyDescription>Windows File System Proxy</MyDescription> |         <MyDescription>Windows File System Proxy</MyDescription> | ||||||
|         <MyCompanyName>Navimatics Corporation</MyCompanyName> |         <MyCompanyName>Navimatics Corporation</MyCompanyName> | ||||||
|         <MyCopyright>2015-2016 Bill Zissimopoulos</MyCopyright> |         <MyCopyright>2015-2016 Bill Zissimopoulos</MyCopyright> | ||||||
|  |         <MyDevStage>Beta</MyDevStage> | ||||||
|         <!-- build number: concat 2-digit year with 3-digit day of the year (16-bits until 2066) --> |         <!-- build number: concat 2-digit year with 3-digit day of the year (16-bits until 2066) --> | ||||||
|         <MyBuildNumber>$([System.DateTime]::Now.ToString(`yy`))$([System.DateTime]::Now.DayOfYear.ToString(`000`))</MyBuildNumber> |         <MyBuildNumber>$([System.DateTime]::Now.ToString(`yy`))$([System.DateTime]::Now.DayOfYear.ToString(`000`))</MyBuildNumber> | ||||||
|         <MyVersion>0.17.$(MyBuildNumber)</MyVersion> |         <MyVersion>0.17.$(MyBuildNumber)</MyVersion> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user