diff options
Diffstat (limited to 'src/ext/Http/wixlib/http.wixproj')
-rw-r--r-- | src/ext/Http/wixlib/http.wixproj | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/ext/Http/wixlib/http.wixproj b/src/ext/Http/wixlib/http.wixproj new file mode 100644 index 00000000..999b7334 --- /dev/null +++ b/src/ext/Http/wixlib/http.wixproj | |||
@@ -0,0 +1,24 @@ | |||
1 | <!-- 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. --> | ||
2 | <Project Sdk="WixToolset.Sdk"> | ||
3 | <PropertyGroup> | ||
4 | <OutputType>Library</OutputType> | ||
5 | <BindFiles>true</BindFiles> | ||
6 | <Cultures>en-us</Cultures> | ||
7 | </PropertyGroup> | ||
8 | |||
9 | <ItemGroup> | ||
10 | <BindInputPaths Include="$(OutputPath)x86" BindName='x86' /> | ||
11 | <BindInputPaths Include="$(OutputPath)x64" BindName='x64' /> | ||
12 | <BindInputPaths Include="$(OutputPath)arm64" BindName='arm64' /> | ||
13 | </ItemGroup> | ||
14 | |||
15 | <ItemGroup> | ||
16 | <ProjectReference Include="..\ca\httpca.vcxproj" Properties="Platform=ARM64" /> | ||
17 | <ProjectReference Include="..\ca\httpca.vcxproj" Properties="Platform=x86" /> | ||
18 | <ProjectReference Include="..\ca\httpca.vcxproj" Properties="Platform=x64" /> | ||
19 | </ItemGroup> | ||
20 | |||
21 | <ItemGroup> | ||
22 | <PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" PrivateAssets="All" /> | ||
23 | </ItemGroup> | ||
24 | </Project> \ No newline at end of file | ||