blob: 292cf28ad64a83107d79df4ab951a37c2d118421 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
<?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 DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectTypes>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}</ProjectTypes>
<ProjectGuid>{AB7EE608-E5FB-42A5-831F-0DEEEA141223}</ProjectGuid>
<RootNamespace>DUtilUnitTests</RootNamespace>
<Keyword>ManagedCProj</Keyword>
<ConfigurationType>DynamicLibrary</ConfigurationType>
<CharacterSet>Unicode</CharacterSet>
<CLRSupport>true</CLRSupport>
</PropertyGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.props" />
<PropertyGroup>
<ProjectAdditionalIncludeDirectories>$(WixRoot)src\libs\dutil\inc</ProjectAdditionalIncludeDirectories>
<ProjectAdditionalLinkLibraries>rpcrt4.lib;dutil.lib;Mpr.lib;Ws2_32.lib;urlmon.lib;wininet.lib</ProjectAdditionalLinkLibraries>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="AssemblyInfo.cpp" />
<ClCompile Include="CondUtilTest.cpp" />
<ClCompile Include="DictUtilTest.cpp" />
<ClCompile Include="DirUtilTests.cpp" />
<ClCompile Include="FileUtilTest.cpp" />
<ClCompile Include="GuidUtilTest.cpp" />
<ClCompile Include="IniUtilTest.cpp" />
<ClCompile Include="MemUtilTest.cpp" />
<ClCompile Include="MonUtilTest.cpp" />
<ClCompile Include="PathUtilTest.cpp" />
<ClCompile Include="SceUtilTest.cpp" Condition=" Exists('$(SqlCESdkIncludePath)') " />
<ClCompile Include="StrUtilTest.cpp" />
<ClCompile Include="UriUtilTest.cpp" />
<ClCompile Include="VarHelpers.cpp" />
<ClCompile Include="VarUtilTest.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="precomp.h" />
<ClInclude Include="error.h" />
<ClInclude Include="VarHelpers.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="UnitTest.rc" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="xunit">
<HintPath>$(XunitPath)\xunit.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\src\libs\dutil\dutil.vcxproj" />
<ProjectReference Include="..\..\WixCppCliTestTools\WixCppCliTestTools.vcxproj">
<Project>{95BABD97-FBDB-453A-AF8A-FA031A07B599}</Project>
<Name>WixCppCliTestTools</Name>
</ProjectReference>
<ProjectReference Include="..\..\WixTestTools\WixTestTools.csproj">
<Project>{55CB1042-647B-4347-9876-3EA607AF8DCE}</Project>
<Name>WixTestTools</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.targets" />
</Project>
|