diff options
Diffstat (limited to 'src/ext/NetFx/wixlib/netfx.wixproj')
-rw-r--r-- | src/ext/NetFx/wixlib/netfx.wixproj | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/ext/NetFx/wixlib/netfx.wixproj b/src/ext/NetFx/wixlib/netfx.wixproj new file mode 100644 index 00000000..937ed0d4 --- /dev/null +++ b/src/ext/NetFx/wixlib/netfx.wixproj | |||
@@ -0,0 +1,32 @@ | |||
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 | </PropertyGroup> | ||
10 | |||
11 | <ItemGroup> | ||
12 | <BindInputPaths Include="$(OutputPath)x86" BindName='x86' /> | ||
13 | <BindInputPaths Include="$(OutputPath)x64" BindName='x64' /> | ||
14 | <BindInputPaths Include="$(OutputPath)arm64" BindName='arm64' /> | ||
15 | </ItemGroup> | ||
16 | |||
17 | <ItemGroup> | ||
18 | <ProjectReference Include="..\ca\netfxca.vcxproj" Properties="Platform=ARM64" ReferenceOutputAssembly="false" /> | ||
19 | <ProjectReference Include="..\ca\netfxca.vcxproj" Properties="Platform=x86" ReferenceOutputAssembly="false" /> | ||
20 | <ProjectReference Include="..\ca\netfxca.vcxproj" Properties="Platform=x64" ReferenceOutputAssembly="false" /> | ||
21 | </ItemGroup> | ||
22 | |||
23 | <ItemGroup> | ||
24 | <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.*" /> | ||
25 | <PackageReference Include="WixToolset.Util.wixext" Version="4.0.*" /> | ||
26 | </ItemGroup> | ||
27 | |||
28 | <ItemGroup> | ||
29 | <PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" PrivateAssets="All" /> | ||
30 | </ItemGroup> | ||
31 | |||
32 | </Project> | ||