2023-07-15 00:55:00 +00:00
|
|
|
<Project Sdk="WixToolset.Sdk/4.0.1" ToolsVersion="4.0">
|
2018-07-25 09:53:51 +00:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<DefineConstants>Debug</DefineConstants>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
2018-07-26 02:33:09 +00:00
|
|
|
<OutputPath>$(BUILD_FOLDER)\</OutputPath>
|
2018-07-25 09:53:51 +00:00
|
|
|
<IntermediateOutputPath>$(BUILD_FOLDER)\</IntermediateOutputPath>
|
|
|
|
</PropertyGroup>
|
2018-07-26 02:33:09 +00:00
|
|
|
<PropertyGroup>
|
2023-07-15 00:55:00 +00:00
|
|
|
<DefineConstants>DeployDir=$(DEPLOY_FOLDER);BuildDir=$(BUILD_FOLDER)</DefineConstants>
|
2018-07-26 02:33:09 +00:00
|
|
|
</PropertyGroup>
|
2018-07-25 09:53:51 +00:00
|
|
|
<ItemGroup>
|
2023-07-15 00:55:00 +00:00
|
|
|
<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)" />
|
2018-07-25 09:53:51 +00:00
|
|
|
</ItemGroup>
|
2023-07-15 01:31:32 +00:00
|
|
|
<PropertyGroup Condition="$(SIGN)!=''">
|
|
|
|
<SignOutput>true</SignOutput>
|
|
|
|
</PropertyGroup>
|
|
|
|
<Target Name="SignMsi">
|
|
|
|
<Exec Command='signtool.exe $(SIGNTOOL_PARAMS) %(SignMsi.FullPath)' />
|
|
|
|
</Target>
|
2018-07-25 09:53:51 +00:00
|
|
|
<ItemGroup>
|
2023-07-15 00:55:00 +00:00
|
|
|
<PackageReference Include="WixToolset.Firewall.wixext" Version="4.*" />
|
|
|
|
<PackageReference Include="WixToolset.Util.wixext" Version="4.*" />
|
2023-07-15 01:05:49 +00:00
|
|
|
<PackageReference Include="WixToolset.Heat" Version="4.*" />
|
2018-07-25 09:53:51 +00:00
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|