blob: 57bae9079d28e612cad0be890b776c4cf483b709 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{51480F8E-B80F-42DC-91E7-3542C1F12F8C}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>WixToolset.Dtf.Tools.Inventory</RootNamespace>
<AssemblyName>Inventory</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<ApplicationIcon>Inventory.ico</ApplicationIcon>
<RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
</PropertyGroup>
<ItemGroup>
<Compile Include="components.cs" />
<Compile Include="Features.cs" />
<Compile Include="IInventoryDataProvider.cs" />
<Compile Include="Inventory.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="msiutils.cs" />
<Compile Include="patches.cs" />
<Compile Include="products.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Inventory.ico" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<ProjectReference Include="..\..\Libraries\WindowsInstaller\WindowsInstaller.csproj" />
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.targets" />
</Project>
|