mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
86 lines
3.6 KiB
XML
86 lines
3.6 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||
|
|
<PropertyGroup Label="Globals">
|
||
|
|
<VCProjectVersion>17.0</VCProjectVersion>
|
||
|
|
<Keyword>Win32Proj</Keyword>
|
||
|
|
<ProjectGuid>{9d52fd25-ef90-4f9a-a015-91efc5daf54f}</ProjectGuid>
|
||
|
|
<RootNamespace>FileLocksmithLib</RootNamespace>
|
||
|
|
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
||
|
|
</PropertyGroup>
|
||
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
|
||
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||
|
|
<PlatformToolset>v143</PlatformToolset>
|
||
|
|
<CharacterSet>Unicode</CharacterSet>
|
||
|
|
</PropertyGroup>
|
||
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
|
||
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||
|
|
<PlatformToolset>v143</PlatformToolset>
|
||
|
|
<CharacterSet>Unicode</CharacterSet>
|
||
|
|
</PropertyGroup>
|
||
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||
|
|
<ImportGroup Label="ExtensionSettings">
|
||
|
|
</ImportGroup>
|
||
|
|
<ImportGroup Label="Shared">
|
||
|
|
</ImportGroup>
|
||
|
|
<ImportGroup Label="PropertySheets">
|
||
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||
|
|
</ImportGroup>
|
||
|
|
<PropertyGroup Label="UserMacros" />
|
||
|
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
|
||
|
|
<ClCompile>
|
||
|
|
<WarningLevel>Level3</WarningLevel>
|
||
|
|
<SDLCheck>true</SDLCheck>
|
||
|
|
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||
|
|
<ConformanceMode>true</ConformanceMode>
|
||
|
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
||
|
|
<AdditionalIncludeDirectories>../../..;../..;</AdditionalIncludeDirectories>
|
||
|
|
</ClCompile>
|
||
|
|
<Link>
|
||
|
|
<SubSystem>
|
||
|
|
</SubSystem>
|
||
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||
|
|
</Link>
|
||
|
|
</ItemDefinitionGroup>
|
||
|
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
|
||
|
|
<ClCompile>
|
||
|
|
<WarningLevel>Level3</WarningLevel>
|
||
|
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||
|
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||
|
|
<SDLCheck>true</SDLCheck>
|
||
|
|
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||
|
|
<ConformanceMode>true</ConformanceMode>
|
||
|
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
||
|
|
<AdditionalIncludeDirectories>../../..;../..;</AdditionalIncludeDirectories>
|
||
|
|
</ClCompile>
|
||
|
|
<Link>
|
||
|
|
<SubSystem>
|
||
|
|
</SubSystem>
|
||
|
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||
|
|
<OptimizeReferences>true</OptimizeReferences>
|
||
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||
|
|
</Link>
|
||
|
|
</ItemDefinitionGroup>
|
||
|
|
<ItemGroup>
|
||
|
|
<ClInclude Include="Constants.h" />
|
||
|
|
<ClInclude Include="IPC.h" />
|
||
|
|
<ClInclude Include="Settings.h" />
|
||
|
|
<ClInclude Include="Trace.h" />
|
||
|
|
<ClInclude Include="framework.h" />
|
||
|
|
<ClInclude Include="pch.h" />
|
||
|
|
</ItemGroup>
|
||
|
|
<ItemGroup>
|
||
|
|
<ClCompile Include="IPC.cpp" />
|
||
|
|
<ClCompile Include="Settings.cpp" />
|
||
|
|
<ClCompile Include="Trace.cpp" />
|
||
|
|
<ClCompile Include="FileLocksmithLib.cpp" />
|
||
|
|
<ClCompile Include="pch.cpp">
|
||
|
|
<PrecompiledHeader>Create</PrecompiledHeader>
|
||
|
|
</ClCompile>
|
||
|
|
</ItemGroup>
|
||
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||
|
|
<ImportGroup Label="ExtensionTargets">
|
||
|
|
</ImportGroup>
|
||
|
|
</Project>
|