PinToTaskbar.vcxproj (8959B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <Project DefaultTargets="Build" ToolsVersion="15.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 <ProjectConfiguration Include="Debug|x64"> 13 <Configuration>Debug</Configuration> 14 <Platform>x64</Platform> 15 </ProjectConfiguration> 16 <ProjectConfiguration Include="Release|x64"> 17 <Configuration>Release</Configuration> 18 <Platform>x64</Platform> 19 </ProjectConfiguration> 20 </ItemGroup> 21 <PropertyGroup Label="Globals"> 22 <VCProjectVersion>15.0</VCProjectVersion> 23 <ProjectGuid>{84fdfde2-893f-418f-a524-4b8dacf11eb6}</ProjectGuid> 24 <Keyword>Win32Proj</Keyword> 25 <RootNamespace>PinToTaskbar</RootNamespace> 26 <WindowsTargetPlatformVersion>10.0.15063.0</WindowsTargetPlatformVersion> 27 </PropertyGroup> 28 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 29 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 30 <ConfigurationType>DynamicLibrary</ConfigurationType> 31 <UseDebugLibraries>true</UseDebugLibraries> 32 <PlatformToolset>v143</PlatformToolset> 33 <CharacterSet>Unicode</CharacterSet> 34 </PropertyGroup> 35 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 36 <ConfigurationType>DynamicLibrary</ConfigurationType> 37 <UseDebugLibraries>false</UseDebugLibraries> 38 <PlatformToolset>v143</PlatformToolset> 39 <WholeProgramOptimization>true</WholeProgramOptimization> 40 <CharacterSet>Unicode</CharacterSet> 41 </PropertyGroup> 42 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 43 <ConfigurationType>DynamicLibrary</ConfigurationType> 44 <UseDebugLibraries>true</UseDebugLibraries> 45 <PlatformToolset>v143</PlatformToolset> 46 <CharacterSet>Unicode</CharacterSet> 47 </PropertyGroup> 48 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 49 <ConfigurationType>DynamicLibrary</ConfigurationType> 50 <UseDebugLibraries>false</UseDebugLibraries> 51 <PlatformToolset>v143</PlatformToolset> 52 <WholeProgramOptimization>true</WholeProgramOptimization> 53 <CharacterSet>Unicode</CharacterSet> 54 </PropertyGroup> 55 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 56 <ImportGroup Label="ExtensionSettings"> 57 </ImportGroup> 58 <ImportGroup Label="Shared"> 59 </ImportGroup> 60 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 61 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 62 </ImportGroup> 63 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 64 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 65 </ImportGroup> 66 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 67 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 68 </ImportGroup> 69 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 70 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 71 </ImportGroup> 72 <PropertyGroup Label="UserMacros" /> 73 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 74 <LinkIncremental>false</LinkIncremental> 75 </PropertyGroup> 76 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 77 <LinkIncremental>false</LinkIncremental> 78 </PropertyGroup> 79 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 80 <LinkIncremental>false</LinkIncremental> 81 </PropertyGroup> 82 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 83 <LinkIncremental>false</LinkIncremental> 84 </PropertyGroup> 85 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 86 <ClCompile> 87 <PrecompiledHeader>NotUsing</PrecompiledHeader> 88 <WarningLevel>Level3</WarningLevel> 89 <Optimization>Disabled</Optimization> 90 <SDLCheck>false</SDLCheck> 91 <PreprocessorDefinitions>WIN32;_DEBUG;EXECINEXPLORER_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions> 92 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> 93 <OmitDefaultLibName>true</OmitDefaultLibName> 94 <BufferSecurityCheck>false</BufferSecurityCheck> 95 <BasicRuntimeChecks>Default</BasicRuntimeChecks> 96 </ClCompile> 97 <Link> 98 <SubSystem>Windows</SubSystem> 99 <GenerateDebugInformation>true</GenerateDebugInformation> 100 <EntryPointSymbol>DllMain</EntryPointSymbol> 101 <LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration> 102 </Link> 103 </ItemDefinitionGroup> 104 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 105 <ClCompile> 106 <PrecompiledHeader>NotUsing</PrecompiledHeader> 107 <WarningLevel>Level3</WarningLevel> 108 <Optimization>Disabled</Optimization> 109 <SDLCheck>false</SDLCheck> 110 <PreprocessorDefinitions>_DEBUG;EXECINEXPLORER_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions> 111 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> 112 <OmitDefaultLibName>true</OmitDefaultLibName> 113 <BufferSecurityCheck>false</BufferSecurityCheck> 114 <BasicRuntimeChecks>Default</BasicRuntimeChecks> 115 </ClCompile> 116 <Link> 117 <SubSystem>Windows</SubSystem> 118 <GenerateDebugInformation>true</GenerateDebugInformation> 119 <EntryPointSymbol>DllMain</EntryPointSymbol> 120 <LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration> 121 </Link> 122 </ItemDefinitionGroup> 123 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 124 <ClCompile> 125 <PrecompiledHeader>NotUsing</PrecompiledHeader> 126 <WarningLevel>Level3</WarningLevel> 127 <Optimization>MaxSpeed</Optimization> 128 <FunctionLevelLinking>true</FunctionLevelLinking> 129 <IntrinsicFunctions>true</IntrinsicFunctions> 130 <SDLCheck>false</SDLCheck> 131 <PreprocessorDefinitions>WIN32;NDEBUG;EXECINEXPLORER_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions> 132 <RuntimeLibrary>MultiThreaded</RuntimeLibrary> 133 <OmitDefaultLibName>true</OmitDefaultLibName> 134 <BufferSecurityCheck>false</BufferSecurityCheck> 135 <WholeProgramOptimization>false</WholeProgramOptimization> 136 </ClCompile> 137 <Link> 138 <SubSystem>Windows</SubSystem> 139 <EnableCOMDATFolding>true</EnableCOMDATFolding> 140 <OptimizeReferences>true</OptimizeReferences> 141 <GenerateDebugInformation>false</GenerateDebugInformation> 142 <EntryPointSymbol>DllMain</EntryPointSymbol> 143 <LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration> 144 </Link> 145 </ItemDefinitionGroup> 146 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 147 <ClCompile> 148 <PrecompiledHeader>NotUsing</PrecompiledHeader> 149 <WarningLevel>Level3</WarningLevel> 150 <Optimization>MaxSpeed</Optimization> 151 <FunctionLevelLinking>true</FunctionLevelLinking> 152 <IntrinsicFunctions>true</IntrinsicFunctions> 153 <SDLCheck>false</SDLCheck> 154 <PreprocessorDefinitions>NDEBUG;EXECINEXPLORER_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions> 155 <RuntimeLibrary>MultiThreaded</RuntimeLibrary> 156 <OmitDefaultLibName>true</OmitDefaultLibName> 157 <BufferSecurityCheck>false</BufferSecurityCheck> 158 <WholeProgramOptimization>false</WholeProgramOptimization> 159 </ClCompile> 160 <Link> 161 <SubSystem>Windows</SubSystem> 162 <EnableCOMDATFolding>true</EnableCOMDATFolding> 163 <OptimizeReferences>true</OptimizeReferences> 164 <GenerateDebugInformation>false</GenerateDebugInformation> 165 <EntryPointSymbol>DllMain</EntryPointSymbol> 166 <LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration> 167 </Link> 168 </ItemDefinitionGroup> 169 <ItemGroup> 170 <ClCompile Include="PinToTaskbar.cpp" /> 171 </ItemGroup> 172 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 173 <ImportGroup Label="ExtensionTargets"> 174 </ImportGroup> 175 </Project>