2019-08-04 00:20:09 +01:00
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion= "4.0" DefaultTargets= "Build" InitialTargets= "EnsureWixToolsetInstalled" xmlns= "http://schemas.microsoft.com/developer/msbuild/2003" >
2019-08-04 12:13:18 +01:00
<!-- https://wixtoolset.org/documentation/manual/v3/msbuild/task_reference/candle.html -->
<!-- standardize on JUCE platform names -->
<PropertyGroup Condition= " '$(Platform)' == 'Win32' " >
<!-- change candle's arch option -->
<InstallerPlatform> x86</InstallerPlatform>
</PropertyGroup>
2019-08-04 00:20:09 +01:00
<PropertyGroup>
2019-08-04 11:10:48 +01:00
<Configuration Condition= " '$(Configuration)' == '' " > Debug</Configuration>
<Platform Condition= " '$(Platform)' == '' " > Win32</Platform>
2019-08-04 00:20:09 +01:00
<ProductVersion> 3.10</ProductVersion>
<ProjectGuid> be799ae7-8c17-4670-85a8-e3d3558385a7</ProjectGuid>
<SchemaVersion> 2.0</SchemaVersion>
<OutputName> WixSetup</OutputName>
<OutputType> Package</OutputType>
</PropertyGroup>
2019-08-04 19:27:21 +01:00
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Debug|x64' " >
<OutputPath> $(Platform)\$(Configuration)\bin\</OutputPath>
<IntermediateOutputPath> $(Platform)\$(Configuration)\obj\</IntermediateOutputPath>
<DefineConstants> Debug</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Release|x64' " >
<OutputPath> $(Platform)\$(Configuration)\bin\</OutputPath>
<IntermediateOutputPath> $(Platform)\$(Configuration)\obj\</IntermediateOutputPath>
</PropertyGroup>
2019-08-04 11:10:48 +01:00
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Debug|Win32' " >
2019-08-04 19:27:21 +01:00
<OutputPath> $(Platform)\$(Configuration)\bin\</OutputPath>
<IntermediateOutputPath> $(Platform)\$(Configuration)\obj\</IntermediateOutputPath>
2019-08-04 00:20:09 +01:00
<DefineConstants> Debug</DefineConstants>
</PropertyGroup>
2019-08-04 11:10:48 +01:00
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Release|Win32' " >
2019-08-04 19:27:21 +01:00
<OutputPath> $(Platform)\$(Configuration)\bin\</OutputPath>
<IntermediateOutputPath> $(Platform)\$(Configuration)\obj\</IntermediateOutputPath>
2019-08-04 00:20:09 +01:00
</PropertyGroup>
<ItemGroup>
2019-08-04 19:27:21 +01:00
<WixExtension Include= "WixUIExtension" >
<HintPath> $(WixToolPath)WixUIExtension.dll</HintPath>
<Name> WixUIExtension</Name>
</WixExtension>
</ItemGroup>
<ItemGroup>
<Compile Include= "MyWelcomeEulaDlg.wxs" />
2019-08-04 00:20:09 +01:00
<Compile Include= "Product.wxs" />
2019-08-04 19:27:21 +01:00
<Compile Include= "WixUI_MyMinimal.wxs" />
2019-08-04 00:20:09 +01:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include= "..\VisualStudio2017\juicysfplugin_StandalonePlugin.vcxproj" >
<Name> juicysfplugin_StandalonePlugin</Name>
<Project> {7c3ab9be-365a-0ef7-aa2a-5b044fe497e5}</Project>
<Private> True</Private>
<DoNotHarvest> True</DoNotHarvest>
<RefProjectOutputGroups> Binaries;Content;Satellites</RefProjectOutputGroups>
<RefTargetDir> INSTALLFOLDER</RefTargetDir>
</ProjectReference>
<ProjectReference Include= "..\VisualStudio2017\juicysfplugin_VST.vcxproj" >
<Name> juicysfplugin_VST</Name>
<Project> {f47a6c45-0c65-bb36-f74e-bccdf23f5eca}</Project>
<Private> True</Private>
<DoNotHarvest> True</DoNotHarvest>
<RefProjectOutputGroups> Binaries;Content;Satellites</RefProjectOutputGroups>
<RefTargetDir> INSTALLFOLDER</RefTargetDir>
</ProjectReference>
<ProjectReference Include= "..\VisualStudio2017\juicysfplugin_VST3.vcxproj" >
<Name> juicysfplugin_VST3</Name>
<Project> {70a2c49a-5df9-60c9-981b-d030ade816bf}</Project>
<Private> True</Private>
<DoNotHarvest> True</DoNotHarvest>
<RefProjectOutputGroups> Binaries;Content;Satellites</RefProjectOutputGroups>
<RefTargetDir> INSTALLFOLDER</RefTargetDir>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include= "Config.wxi" />
</ItemGroup>
<Import Project= "$(WixTargetsPath)" Condition= " '$(WixTargetsPath)' != '' " />
<Import Project= "$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets" Condition= " '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets') " />
<Target Name= "EnsureWixToolsetInstalled" Condition= " '$(WixTargetsImported)' != 'true' " >
<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/" />
</Target>
<!--
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>