blob: a81c961567054b434de69995cb1399bcb8d2543a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?xml version="1.0" encoding="utf-8" ?>
<!-- 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. -->
<Project>
<PropertyGroup>
<DefineConstants>$(DefineConstants);CompanyName=$(Company)</DefineConstants>
<OutputPath_x86>$(OutputPath)x86\</OutputPath_x86>
<OutputPath_x64>$(OutputPath)x64\</OutputPath_x64>
<OutputPath_arm>$(OutputPath)ARM\</OutputPath_arm>
<OutputPath_arm64>$(OutputPath)ARM64\</OutputPath_arm64>
<OutputPath_win32>$(OutputPath)Win32\</OutputPath_win32>
</PropertyGroup>
<ItemGroup>
<BindInputPaths Include="$(OutputPath_x86)">
<BindName>x86</BindName>
</BindInputPaths>
<BindInputPaths Include="$(OutputPath_x64)">
<BindName>x64</BindName>
</BindInputPaths>
<BindInputPaths Include="$(OutputPath_arm)">
<BindName>arm</BindName>
</BindInputPaths>
<BindInputPaths Include="$(OutputPath_arm64)">
<BindName>arm64</BindName>
</BindInputPaths>
<BindInputPaths Include="$(OutputPath_win32)">
<BindName>win32</BindName>
</BindInputPaths>
</ItemGroup>
</Project>
|