markus / SetupTest / SetupTest.wixproj @ master
이력 | 보기 | 이력해설 | 다운로드 (2.94 KB)
1 | 80283d8f | taeseongkim | <?xml version="1.0" encoding="utf-8"?> |
---|---|---|---|
2 | <Project ToolsVersion="4.0" DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||
3 | <PropertyGroup> |
||
4 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
||
5 | <Platform Condition=" '$(Platform)' == '' ">x86</Platform> |
||
6 | <ProductVersion>3.10</ProductVersion> |
||
7 | a1e2ba68 | taeseongkim | <ProjectGuid>dc95737b-aee6-444c-96e2-52132d815cc6</ProjectGuid> |
8 | 80283d8f | taeseongkim | <SchemaVersion>2.0</SchemaVersion> |
9 | a1e2ba68 | taeseongkim | <OutputName>SetupTest</OutputName> |
10 | 80283d8f | taeseongkim | <OutputType>Package</OutputType> |
11 | </PropertyGroup> |
||
12 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> |
||
13 | <OutputPath>bin\$(Configuration)\</OutputPath> |
||
14 | <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> |
||
15 | a1e2ba68 | taeseongkim | <DefineConstants>Debug</DefineConstants> |
16 | 80283d8f | taeseongkim | </PropertyGroup> |
17 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> |
||
18 | <OutputPath>bin\$(Configuration)\</OutputPath> |
||
19 | <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> |
||
20 | </PropertyGroup> |
||
21 | <ItemGroup> |
||
22 | a1e2ba68 | taeseongkim | <Compile Include="Product.wxs" /> |
23 | 80283d8f | taeseongkim | </ItemGroup> |
24 | <ItemGroup> |
||
25 | a1e2ba68 | taeseongkim | <Content Include="SetupTest.wax" /> |
26 | 80283d8f | taeseongkim | </ItemGroup> |
27 | <ItemGroup> |
||
28 | a1e2ba68 | taeseongkim | <ProjectReference Include="..\DownloadManager\DownloadManager.csproj"> |
29 | <Name>DownloadManager</Name> |
||
30 | <Project>{e1aeb641-7b2b-4231-8518-2e4cf79aa64b}</Project> |
||
31 | 47759f8d | taeseongkim | <Private>True</Private> |
32 | <DoNotHarvest>True</DoNotHarvest> |
||
33 | <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups> |
||
34 | <RefTargetDir>INSTALLFOLDER</RefTargetDir> |
||
35 | </ProjectReference> |
||
36 | 80283d8f | taeseongkim | <ProjectReference Include="..\KCOM\KCOM.csproj"> |
37 | <Name>KCOM</Name> |
||
38 | <Project>{9f7c22a1-065c-4203-a570-f9eea08f2344}</Project> |
||
39 | <Private>True</Private> |
||
40 | <DoNotHarvest>True</DoNotHarvest> |
||
41 | <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups> |
||
42 | <RefTargetDir>INSTALLFOLDER</RefTargetDir> |
||
43 | </ProjectReference> |
||
44 | a1e2ba68 | taeseongkim | </ItemGroup> |
45 | <ItemGroup> |
||
46 | <WixExtension Include="WixUIExtension"> |
||
47 | <HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath> |
||
48 | <Name>WixUIExtension</Name> |
||
49 | </WixExtension> |
||
50 | 80283d8f | taeseongkim | </ItemGroup> |
51 | <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' " /> |
||
52 | <Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets') " /> |
||
53 | <Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' "> |
||
54 | <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/" /> |
||
55 | </Target> |
||
56 | <!-- |
||
57 | To modify your build process, add your task inside one of the targets below and uncomment it. |
||
58 | Other similar extension points exist, see Wix.targets. |
||
59 | <Target Name="BeforeBuild"> |
||
60 | </Target> |
||
61 | <Target Name="AfterBuild"> |
||
62 | </Target> |
||
63 | --> |
||
64 | </Project> |