blob: f9349ef12f68b53fe0ede5d264f120874534e54f (
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
|
<?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>{6F1482DF-1598-4D88-BDAA-B9D0E0242139}</ProjectGuid>
<AssemblyName>WixPSExtension</AssemblyName>
<OutputType>Library</OutputType>
<RootNamespace>WixToolset.Extensions</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="PSCompiler.cs" />
<Compile Include="PSExtensionData.cs" />
<MsgGenSource Include="Data\messages.xml">
<ResourcesLogicalName>$(RootNamespace).Data.Messages.resources</ResourcesLogicalName>
</MsgGenSource>
<EmbeddedFlattenedResource Include="Xsd\ps.xsd">
<LogicalName>$(RootNamespace).Xsd.ps.xsd</LogicalName>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedFlattenedResource>
<XsdGenSource Include="Xsd\ps.xsd">
<CommonNamespace>WixToolset.Data.Serialize</CommonNamespace>
<Namespace>WixToolset.Extensions.Serialize.PS</Namespace>
</XsdGenSource>
<EmbeddedResource Include="$(OutputPath)\ps.wixlib">
<Link>Data\ps.wixlib</Link>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<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\PSExtension.wixproj">
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>
<Reference Include="System.Xml.Linq" />
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.targets" />
</Project>
|