diff options
Diffstat (limited to 'src/test/BurnUnitTest/BurnUnitTest.vcxproj')
-rw-r--r-- | src/test/BurnUnitTest/BurnUnitTest.vcxproj | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/src/test/BurnUnitTest/BurnUnitTest.vcxproj b/src/test/BurnUnitTest/BurnUnitTest.vcxproj new file mode 100644 index 00000000..5157d0d6 --- /dev/null +++ b/src/test/BurnUnitTest/BurnUnitTest.vcxproj | |||
@@ -0,0 +1,60 @@ | |||
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>{9D1F1BA3-9393-4833-87A3-D5F1FC08EF67}</ProjectGuid> | ||
19 | <RootNamespace>UnitTest</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;$(WixRoot)src\burn\inc;$(WixRoot)src\burn\engine;$(WixRoot)src\libs\deputil\inc</ProjectAdditionalIncludeDirectories> | ||
28 | <ProjectAdditionalLinkLibraries>cabinet.lib;crypt32.lib;msi.lib;rpcrt4.lib;shlwapi.lib;wininet.lib;wintrust.lib;dutil.lib;deputil.lib;engine.lib;gdiplus.lib</ProjectAdditionalLinkLibraries> | ||
29 | </PropertyGroup> | ||
30 | <ItemGroup> | ||
31 | <ClCompile Include="AssemblyInfo.cpp" /> | ||
32 | <ClCompile Include="ElevationTest.cpp" /> | ||
33 | <ClCompile Include="ManifestHelpers.cpp" /> | ||
34 | <ClCompile Include="ManifestTest.cpp" /> | ||
35 | <ClCompile Include="RegistrationTest.cpp" /> | ||
36 | <ClCompile Include="SearchTest.cpp" /> | ||
37 | <ClCompile Include="CacheTest.cpp" /> | ||
38 | <ClCompile Include="VariableHelpers.cpp" /> | ||
39 | <ClCompile Include="VariableTest.cpp" /> | ||
40 | </ItemGroup> | ||
41 | <ItemGroup> | ||
42 | <ClInclude Include="BurnTestException.h" /> | ||
43 | <ClInclude Include="BurnTestFixture.h" /> | ||
44 | <ClInclude Include="BurnUnitTest.h" /> | ||
45 | <ClInclude Include="ManifestHelpers.h" /> | ||
46 | <ClInclude Include="precomp.h" /> | ||
47 | <ClInclude Include="VariableHelpers.h" /> | ||
48 | </ItemGroup> | ||
49 | <ItemGroup> | ||
50 | <ResourceCompile Include="BurnUnitTest.rc" /> | ||
51 | </ItemGroup> | ||
52 | <ItemGroup> | ||
53 | <Reference Include="System" /> | ||
54 | <ProjectReference Include="..\..\WixTestTools\WixTestTools.csproj" /> | ||
55 | <Reference Include="xunit, Version=1.9.2.1705, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> | ||
56 | <HintPath>$(XunitPath)\xunit.dll</HintPath> | ||
57 | </Reference> | ||
58 | </ItemGroup> | ||
59 | <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.targets" /> | ||
60 | </Project> | ||