diff options
| author | Bob Arnson <bob@firegiant.com> | 2020-07-06 12:34:48 -0400 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2020-07-06 12:39:18 -0400 |
| commit | c134594328bd63fb19b88239694523f04108030e (patch) | |
| tree | 7196012533c8497b0e1f2081b3ddb284367482ba /src/wixlib/sql.wixproj | |
| parent | e761a7cb8dff5ceba9d91eae85c53867950f6819 (diff) | |
| download | wix-c134594328bd63fb19b88239694523f04108030e.tar.gz wix-c134594328bd63fb19b88239694523f04108030e.tar.bz2 wix-c134594328bd63fb19b88239694523f04108030e.zip | |
Add per-platform custom action support.
Diffstat (limited to 'src/wixlib/sql.wixproj')
| -rw-r--r-- | src/wixlib/sql.wixproj | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/wixlib/sql.wixproj b/src/wixlib/sql.wixproj index b4a37d6c..96673563 100644 --- a/src/wixlib/sql.wixproj +++ b/src/wixlib/sql.wixproj | |||
| @@ -1,18 +1,19 @@ | |||
| 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. --> | 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"> | 2 | <Project Sdk="WixToolset.Sdk"> |
| 3 | |||
| 4 | <PropertyGroup> | 3 | <PropertyGroup> |
| 5 | <OutputType>Library</OutputType> | 4 | <OutputType>Library</OutputType> |
| 6 | <BindFiles>true</BindFiles> | 5 | <BindFiles>true</BindFiles> |
| 7 | <Cultures>en-us</Cultures> | 6 | <Cultures>en-us</Cultures> |
| 8 | </PropertyGroup> | 7 | </PropertyGroup> |
| 9 | 8 | ||
| 10 | <ItemGroup> | 9 | <ItemGroup> |
| 11 | <ProjectReference Include="..\ca\sqlca.vcxproj" /> | 10 | <ProjectReference Include="..\ca\sqlca.vcxproj" Properties="Platform=ARM" /> |
| 11 | <ProjectReference Include="..\ca\sqlca.vcxproj" Properties="Platform=ARM64" /> | ||
| 12 | <ProjectReference Include="..\ca\sqlca.vcxproj" Properties="Platform=x86" /> | ||
| 13 | <ProjectReference Include="..\ca\sqlca.vcxproj" Properties="Platform=x64" /> | ||
| 12 | </ItemGroup> | 14 | </ItemGroup> |
| 13 | 15 | ||
| 14 | <ItemGroup> | 16 | <ItemGroup> |
| 15 | <PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="All" /> | 17 | <PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="All" /> |
| 16 | </ItemGroup> | 18 | </ItemGroup> |
| 17 | 19 | </Project> \ No newline at end of file | |
| 18 | </Project> | ||
