markus / MarkusWixSetup / MarkusWixSetup.wixproj @ 47759f8d
이력 | 보기 | 이력해설 | 다운로드 (3.66 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>be26f656-74b0-4594-acdb-5754f75859db</ProjectGuid> |
8 |
<SchemaVersion>2.0</SchemaVersion> |
9 |
<OutputName>MarkusWixSetup</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 |
<WixVariables> |
17 |
</WixVariables> |
18 |
</PropertyGroup> |
19 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> |
20 |
<OutputPath>bin\$(Configuration)\</OutputPath> |
21 |
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> |
22 |
</PropertyGroup> |
23 |
<ItemGroup> |
24 |
<Compile Include="..\MARKUS.wxs"> |
25 |
<Link>MARKUS.wxs</Link> |
26 |
</Compile> |
27 |
</ItemGroup> |
28 |
<ItemGroup> |
29 |
<Content Include="MarkusWixSetup.wax" /> |
30 |
</ItemGroup> |
31 |
<ItemGroup> |
32 |
<ProjectReference Include="..\KCOMDataModel\KCOMDataModel.csproj"> |
33 |
<Name>KCOMDataModel</Name> |
34 |
<Project>{629dc8cd-d458-47ef-8f02-cd12c7001c3e}</Project> |
35 |
<Private>True</Private> |
36 |
<DoNotHarvest>True</DoNotHarvest> |
37 |
<RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups> |
38 |
<RefTargetDir>INSTALLFOLDER</RefTargetDir> |
39 |
</ProjectReference> |
40 |
<ProjectReference Include="..\KCOM\KCOM.csproj"> |
41 |
<Name>KCOM</Name> |
42 |
<Project>{9f7c22a1-065c-4203-a570-f9eea08f2344}</Project> |
43 |
<Private>True</Private> |
44 |
<DoNotHarvest>True</DoNotHarvest> |
45 |
<RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups> |
46 |
<RefTargetDir>INSTALLFOLDER</RefTargetDir> |
47 |
</ProjectReference> |
48 |
<ProjectReference Include="..\SmartUpdate\SmartUpdate.csproj"> |
49 |
<Name>SmartUpdate</Name> |
50 |
<Project>{ea12fdc9-575e-471b-a691-3c31d03ea24c}</Project> |
51 |
<Private>True</Private> |
52 |
<DoNotHarvest>True</DoNotHarvest> |
53 |
<RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups> |
54 |
<RefTargetDir>INSTALLFOLDER</RefTargetDir> |
55 |
</ProjectReference> |
56 |
<ProjectReference Include="..\ZoomAndPan\ZoomAndPan.csproj"> |
57 |
<Name>ZoomAndPan</Name> |
58 |
<Project>{6c950af4-04d2-4638-8b78-472e39f78b45}</Project> |
59 |
<Private>True</Private> |
60 |
<DoNotHarvest>True</DoNotHarvest> |
61 |
<RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups> |
62 |
<RefTargetDir>INSTALLFOLDER</RefTargetDir> |
63 |
</ProjectReference> |
64 |
</ItemGroup> |
65 |
<Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' " /> |
66 |
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets') " /> |
67 |
<Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' "> |
68 |
<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/" /> |
69 |
</Target> |
70 |
<PropertyGroup> |
71 |
<PreBuildEvent /> |
72 |
</PropertyGroup> |
73 |
<!-- |
74 |
To modify your build process, add your task inside one of the targets below and uncomment it. |
75 |
Other similar extension points exist, see Wix.targets. |
76 |
<Target Name="BeforeBuild"> |
77 |
</Target> |
78 |
<Target Name="AfterBuild"> |
79 |
</Target> |
80 |
--> |
81 |
</Project> |