markus / MarkusWixSetup / MarkusWixSetup.wixproj @ 80283d8f
이력 | 보기 | 이력해설 | 다운로드 (2.42 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 | <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 | </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="..\MARKUS.wxs"> |
||
23 | <Link>MARKUS.wxs</Link> |
||
24 | </Compile> |
||
25 | </ItemGroup> |
||
26 | <ItemGroup> |
||
27 | <Content Include="MarkusWixSetup.wax" /> |
||
28 | </ItemGroup> |
||
29 | <ItemGroup> |
||
30 | <ProjectReference Include="..\KCOM\KCOM.csproj"> |
||
31 | <Name>KCOM</Name> |
||
32 | <Project>{9f7c22a1-065c-4203-a570-f9eea08f2344}</Project> |
||
33 | <Private>True</Private> |
||
34 | <DoNotHarvest>True</DoNotHarvest> |
||
35 | <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups> |
||
36 | <RefTargetDir>INSTALLFOLDER</RefTargetDir> |
||
37 | </ProjectReference> |
||
38 | </ItemGroup> |
||
39 | <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' " /> |
||
40 | <Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets') " /> |
||
41 | <Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' "> |
||
42 | <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/" /> |
||
43 | </Target> |
||
44 | <!-- |
||
45 | To modify your build process, add your task inside one of the targets below and uncomment it. |
||
46 | Other similar extension points exist, see Wix.targets. |
||
47 | <Target Name="BeforeBuild"> |
||
48 | </Target> |
||
49 | <Target Name="AfterBuild"> |
||
50 | </Target> |
||
51 | --> |
||
52 | </Project> |