diff options
Diffstat (limited to 'src/wixext/WixHttpExtension.csproj')
-rw-r--r-- | src/wixext/WixHttpExtension.csproj | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/wixext/WixHttpExtension.csproj b/src/wixext/WixHttpExtension.csproj new file mode 100644 index 00000000..74af503f --- /dev/null +++ b/src/wixext/WixHttpExtension.csproj | |||
@@ -0,0 +1,48 @@ | |||
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>{AAFC3C7F-D818-4B1D-AF3F-A331EA917F3F}</ProjectGuid> | ||
8 | <AssemblyName>WixHttpExtension</AssemblyName> | ||
9 | <OutputType>Library</OutputType> | ||
10 | <RootNamespace>WixToolset.Extensions</RootNamespace> | ||
11 | </PropertyGroup> | ||
12 | <ItemGroup> | ||
13 | <Compile Include="AssemblyInfo.cs" /> | ||
14 | <Compile Include="HttpCompiler.cs" /> | ||
15 | <Compile Include="HttpConstants.cs" /> | ||
16 | <Compile Include="HttpDecompiler.cs" /> | ||
17 | <Compile Include="HttpExtensionData.cs" /> | ||
18 | <MsgGenSource Include="Data\messages.xml"> | ||
19 | <ResourcesLogicalName>$(RootNamespace).Data.Messages.resources</ResourcesLogicalName> | ||
20 | </MsgGenSource> | ||
21 | <EmbeddedFlattenedResource Include="Data\tables.xml"> | ||
22 | <LogicalName>$(RootNamespace).Data.tables.xml</LogicalName> | ||
23 | </EmbeddedFlattenedResource> | ||
24 | <EmbeddedFlattenedResource Include="Xsd\http.xsd"> | ||
25 | <LogicalName>$(RootNamespace).Xsd.http.xsd</LogicalName> | ||
26 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
27 | </EmbeddedFlattenedResource> | ||
28 | <XsdGenSource Include="Xsd\http.xsd"> | ||
29 | <CommonNamespace>WixToolset.Data.Serialize</CommonNamespace> | ||
30 | <Namespace>WixToolset.Extensions.Serialize.Http</Namespace> | ||
31 | </XsdGenSource> | ||
32 | <EmbeddedResource Include="$(OutputPath)\http.wixlib"> | ||
33 | <Link>Data\http.wixlib</Link> | ||
34 | </EmbeddedResource> | ||
35 | </ItemGroup> | ||
36 | <ItemGroup> | ||
37 | <Reference Include="System" /> | ||
38 | <Reference Include="System.Xml" /> | ||
39 | <Reference Include="System.Xml.Linq" /> | ||
40 | <ProjectReference Include="..\..\..\libs\WixToolset.Data\WixToolset.Data.csproj" /> | ||
41 | <ProjectReference Include="..\..\..\libs\WixToolset.Extensibility\WixToolset.Extensibility.csproj" /> | ||
42 | <ProjectReference Include="..\..\..\tools\wix\Wix.csproj" /> | ||
43 | <ProjectReference Include="..\wixlib\HttpExtension.wixproj"> | ||
44 | <ReferenceOutputAssembly>false</ReferenceOutputAssembly> | ||
45 | </ProjectReference> | ||
46 | </ItemGroup> | ||
47 | <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.targets" /> | ||
48 | </Project> | ||