summaryrefslogtreecommitdiff
path: root/src/ext/Dependency/wixlib/dependency.wixproj
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-05-04 12:07:04 -0700
committerRob Mensching <rob@firegiant.com>2021-05-04 12:07:04 -0700
commit3caaf742fcd19170a8732570654d3b2cbb18830f (patch)
tree2b0d1bf83b0ced8f0620be4aaec4c597b825d372 /src/ext/Dependency/wixlib/dependency.wixproj
parentfb095340926a93e3eec9592e3e255b7d7b04d9d5 (diff)
downloadwix-3caaf742fcd19170a8732570654d3b2cbb18830f.tar.gz
wix-3caaf742fcd19170a8732570654d3b2cbb18830f.tar.bz2
wix-3caaf742fcd19170a8732570654d3b2cbb18830f.zip
Move Dependency.wixext into ext
Diffstat (limited to 'src/ext/Dependency/wixlib/dependency.wixproj')
-rw-r--r--src/ext/Dependency/wixlib/dependency.wixproj30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/ext/Dependency/wixlib/dependency.wixproj b/src/ext/Dependency/wixlib/dependency.wixproj
new file mode 100644
index 00000000..76e3ecd3
--- /dev/null
+++ b/src/ext/Dependency/wixlib/dependency.wixproj
@@ -0,0 +1,30 @@
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<Project Sdk="WixToolset.Sdk">
5
6 <PropertyGroup>
7 <OutputType>Library</OutputType>
8 <BindFiles>true</BindFiles>
9 <!-- PropertyModularizationSuppressed -->
10 <SuppressSpecificWarnings>1086</SuppressSpecificWarnings>
11 <Cultures>en-us</Cultures>
12 </PropertyGroup>
13
14 <ItemGroup>
15 <BindInputPaths Include="$(OutputPath)x86" BindName='x86' />
16 <BindInputPaths Include="$(OutputPath)x64" BindName='x64' />
17 <BindInputPaths Include="$(OutputPath)arm64" BindName='arm64' />
18 </ItemGroup>
19
20 <ItemGroup>
21 <ProjectReference Include="..\ca\dependencyca.vcxproj" Properties="Platform=ARM64" ReferenceOutputAssembly="false" />
22 <ProjectReference Include="..\ca\dependencyca.vcxproj" Properties="Platform=x86" ReferenceOutputAssembly="false" />
23 <ProjectReference Include="..\ca\dependencyca.vcxproj" Properties="Platform=x64" ReferenceOutputAssembly="false" />
24 </ItemGroup>
25
26 <ItemGroup>
27 <PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" PrivateAssets="All" />
28 </ItemGroup>
29
30</Project>