diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/DUtilUnitTest/DUtilUnitTest.vcxproj | 73 | ||||
-rw-r--r-- | src/test/DUtilUnitTest/DUtilUnitTest.vcxproj.filters | 77 |
2 files changed, 150 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> | ||
diff --git a/src/test/DUtilUnitTest/DUtilUnitTest.vcxproj.filters b/src/test/DUtilUnitTest/DUtilUnitTest.vcxproj.filters new file mode 100644 index 00000000..a83db35d --- /dev/null +++ b/src/test/DUtilUnitTest/DUtilUnitTest.vcxproj.filters | |||
@@ -0,0 +1,77 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | <ItemGroup> | ||
4 | <Filter Include="Source Files"> | ||
5 | <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> | ||
6 | <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> | ||
7 | </Filter> | ||
8 | <Filter Include="Header Files"> | ||
9 | <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> | ||
10 | <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions> | ||
11 | </Filter> | ||
12 | <Filter Include="Resource Files"> | ||
13 | <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier> | ||
14 | <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions> | ||
15 | </Filter> | ||
16 | </ItemGroup> | ||
17 | <ItemGroup> | ||
18 | <ClCompile Include="AssemblyInfo.cpp"> | ||
19 | <Filter>Source Files</Filter> | ||
20 | </ClCompile> | ||
21 | <ClCompile Include="CondUtilTest.cpp"> | ||
22 | <Filter>Source Files</Filter> | ||
23 | </ClCompile> | ||
24 | <ClCompile Include="DictUtilTest.cpp"> | ||
25 | <Filter>Source Files</Filter> | ||
26 | </ClCompile> | ||
27 | <ClCompile Include="DirUtilTests.cpp"> | ||
28 | <Filter>Source Files</Filter> | ||
29 | </ClCompile> | ||
30 | <ClCompile Include="FileUtilTest.cpp"> | ||
31 | <Filter>Source Files</Filter> | ||
32 | </ClCompile> | ||
33 | <ClCompile Include="GuidUtilTest.cpp"> | ||
34 | <Filter>Source Files</Filter> | ||
35 | </ClCompile> | ||
36 | <ClCompile Include="IniUtilTest.cpp"> | ||
37 | <Filter>Source Files</Filter> | ||
38 | </ClCompile> | ||
39 | <ClCompile Include="MemUtilTest.cpp"> | ||
40 | <Filter>Source Files</Filter> | ||
41 | </ClCompile> | ||
42 | <ClCompile Include="MonUtilTest.cpp"> | ||
43 | <Filter>Source Files</Filter> | ||
44 | </ClCompile> | ||
45 | <ClCompile Include="PathUtilTest.cpp"> | ||
46 | <Filter>Source Files</Filter> | ||
47 | </ClCompile> | ||
48 | <ClCompile Include="StrUtilTest.cpp"> | ||
49 | <Filter>Source Files</Filter> | ||
50 | </ClCompile> | ||
51 | <ClCompile Include="UriUtilTest.cpp"> | ||
52 | <Filter>Source Files</Filter> | ||
53 | </ClCompile> | ||
54 | <ClCompile Include="VarHelpers.cpp"> | ||
55 | <Filter>Source Files</Filter> | ||
56 | </ClCompile> | ||
57 | <ClCompile Include="VarUtilTest.cpp"> | ||
58 | <Filter>Source Files</Filter> | ||
59 | </ClCompile> | ||
60 | </ItemGroup> | ||
61 | <ItemGroup> | ||
62 | <ResourceCompile Include="UnitTest.rc"> | ||
63 | <Filter>Resource Files</Filter> | ||
64 | </ResourceCompile> | ||
65 | </ItemGroup> | ||
66 | <ItemGroup> | ||
67 | <ClInclude Include="precomp.h"> | ||
68 | <Filter>Header Files</Filter> | ||
69 | </ClInclude> | ||
70 | <ClInclude Include="error.h"> | ||
71 | <Filter>Header Files</Filter> | ||
72 | </ClInclude> | ||
73 | <ClInclude Include="VarHelpers.h"> | ||
74 | <Filter>Header Files</Filter> | ||
75 | </ClInclude> | ||
76 | </ItemGroup> | ||
77 | </Project> \ No newline at end of file | ||