main
wixproj 39 lines 1.52 KB
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 <OutputType>Module</OutputType>
9 </PropertyGroup>
10
11 <PropertyGroup>
12 <ProjectGuid>{9F84998B-7F45-4CB3-8795-915801DBBB74}</ProjectGuid>
13 </PropertyGroup>
14
15 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
16 <PlatformName>$(Platform)</PlatformName>
17 <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
18 <DefineConstants>Debug</DefineConstants>
19 </PropertyGroup>
20 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
21 <PlatformName>$(Platform)</PlatformName>
22 <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
23 </PropertyGroup>
24 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
25 <PlatformName>$(Platform)</PlatformName>
26 <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
27 <DefineConstants>Debug</DefineConstants>
28 </PropertyGroup>
29 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
30 <PlatformName>$(Platform)</PlatformName>
31 <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
32 </PropertyGroup>
33
34 <ItemGroup>
35 <BindInputPaths Include="data" />
36 </ItemGroup>
37
38 <Import Project="$(WixTargetsPath)" />
39 </Project>