mirror of
				https://github.com/winfsp/winfsp.git
				synced 2025-11-03 20:48:08 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
						|
  <Import Project="..\version.properties" />
 | 
						|
  <PropertyGroup>
 | 
						|
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
 | 
						|
    <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
 | 
						|
    <ProductVersion>3.10</ProductVersion>
 | 
						|
    <ProjectGuid>d53aac39-4c57-4ca5-a4f3-c2b24888c594</ProjectGuid>
 | 
						|
    <SchemaVersion>2.0</SchemaVersion>
 | 
						|
    <OutputName>$(MyProductFileName)-$(MyVersion)</OutputName>
 | 
						|
    <OutputType>Package</OutputType>
 | 
						|
    <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
 | 
						|
    <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
 | 
						|
    <Name>winfsp.msi</Name>
 | 
						|
  </PropertyGroup>
 | 
						|
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
 | 
						|
    <OutputPath>$(SolutionDir)build\$(Configuration)\</OutputPath>
 | 
						|
    <IntermediateOutputPath>$(SolutionDir)build\$(Name).build\$(Configuration)\$(Platform)\</IntermediateOutputPath>
 | 
						|
    <DefineConstants>Debug;MyProductName=$(MyProductName);MyProductFileName=$(MyProductFileName);MyDescription=$(MyDescription);MyCompanyName=$(MyCompanyName);MyCopyright=$(MyCopyright);MyProductVersion=$(MyProductVersion);MyProductStage=$(MyProductStage);MyVersion=$(MyVersion);MyFullVersion=$(MyFullVersion)</DefineConstants>
 | 
						|
    <SuppressAllWarnings>False</SuppressAllWarnings>
 | 
						|
    <Pedantic>True</Pedantic>
 | 
						|
    <SuppressPdbOutput>True</SuppressPdbOutput>
 | 
						|
    <SuppressIces>ICE30</SuppressIces>
 | 
						|
  </PropertyGroup>
 | 
						|
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
 | 
						|
    <OutputPath>$(SolutionDir)build\$(Configuration)\</OutputPath>
 | 
						|
    <IntermediateOutputPath>$(SolutionDir)build\$(Name).build\$(Configuration)\$(Platform)\</IntermediateOutputPath>
 | 
						|
    <DefineConstants>MyProductName=$(MyProductName);MyProductFileName=$(MyProductFileName);MyDescription=$(MyDescription);MyCompanyName=$(MyCompanyName);MyCopyright=$(MyCopyright);MyProductVersion=$(MyProductVersion);MyProductStage=$(MyProductStage);MyVersion=$(MyVersion);MyFullVersion=$(MyFullVersion)</DefineConstants>
 | 
						|
    <SuppressAllWarnings>False</SuppressAllWarnings>
 | 
						|
    <Pedantic>True</Pedantic>
 | 
						|
    <SuppressPdbOutput>True</SuppressPdbOutput>
 | 
						|
    <SuppressIces>ICE30</SuppressIces>
 | 
						|
  </PropertyGroup>
 | 
						|
  <ItemGroup>
 | 
						|
    <Compile Include="Product.wxs" />
 | 
						|
  </ItemGroup>
 | 
						|
  <ItemGroup>
 | 
						|
    <WixExtension Include="WixUIExtension">
 | 
						|
      <HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath>
 | 
						|
      <Name>WixUIExtension</Name>
 | 
						|
    </WixExtension>
 | 
						|
    <WixExtension Include="WixDependencyExtension">
 | 
						|
      <HintPath>$(WixExtDir)\WixDependencyExtension.dll</HintPath>
 | 
						|
      <Name>WixDependencyExtension</Name>
 | 
						|
    </WixExtension>
 | 
						|
  </ItemGroup>
 | 
						|
  <Import Project="$(WixTargetsPath)" />
 | 
						|
  <!--
 | 
						|
	To modify your build process, add your task inside one of the targets below and uncomment it.
 | 
						|
	Other similar extension points exist, see Wix.targets.
 | 
						|
	<Target Name="BeforeBuild">
 | 
						|
	</Target>
 | 
						|
	<Target Name="AfterBuild">
 | 
						|
	</Target>
 | 
						|
	-->
 | 
						|
</Project> |