2024-05-11 20:08:10 +00:00
|
|
|
<Project Sdk="WixToolset.Sdk/5.0.0" ToolsVersion="5.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>
|
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>
|
2024-05-11 20:08:10 +00:00
|
|
|
<PackageReference Include="WixToolset.Firewall.wixext" Version="5.0.0" />
|
|
|
|
<PackageReference Include="WixToolset.Util.wixext" Version="5.0.0" />
|
|
|
|
<PackageReference Include="WixToolset.Heat" Version="5.0.0" />
|
2018-07-25 09:53:51 +00:00
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|