diff options
Diffstat (limited to 'src/test/DUtilUnitTest/DUtilUnitTest.vcxproj')
-rw-r--r-- | src/test/DUtilUnitTest/DUtilUnitTest.vcxproj | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/src/test/DUtilUnitTest/DUtilUnitTest.vcxproj b/src/test/DUtilUnitTest/DUtilUnitTest.vcxproj new file mode 100644 index 00000000..292cf28a --- /dev/null +++ b/src/test/DUtilUnitTest/DUtilUnitTest.vcxproj | |||
@@ -0,0 +1,73 @@ | |||
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 | |||
5 | <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
6 | <ItemGroup Label="ProjectConfigurations"> | ||
7 | <ProjectConfiguration Include="Debug|Win32"> | ||
8 | <Configuration>Debug</Configuration> | ||
9 | <Platform>Win32</Platform> | ||
10 | </ProjectConfiguration> | ||
11 | <ProjectConfiguration Include="Release|Win32"> | ||
12 | <Configuration>Release</Configuration> | ||
13 | <Platform>Win32</Platform> | ||
14 | </ProjectConfiguration> | ||
15 | </ItemGroup> | ||
16 | <PropertyGroup Label="Globals"> | ||
17 | <ProjectTypes>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}</ProjectTypes> | ||
18 | <ProjectGuid>{AB7EE608-E5FB-42A5-831F-0DEEEA141223}</ProjectGuid> | ||
19 | <RootNamespace>DUtilUnitTests</RootNamespace> | ||
20 | <Keyword>ManagedCProj</Keyword> | ||
21 | <ConfigurationType>DynamicLibrary</ConfigurationType> | ||
22 | <CharacterSet>Unicode</CharacterSet> | ||
23 | <CLRSupport>true</CLRSupport> | ||
24 | </PropertyGroup> | ||
25 | <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.props" /> | ||
26 | <PropertyGroup> | ||
27 | <ProjectAdditionalIncludeDirectories>$(WixRoot)src\libs\dutil\inc</ProjectAdditionalIncludeDirectories> | ||
28 | <ProjectAdditionalLinkLibraries>rpcrt4.lib;dutil.lib;Mpr.lib;Ws2_32.lib;urlmon.lib;wininet.lib</ProjectAdditionalLinkLibraries> | ||
29 | </PropertyGroup> | ||
30 | <ItemGroup> | ||
31 | <ClCompile Include="AssemblyInfo.cpp" /> | ||
32 | <ClCompile Include="CondUtilTest.cpp" /> | ||
33 | <ClCompile Include="DictUtilTest.cpp" /> | ||
34 | <ClCompile Include="DirUtilTests.cpp" /> | ||
35 | <ClCompile Include="FileUtilTest.cpp" /> | ||
36 | <ClCompile Include="GuidUtilTest.cpp" /> | ||
37 | <ClCompile Include="IniUtilTest.cpp" /> | ||
38 | <ClCompile Include="MemUtilTest.cpp" /> | ||
39 | <ClCompile Include="MonUtilTest.cpp" /> | ||
40 | <ClCompile Include="PathUtilTest.cpp" /> | ||
41 | <ClCompile Include="SceUtilTest.cpp" Condition=" Exists('$(SqlCESdkIncludePath)') " /> | ||
42 | <ClCompile Include="StrUtilTest.cpp" /> | ||
43 | <ClCompile Include="UriUtilTest.cpp" /> | ||
44 | <ClCompile Include="VarHelpers.cpp" /> | ||
45 | <ClCompile Include="VarUtilTest.cpp" /> | ||
46 | </ItemGroup> | ||
47 | <ItemGroup> | ||
48 | <ClInclude Include="precomp.h" /> | ||
49 | <ClInclude Include="error.h" /> | ||
50 | <ClInclude Include="VarHelpers.h" /> | ||
51 | </ItemGroup> | ||
52 | <ItemGroup> | ||
53 | <ResourceCompile Include="UnitTest.rc" /> | ||
54 | </ItemGroup> | ||
55 | <ItemGroup> | ||
56 | <Reference Include="System" /> | ||
57 | <Reference Include="xunit"> | ||
58 | <HintPath>$(XunitPath)\xunit.dll</HintPath> | ||
59 | </Reference> | ||
60 | </ItemGroup> | ||
61 | <ItemGroup> | ||
62 | <ProjectReference Include="..\..\..\..\src\libs\dutil\dutil.vcxproj" /> | ||
63 | <ProjectReference Include="..\..\WixCppCliTestTools\WixCppCliTestTools.vcxproj"> | ||
64 | <Project>{95BABD97-FBDB-453A-AF8A-FA031A07B599}</Project> | ||
65 | <Name>WixCppCliTestTools</Name> | ||
66 | </ProjectReference> | ||
67 | <ProjectReference Include="..\..\WixTestTools\WixTestTools.csproj"> | ||
68 | <Project>{55CB1042-647B-4347-9876-3EA607AF8DCE}</Project> | ||
69 | <Name>WixTestTools</Name> | ||
70 | </ProjectReference> | ||
71 | </ItemGroup> | ||
72 | <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.targets" /> | ||
73 | </Project> | ||