mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-10 05:34:17 +00:00
28 lines
No EOL
1.2 KiB
XML
28 lines
No EOL
1.2 KiB
XML
<Project Sdk="WixToolset.Sdk/4.0.1" ToolsVersion="4.0">
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<DefineConstants>Debug</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<OutputPath>$(BUILD_FOLDER)\</OutputPath>
|
|
<IntermediateOutputPath>$(BUILD_FOLDER)\</IntermediateOutputPath>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<DefineConstants>DeployDir=$(DEPLOY_FOLDER);BuildDir=$(BUILD_FOLDER)</DefineConstants>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<HarvestDirectory Include="$(DEPLOY_FOLDER)">
|
|
<ComponentGroupName>MoonlightDependencies</ComponentGroupName>
|
|
<DirectoryRefId>INSTALLFOLDER</DirectoryRefId>
|
|
<PreprocessorVariable>DeployDir</PreprocessorVariable>
|
|
<SuppressRootDirectory>true</SuppressRootDirectory>
|
|
<SuppressCom>true</SuppressCom>
|
|
<SuppressRegistry>true</SuppressRegistry>
|
|
</HarvestDirectory>
|
|
<BindPath Include="$(DEPLOY_FOLDER)" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="WixToolset.Firewall.wixext" Version="4.*" />
|
|
<PackageReference Include="WixToolset.Util.wixext" Version="4.*" />
|
|
<PackageReference Include="WixToolset.Heat" Version="4.*" />
|
|
</ItemGroup>
|
|
</Project> |