aboutsummaryrefslogtreecommitdiff
path: root/src/samples/Dtf/Inventory/Inventory.csproj
diff options
context:
space:
mode:
Diffstat (limited to 'src/samples/Dtf/Inventory/Inventory.csproj')
-rw-r--r--src/samples/Dtf/Inventory/Inventory.csproj42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/samples/Dtf/Inventory/Inventory.csproj b/src/samples/Dtf/Inventory/Inventory.csproj
new file mode 100644
index 00000000..6dc1cfd3
--- /dev/null
+++ b/src/samples/Dtf/Inventory/Inventory.csproj
@@ -0,0 +1,42 @@
1
2<!-- 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. -->
3
4
5<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
6 <PropertyGroup>
7 <ProjectGuid>{51480F8E-B80F-42DC-91E7-3542C1F12F8C}</ProjectGuid>
8 <OutputType>WinExe</OutputType>
9 <RootNamespace>WixToolset.Dtf.Samples.Inventory</RootNamespace>
10 <AssemblyName>Inventory</AssemblyName>
11 <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
12 <ApplicationIcon>Inventory.ico</ApplicationIcon>
13 <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
14 </PropertyGroup>
15
16 <ItemGroup>
17 <Compile Include="components.cs" />
18 <Compile Include="Features.cs" />
19 <Compile Include="IInventoryDataProvider.cs" />
20 <Compile Include="Inventory.cs">
21 <SubType>Form</SubType>
22 </Compile>
23 <Compile Include="msiutils.cs" />
24 <Compile Include="patches.cs" />
25 <Compile Include="products.cs" />
26 </ItemGroup>
27
28 <ItemGroup>
29 <Content Include="Inventory.ico" />
30 </ItemGroup>
31
32 <ItemGroup>
33 <Reference Include="System" />
34 <Reference Include="System.Data" />
35 <Reference Include="System.Drawing" />
36 <Reference Include="System.Windows.Forms" />
37 <Reference Include="System.Xml" />
38 <ProjectReference Include="..\..\Libraries\WindowsInstaller\WindowsInstaller.csproj" />
39 </ItemGroup>
40
41 <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.targets" />
42</Project>