markus / SetupTest / SetupTest.wixproj @ a1e2ba68
이력 | 보기 | 이력해설 | 다운로드 (2.94 KB)
1 |
<?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 |
<ProjectGuid>dc95737b-aee6-444c-96e2-52132d815cc6</ProjectGuid> |
8 |
<SchemaVersion>2.0</SchemaVersion> |
9 |
<OutputName>SetupTest</OutputName> |
10 |
<OutputType>Package</OutputType> |
11 |
</PropertyGroup> |
12 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> |
13 |
<OutputPath>bin\$(Configuration)\</OutputPath> |
14 |
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> |
15 |
<DefineConstants>Debug</DefineConstants> |
16 |
</PropertyGroup> |
17 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> |
18 |
<OutputPath>bin\$(Configuration)\</OutputPath> |
19 |
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> |
20 |
</PropertyGroup> |
21 |
<ItemGroup> |
22 |
<Compile Include="Product.wxs" /> |
23 |
</ItemGroup> |
24 |
<ItemGroup> |
25 |
<Content Include="SetupTest.wax" /> |
26 |
</ItemGroup> |
27 |
<ItemGroup> |
28 |
<ProjectReference Include="..\DownloadManager\DownloadManager.csproj"> |
29 |
<Name>DownloadManager</Name> |
30 |
<Project>{e1aeb641-7b2b-4231-8518-2e4cf79aa64b}</Project> |
31 |
<Private>True</Private> |
32 |
<DoNotHarvest>True</DoNotHarvest> |
33 |
<RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups> |
34 |
<RefTargetDir>INSTALLFOLDER</RefTargetDir> |
35 |
</ProjectReference> |
36 |
<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 |
</ItemGroup> |
45 |
<ItemGroup> |
46 |
<WixExtension Include="WixUIExtension"> |
47 |
<HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath> |
48 |
<Name>WixUIExtension</Name> |
49 |
</WixExtension> |
50 |
</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> |