main
vcxproj 80 lines 2.88 KB
Raw
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 DefaultTargets="Build" ToolsVersion="16.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
5 <ItemGroup Label="ProjectConfigurations">
6 <ProjectConfiguration Include="Debug|Win32">
7 <Configuration>Debug</Configuration>
8 <Platform>Win32</Platform>
9 </ProjectConfiguration>
10 <ProjectConfiguration Include="Release|Win32">
11 <Configuration>Release</Configuration>
12 <Platform>Win32</Platform>
13 </ProjectConfiguration>
14 <ProjectConfiguration Include="Debug|x64">
15 <Configuration>Debug</Configuration>
16 <Platform>x64</Platform>
17 </ProjectConfiguration>
18 <ProjectConfiguration Include="Release|x64">
19 <Configuration>Release</Configuration>
20 <Platform>x64</Platform>
21 </ProjectConfiguration>
22 <ProjectConfiguration Include="Debug|ARM64">
23 <Configuration>Debug</Configuration>
24 <Platform>ARM64</Platform>
25 </ProjectConfiguration>
26 <ProjectConfiguration Include="Release|ARM64">
27 <Configuration>Release</Configuration>
28 <Platform>ARM64</Platform>
29 </ProjectConfiguration>
30 </ItemGroup>
31
32 <PropertyGroup Label="Globals">
33 <ProjectGuid>{4DCA6E4B-A1F1-4450-BC2D-94AC20F31935}</ProjectGuid>
34 <ConfigurationType>DynamicLibrary</ConfigurationType>
35 <TargetName>sqlca</TargetName>
36 <CharacterSet>Unicode</CharacterSet>
37 <ProjectModuleDefinitionFile>sqlca.def</ProjectModuleDefinitionFile>
38 <Description>WiX Toolset Sql CustomAction</Description>
39 </PropertyGroup>
40
41 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
42 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
43
44 <PropertyGroup>
45 <ProjectAdditionalLinkLibraries>msi.lib</ProjectAdditionalLinkLibraries>
46 </PropertyGroup>
47
48 <ItemGroup>
49 <ClCompile Include="dllmain.cpp">
50 <PrecompiledHeader>Create</PrecompiledHeader>
51 </ClCompile>
52 <ClCompile Include="scadb.cpp" />
53 <ClCompile Include="scaexec.cpp" />
54 <ClCompile Include="scasql.cpp" />
55 <ClCompile Include="scasqlstr.cpp" />
56 <ClCompile Include="scauser.cpp" />
57 <ClCompile Include="sqlca.cpp" />
58 </ItemGroup>
59
60 <ItemGroup>
61 <ClInclude Include="CustomMsiErrors.h" />
62 <ClInclude Include="precomp.h" />
63 <ClInclude Include="sca.h" />
64 <ClInclude Include="scacost.h" />
65 <ClInclude Include="scadb.h" />
66 <ClInclude Include="scasqlstr.h" />
67 <ClInclude Include="scauser.h" />
68 </ItemGroup>
69
70 <ItemGroup>
71 <None Include="sqlca.def" />
72 </ItemGroup>
73
74 <ItemGroup>
75 <PackageReference Include="WixToolset.WcaUtil" />
76 <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
77 </ItemGroup>
78
79 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
80 </Project>