WixInstaller.wixproj 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProductVersion>3.10</ProductVersion>
  7. <ProjectGuid>3c410864-be13-410c-9a4a-0e8611fa0f68</ProjectGuid>
  8. <SchemaVersion>2.0</SchemaVersion>
  9. <OutputName>FnSync-Installer</OutputName>
  10. <OutputType>Package</OutputType>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  13. <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
  14. <IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
  15. <DefineConstants>Debug</DefineConstants>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  18. <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
  19. <IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
  22. <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
  23. <IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
  24. <DefineConstants>Debug</DefineConstants>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
  27. <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
  28. <IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
  29. </PropertyGroup>
  30. <ItemGroup>
  31. <Compile Include="Product.wxs" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <WixExtension Include="WixFirewallExtension">
  35. <HintPath>$(WixExtDir)\WixFirewallExtension.dll</HintPath>
  36. <Name>WixFirewallExtension</Name>
  37. </WixExtension>
  38. <WixExtension Include="WixUIExtension">
  39. <HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath>
  40. <Name>WixUIExtension</Name>
  41. </WixExtension>
  42. </ItemGroup>
  43. <ItemGroup>
  44. <ProjectReference Include="..\..\FnSync\FnSync.csproj">
  45. <Name>FnSync</Name>
  46. <Project>{06f280a9-52cd-4555-a659-810c2f7951a0}</Project>
  47. <Private>True</Private>
  48. <DoNotHarvest>True</DoNotHarvest>
  49. <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
  50. <RefTargetDir>INSTALLFOLDER</RefTargetDir>
  51. </ProjectReference>
  52. </ItemGroup>
  53. <ItemGroup>
  54. <Content Include="LICENSE.rtf" />
  55. </ItemGroup>
  56. <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' " />
  57. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets') " />
  58. <Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' ">
  59. <Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
  60. </Target>
  61. <!--
  62. To modify your build process, add your task inside one of the targets below and uncomment it.
  63. Other similar extension points exist, see Wix.targets.
  64. <Target Name="BeforeBuild">
  65. </Target>
  66. <Target Name="AfterBuild">
  67. </Target>
  68. -->
  69. </Project>