mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-06-17 14:11:33 +00:00
Move installer signing into MSBuild
This commit is contained in:
@@ -20,6 +20,12 @@
|
||||
</HarvestDirectory>
|
||||
<BindPath Include="$(DEPLOY_FOLDER)" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup Condition="$(SIGN)!=''">
|
||||
<SignOutput>true</SignOutput>
|
||||
</PropertyGroup>
|
||||
<Target Name="SignMsi">
|
||||
<Exec Command='signtool.exe $(SIGNTOOL_PARAMS) %(SignMsi.FullPath)' />
|
||||
</Target>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="WixToolset.Firewall.wixext" Version="4.*" />
|
||||
<PackageReference Include="WixToolset.Util.wixext" Version="4.*" />
|
||||
|
||||
@@ -9,6 +9,15 @@
|
||||
<OutputPath>$(INSTALLER_FOLDER)\</OutputPath>
|
||||
<IntermediateOutputPath>$(BUILD_FOLDER)\</IntermediateOutputPath>
|
||||
</PropertyGroup>
|
||||
<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>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="WixToolset.Bal.wixext" Version="4.*" />
|
||||
<PackageReference Include="WixToolset.Util.wixext" Version="4.*" />
|
||||
|
||||
Reference in New Issue
Block a user