2024-02-17 05:05:58 +00:00
|
|
|
<Project Sdk="WixToolset.Sdk/4.0.4">
|
2018-07-25 09:53:51 +00:00
|
|
|
<PropertyGroup>
|
2018-07-26 02:33:09 +00:00
|
|
|
<OutputType>Bundle</OutputType>
|
2018-07-25 09:53:51 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<DefineConstants>Debug</DefineConstants>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
2018-07-26 02:33:09 +00:00
|
|
|
<OutputPath>$(INSTALLER_FOLDER)\</OutputPath>
|
2018-07-25 09:53:51 +00:00
|
|
|
<IntermediateOutputPath>$(BUILD_FOLDER)\</IntermediateOutputPath>
|
|
|
|
</PropertyGroup>
|
2023-07-15 01:31:32 +00:00
|
|
|
<PropertyGroup Condition="$(SIGN)!=''">
|
|
|
|
<SignOutput>true</SignOutput>
|
|
|
|
</PropertyGroup>
|
|
|
|
<Target Name="SignBundleEngine">
|
|
|
|
<Exec Command='signtool.exe $(SIGNTOOL_PARAMS) %(SignBundleEngine.FullPath)' />
|
|
|
|
</Target>
|
|
|
|
<Target Name="SignBundle">
|
|
|
|
<Exec Command='signtool.exe $(SIGNTOOL_PARAMS) %(SignBundle.FullPath)' />
|
|
|
|
</Target>
|
2018-07-25 09:53:51 +00:00
|
|
|
<ItemGroup>
|
2024-02-17 05:05:58 +00:00
|
|
|
<PackageReference Include="WixToolset.Bal.wixext" Version="4.0.4" />
|
|
|
|
<PackageReference Include="WixToolset.Util.wixext" Version="4.0.4" />
|
2018-07-25 09:53:51 +00:00
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|