1<?xml version="1.0" encoding="utf-8"?> 2<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <ItemGroup Label="ProjectConfigurations"> 4 <ProjectConfiguration Include="Debug|Win32"> 5 <Configuration>Debug</Configuration> 6 <Platform>Win32</Platform> 7 </ProjectConfiguration> 8 <ProjectConfiguration Include="Release|Win32"> 9 <Configuration>Release</Configuration> 10 <Platform>Win32</Platform> 11 </ProjectConfiguration> 12 </ItemGroup> 13 <PropertyGroup Label="Globals"> 14 <ProjectGuid>{655F4481-B461-4DF0-AF10-0D01114A26C1}</ProjectGuid> 15 <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion> 16 <RootNamespace>icuzdump</RootNamespace> 17 <Keyword>Win32Proj</Keyword> 18 </PropertyGroup> 19 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 20 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 21 <ConfigurationType>Application</ConfigurationType> 22 <CharacterSet>Unicode</CharacterSet> 23 <WholeProgramOptimization>true</WholeProgramOptimization> 24 </PropertyGroup> 25 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 26 <ConfigurationType>Application</ConfigurationType> 27 <CharacterSet>Unicode</CharacterSet> 28 </PropertyGroup> 29 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 30 <ImportGroup Label="ExtensionSettings"> 31 </ImportGroup> 32 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> 33 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 34 </ImportGroup> 35 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> 36 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 37 </ImportGroup> 38 <PropertyGroup Label="UserMacros" /> 39 <PropertyGroup> 40 <_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion> 41 <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">.\x86\Debug\</OutDir> 42 <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">.\x86\Debug\</IntDir> 43 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental> 44 <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir> 45 <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir> 46 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental> 47 </PropertyGroup> 48 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 49 <CustomBuildStep> 50 <Command>copy "$(TargetPath)" ..\..\..\bin 51</Command> 52 <Outputs>..\..\..\bin\$(TargetFileName);%(Outputs)</Outputs> 53 </CustomBuildStep> 54 <ClCompile> 55 <Optimization>Disabled</Optimization> 56 <AdditionalIncludeDirectories>..\..\..\include;..\toolutil;..\..\common;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 57 <PreprocessorDefinitions>WIN32;_DEBUG;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 58 <MinimalRebuild>false</MinimalRebuild> 59 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> 60 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> 61 <DisableLanguageExtensions>true</DisableLanguageExtensions> 62 <PrecompiledHeader> 63 </PrecompiledHeader> 64 <PrecompiledHeaderOutputFile>.\x86\Debug/icuzdump.pch</PrecompiledHeaderOutputFile> 65 <AssemblerListingLocation>.\x86\Debug/</AssemblerListingLocation> 66 <ObjectFileName>.\x86\Debug/</ObjectFileName> 67 <ProgramDataBaseFileName>.\x86\Debug/</ProgramDataBaseFileName> 68 <BrowseInformation>true</BrowseInformation> 69 <WarningLevel>Level3</WarningLevel> 70 <DebugInformationFormat>EditAndContinue</DebugInformationFormat> 71 <CompileAs>Default</CompileAs> 72 </ClCompile> 73 <Link> 74 <AdditionalDependencies>icuucd.lib;icuind.lib;icutud.lib;icuiod.lib;%(AdditionalDependencies)</AdditionalDependencies> 75 <OutputFile>.\x86\Debug/icuzdump.exe</OutputFile> 76 <AdditionalLibraryDirectories>..\..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> 77 <GenerateDebugInformation>true</GenerateDebugInformation> 78 <ProgramDatabaseFile>.\x86\Debug/icuzdump.pdb</ProgramDatabaseFile> 79 <SubSystem>Console</SubSystem> 80 <DataExecutionPrevention> 81 </DataExecutionPrevention> 82 <TargetMachine>NotSet</TargetMachine> 83 </Link> 84 </ItemDefinitionGroup> 85 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 86 <ClCompile> 87 <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 88 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 89 <PrecompiledHeader> 90 </PrecompiledHeader> 91 <WarningLevel>Level3</WarningLevel> 92 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> 93 </ClCompile> 94 <Link> 95 <GenerateDebugInformation>true</GenerateDebugInformation> 96 <SubSystem>Console</SubSystem> 97 <OptimizeReferences>true</OptimizeReferences> 98 <EnableCOMDATFolding>true</EnableCOMDATFolding> 99 <DataExecutionPrevention> 100 </DataExecutionPrevention> 101 <TargetMachine>MachineX86</TargetMachine> 102 </Link> 103 </ItemDefinitionGroup> 104 <ItemGroup> 105 <ClCompile Include="icuzdump.cpp" /> 106 </ItemGroup> 107 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 108 <ImportGroup Label="ExtensionTargets"> 109 </ImportGroup> 110</Project> 111