diff options
Diffstat (limited to 'src/wixext/WixDifxAppExtension.csproj')
-rw-r--r-- | src/wixext/WixDifxAppExtension.csproj | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/wixext/WixDifxAppExtension.csproj b/src/wixext/WixDifxAppExtension.csproj new file mode 100644 index 00000000..5e85c675 --- /dev/null +++ b/src/wixext/WixDifxAppExtension.csproj | |||
@@ -0,0 +1,47 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
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 DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> | ||
6 | <PropertyGroup> | ||
7 | <ProjectGuid>{2256EFD7-E678-4485-818D-986D590068BE}</ProjectGuid> | ||
8 | <AssemblyName>WixDifxAppExtension</AssemblyName> | ||
9 | <OutputType>Library</OutputType> | ||
10 | <RootNamespace>WixToolset.Extensions</RootNamespace> | ||
11 | </PropertyGroup> | ||
12 | <ItemGroup> | ||
13 | <Compile Include="AssemblyInfo.cs" /> | ||
14 | <Compile Include="DifxAppCompiler.cs" /> | ||
15 | <Compile Include="DifxAppDecompiler.cs" /> | ||
16 | <Compile Include="DifxAppExtensionData.cs" /> | ||
17 | <EmbeddedFlattenedResource Include="Data\tables.xml"> | ||
18 | <LogicalName>$(RootNamespace).Data.tables.xml</LogicalName> | ||
19 | </EmbeddedFlattenedResource> | ||
20 | <EmbeddedFlattenedResource Include="Xsd\difxapp.xsd"> | ||
21 | <LogicalName>$(RootNamespace).Xsd.difxapp.xsd</LogicalName> | ||
22 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
23 | </EmbeddedFlattenedResource> | ||
24 | <XsdGenSource Include="Xsd\difxapp.xsd"> | ||
25 | <SubType>Designer</SubType> | ||
26 | <CommonNamespace>WixToolset.Data.Serialize</CommonNamespace> | ||
27 | <Namespace>WixToolset.Extensions.Serialize.DifxApp</Namespace> | ||
28 | </XsdGenSource> | ||
29 | </ItemGroup> | ||
30 | <ItemGroup> | ||
31 | <Reference Include="System" /> | ||
32 | <Reference Include="System.Xml" /> | ||
33 | <Reference Include="System.Xml.Linq" /> | ||
34 | <ProjectReference Include="..\..\..\libs\WixToolset.Data\WixToolset.Data.csproj" /> | ||
35 | <ProjectReference Include="..\..\..\libs\WixToolset.Extensibility\WixToolset.Extensibility.csproj" /> | ||
36 | <ProjectReference Include="..\..\..\tools\wix\Wix.csproj" /> | ||
37 | <ProjectReference Include="..\wixlib\DIFxAppExtension.wixproj"> | ||
38 | <Properties>Platform=x86</Properties> | ||
39 | <ReferenceOutputAssembly>false</ReferenceOutputAssembly> | ||
40 | </ProjectReference> | ||
41 | <ProjectReference Include="..\wixlib\DIFxAppExtension.wixproj"> | ||
42 | <Properties>Platform=x64</Properties> | ||
43 | <ReferenceOutputAssembly>false</ReferenceOutputAssembly> | ||
44 | </ProjectReference> | ||
45 | </ItemGroup> | ||
46 | <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.targets" /> | ||
47 | </Project> | ||