diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-05-04 22:50:16 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-05-04 22:50:16 -0700 |
| commit | e713e6695bd531d1021482d454401b86c84f3f2d (patch) | |
| tree | bf76f3a6a411edd1c4b47f3a54625f7f1023e95b /src/ext/Sql/ca/sqlca.vcxproj | |
| parent | 2977d0ffabcd6d68790e711736d2edd1fe0cc0af (diff) | |
| download | wix-e713e6695bd531d1021482d454401b86c84f3f2d.tar.gz wix-e713e6695bd531d1021482d454401b86c84f3f2d.tar.bz2 wix-e713e6695bd531d1021482d454401b86c84f3f2d.zip | |
Move Sql.wixext into ext
Diffstat (limited to 'src/ext/Sql/ca/sqlca.vcxproj')
| -rw-r--r-- | src/ext/Sql/ca/sqlca.vcxproj | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/src/ext/Sql/ca/sqlca.vcxproj b/src/ext/Sql/ca/sqlca.vcxproj new file mode 100644 index 00000000..18becc5f --- /dev/null +++ b/src/ext/Sql/ca/sqlca.vcxproj | |||
| @@ -0,0 +1,83 @@ | |||
| 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 | <PlatformToolset>v142</PlatformToolset> | ||
| 37 | <CharacterSet>Unicode</CharacterSet> | ||
| 38 | <ProjectModuleDefinitionFile>sqlca.def</ProjectModuleDefinitionFile> | ||
| 39 | <Description>WiX Toolset Sql CustomAction</Description> | ||
| 40 | </PropertyGroup> | ||
| 41 | |||
| 42 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
| 43 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
| 44 | |||
| 45 | <PropertyGroup> | ||
| 46 | <ProjectAdditionalLinkLibraries>msi.lib</ProjectAdditionalLinkLibraries> | ||
| 47 | </PropertyGroup> | ||
| 48 | |||
| 49 | <ItemGroup> | ||
| 50 | <ClCompile Include="dllmain.cpp"> | ||
| 51 | <PrecompiledHeader>Create</PrecompiledHeader> | ||
| 52 | </ClCompile> | ||
| 53 | <ClCompile Include="scadb.cpp" /> | ||
| 54 | <ClCompile Include="scaexec.cpp" /> | ||
| 55 | <ClCompile Include="scasql.cpp" /> | ||
| 56 | <ClCompile Include="scasqlstr.cpp" /> | ||
| 57 | <ClCompile Include="scauser.cpp" /> | ||
| 58 | <ClCompile Include="sqlca.cpp" /> | ||
| 59 | </ItemGroup> | ||
| 60 | |||
| 61 | <ItemGroup> | ||
| 62 | <ClInclude Include="CustomMsiErrors.h" /> | ||
| 63 | <ClInclude Include="precomp.h" /> | ||
| 64 | <ClInclude Include="sca.h" /> | ||
| 65 | <ClInclude Include="scacost.h" /> | ||
| 66 | <ClInclude Include="scadb.h" /> | ||
| 67 | <ClInclude Include="scasqlstr.h" /> | ||
| 68 | <ClInclude Include="scauser.h" /> | ||
| 69 | </ItemGroup> | ||
| 70 | |||
| 71 | <ItemGroup> | ||
| 72 | <None Include="sqlca.def" /> | ||
| 73 | </ItemGroup> | ||
| 74 | |||
| 75 | <ItemGroup> | ||
| 76 | <PackageReference Include="WixToolset.Dutil" Version="4.0.65" /> | ||
| 77 | <PackageReference Include="WixToolset.WcaUtil" Version="4.0.18" /> | ||
| 78 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" /> | ||
| 79 | <PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" /> | ||
| 80 | </ItemGroup> | ||
| 81 | |||
| 82 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
| 83 | </Project> | ||
