main
wixproj 32 lines 950 Bytes
Raw
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <Import Project="$(WixMSBuildProps)" />
4
5 <PropertyGroup>
6 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
7 <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
8 </PropertyGroup>
9
10 <PropertyGroup>
11 <OutputType>Bundle</OutputType>
12 <EnableDefaultItems>false</EnableDefaultItems>
13 </PropertyGroup>
14
15 <ItemGroup>
16 <Compile Include="Bundle.wxs" />
17 </ItemGroup>
18
19 <ItemGroup>
20 <BindInputPaths Include="..\MsiPackage\data" />
21 </ItemGroup>
22
23 <Import Project="$(WixTargetsPath)" />
24
25 <Target Name="SignBundleEngine">
26 <Message Importance="high" Text="TEST: SignBundleEngine: @(SignBundleEngine)" />
27 </Target>
28
29 <Target Name="SignBundle">
30 <Message Importance="high" Text="TEST: SignBundle: @(SignBundle)" />
31 </Target>
32 </Project>