Skip to content

Commit

Permalink
Updates to TestBed-Basic-Package Wix project
Browse files Browse the repository at this point in the history
  • Loading branch information
jdee committed Mar 16, 2021
1 parent e0be93a commit 1d0ceac
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
Advertise="yes"
Icon="branch.exe" />
</File>
<File Id="TestBedPdb" Source="$(var.ProjectDir)..\Debug\TestBed-Basic.pdb" />
</Component>
<Component Id="WelcomePage" Guid="fc9d0d52-7c4e-4402-b189-db6711b3d154">
<File Id="Welcome.html" Source="$(var.ProjectDir)..\Welcome.html" KeyPath="yes">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<SchemaVersion>2.0</SchemaVersion>
<OutputName>TestBed-Basic</OutputName>
<OutputType>Package</OutputType>
<SignOutput>true</SignOutput>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<OutputPath>bin\$(Configuration)\</OutputPath>
Expand Down Expand Up @@ -43,6 +44,13 @@
<Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' ">
<Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
</Target>
<!-- https://wixtoolset.org/documentation/manual/v3/overview/insignia.html for these targets and the SignOutput property -->
<Target Name="SignCabs">
<Exec Command="&quot;C:\Program Files (x86)\Windows Kits\10\App Certification Kit\Signtool.exe&quot; sign /a &quot;%(SignCabs.FullPath)&quot;" />
</Target>
<Target Name="SignMsi">
<Exec Command="&quot;C:\Program Files (x86)\Windows Kits\10\App Certification Kit\Signtool.exe&quot; sign /a &quot;%(SignMsi.FullPath)&quot;" />
</Target>
<!--
To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Wix.targets.
Expand All @@ -51,4 +59,4 @@
<Target Name="AfterBuild">
</Target>
-->
</Project>
</Project>

0 comments on commit 1d0ceac

Please sign in to comment.