main
vcxproj 102 lines 3.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|ARM64">
7 <Configuration>Debug</Configuration>
8 <Platform>ARM64</Platform>
9 </ProjectConfiguration>
10 <ProjectConfiguration Include="Release|ARM64">
11 <Configuration>Release</Configuration>
12 <Platform>ARM64</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|Win32">
23 <Configuration>Debug</Configuration>
24 <Platform>Win32</Platform>
25 </ProjectConfiguration>
26 <ProjectConfiguration Include="Release|Win32">
27 <Configuration>Release</Configuration>
28 <Platform>Win32</Platform>
29 </ProjectConfiguration>
30 </ItemGroup>
31
32 <PropertyGroup Label="Globals">
33 <ProjectGuid>{076018F7-19BD-423A-ABBF-229273DA08D8}</ProjectGuid>
34 <ConfigurationType>DynamicLibrary</ConfigurationType>
35 <TargetName>utilca</TargetName>
36 <CharacterSet>Unicode</CharacterSet>
37 <ProjectModuleDefinitionFile>utilca.def</ProjectModuleDefinitionFile>
38 <Description>WiX Toolset Util 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>activeds.lib;adsiid.lib;msi.lib;netapi32.lib;shlwapi.lib</ProjectAdditionalLinkLibraries>
46 </PropertyGroup>
47
48 <ItemGroup>
49 <ClCompile Include="BroadcastSettingChange.cpp" />
50 <ClCompile Include="CheckReboot.cpp" />
51 <ClCompile Include="CloseApps.cpp" />
52 <ClCompile Include="dllmain.cpp">
53 <PrecompiledHeader>Create</PrecompiledHeader>
54 </ClCompile>
55 <ClCompile Include="exitearlywithsuccess.cpp" />
56 <ClCompile Include="FormatFiles.cpp" />
57 <ClCompile Include="netshortcuts.cpp" />
58 <ClCompile Include="OsInfo.cpp" />
59 <ClCompile Include="qtexecca.cpp" />
60 <ClCompile Include="RemoveFoldersEx.cpp" />
61 <ClCompile Include="RemoveRegistryKeysEx.cpp" />
62 <ClCompile Include="RestartManager.cpp" />
63 <ClCompile Include="scaexec.cpp" />
64 <ClCompile Include="scamanifest.cpp" />
65 <ClCompile Include="scaperf.cpp" />
66 <ClCompile Include="scaperfexec.cpp" />
67 <ClCompile Include="scasched.cpp" />
68 <ClCompile Include="scasmbexec.cpp" />
69 <ClCompile Include="scasmbsched.cpp" />
70 <ClCompile Include="scauser.cpp" />
71 <ClCompile Include="secureobj.cpp" />
72 <ClCompile Include="serviceconfig.cpp" />
73 <ClCompile Include="shellexecca.cpp" />
74 <ClCompile Include="test.cpp" />
75 <ClCompile Include="TouchFile.cpp" />
76 <ClCompile Include="utilca.cpp" />
77 <ClCompile Include="XmlConfig.cpp" />
78 <ClCompile Include="XmlFile.cpp" />
79 </ItemGroup>
80
81 <ItemGroup>
82 <ClInclude Include="cost.h" />
83 <ClInclude Include="CustomMsiErrors.h" />
84 <ClInclude Include="precomp.h" />
85 <ClInclude Include="sca.h" />
86 <ClInclude Include="scacost.h" />
87 <ClInclude Include="scasmb.h" />
88 <ClInclude Include="scasmbexec.h" />
89 <ClInclude Include="scauser.h" />
90 </ItemGroup>
91
92 <ItemGroup>
93 <None Include="utilca.def" />
94 </ItemGroup>
95
96 <ItemGroup>
97 <PackageReference Include="WixToolset.WcaUtil" />
98 <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
99 </ItemGroup>
100
101 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
102 </Project>