1<?xml version="1.0" encoding="utf-8"?> 2<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 4 <LocalDebuggerEnvironment>PATH=$(InstallDir)bin</LocalDebuggerEnvironment> 5 <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> 6 <LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> 7 </PropertyGroup> 8 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|Win32'"> 9 <LocalDebuggerEnvironment>PATH=$(InstallDir)bin</LocalDebuggerEnvironment> 10 <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> 11 <LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> 12 </PropertyGroup> 13 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 14 <LocalDebuggerEnvironment>PATH=$(InstallDirDbg)bin</LocalDebuggerEnvironment> 15 <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> 16 <LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> 17 </PropertyGroup> 18 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|Win32'"> 19 <LocalDebuggerEnvironment>PATH=$(InstallDirDbg)bin</LocalDebuggerEnvironment> 20 <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> 21 <LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> 22 </PropertyGroup> 23 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 24 <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> 25 <LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> 26 <LocalDebuggerEnvironment>PATH=$(InstallDirDbg)bin</LocalDebuggerEnvironment> 27 </PropertyGroup> 28 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|x64'"> 29 <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> 30 <LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> 31 <LocalDebuggerEnvironment>PATH=$(InstallDirDbg)bin</LocalDebuggerEnvironment> 32 </PropertyGroup> 33 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 34 <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> 35 <LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> 36 <LocalDebuggerEnvironment>PATH=$(InstallDir)bin</LocalDebuggerEnvironment> 37 </PropertyGroup> 38 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|x64'"> 39 <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> 40 <LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> 41 <LocalDebuggerEnvironment>PATH=$(InstallDir)bin</LocalDebuggerEnvironment> 42 </PropertyGroup> 43</Project>