blob: 3e9d382ed011a4c4453fc8d262364906015a4b78 (
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
43
44
45
46
47
|
<?xml version="1.0" encoding="utf-8"?>
<!-- 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 DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<ProjectGuid>{BF720A63-9D7B-456E-B60C-8122852D9FED}</ProjectGuid>
<AssemblyName>WixBalExtension</AssemblyName>
<OutputType>Library</OutputType>
<RootNamespace>WixToolset.Extensions</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="BalBinder.cs" />
<Compile Include="BalCompiler.cs" />
<Compile Include="BalExtensionData.cs" />
<MsgGenSource Include="Data\messages.xml">
<ResourcesLogicalName>$(RootNamespace).Data.Messages.resources</ResourcesLogicalName>
</MsgGenSource>
<EmbeddedFlattenedResource Include="Data\tables.xml">
<LogicalName>$(RootNamespace).Data.tables.xml</LogicalName>
</EmbeddedFlattenedResource>
<EmbeddedFlattenedResource Include="Xsd\bal.xsd">
<LogicalName>$(RootNamespace).Xsd.bal.xsd</LogicalName>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedFlattenedResource>
<XsdGenSource Include="Xsd\bal.xsd">
<CommonNamespace>WixToolset.Data.Serialize</CommonNamespace>
<Namespace>WixToolset.Extensions.Serialize.Bal</Namespace>
</XsdGenSource>
<EmbeddedResource Include="$(OutputPath)\bal.wixlib">
<Link>Data\bal.wixlib</Link>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
<ProjectReference Include="..\..\..\libs\WixToolset.Data\WixToolset.Data.csproj" />
<ProjectReference Include="..\..\..\libs\WixToolset.Extensibility\WixToolset.Extensibility.csproj" />
<ProjectReference Include="..\..\..\tools\wix\Wix.csproj" />
<ProjectReference Include="..\wixlib\BalExtension.wixproj">
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.targets" />
</Project>
|