2021-06-23 15:48:54 +03:00
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion= "4.0" xmlns= "http://schemas.microsoft.com/developer/msbuild/2003" >
<!-- Project configurations -->
<!-- Props that should be disabled while building on CI server -->
2023-09-07 15:36:47 +07:00
<Import Project= "..\..\..\..\packages\Microsoft.Windows.CppWinRT.2.0.221104.6\build\native\Microsoft.Windows.CppWinRT.props" Condition= "Exists('..\..\..\..\packages\Microsoft.Windows.CppWinRT.2.0.221104.6\build\native\Microsoft.Windows.CppWinRT.props')" />
2021-06-23 15:48:54 +03:00
<ItemDefinitionGroup Condition= "'$(CIBuild)'!='true'" >
<ClCompile >
<MultiProcessorCompilation > true</MultiProcessorCompilation>
<PrecompiledHeader > Use</PrecompiledHeader>
</ClCompile>
</ItemDefinitionGroup>
<!-- C++ source compile - specific things for all configurations -->
<ItemDefinitionGroup >
<ClCompile >
<PrecompiledHeaderFile > pch.h</PrecompiledHeaderFile>
<WarningLevel > Level3</WarningLevel>
<ConformanceMode > false</ConformanceMode>
<TreatWarningAsError > true</TreatWarningAsError>
<LanguageStandard > stdcpplatest</LanguageStandard>
<AdditionalOptions > /await %(AdditionalOptions)</AdditionalOptions>
<PreprocessorDefinitions > _UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link >
<SubSystem > Windows</SubSystem>
</Link>
<Lib >
<TreatLibWarningAsErrors > true</TreatLibWarningAsErrors>
</Lib>
</ItemDefinitionGroup>
<!-- C++ source compile - specific things for Debug/Release configurations -->
2022-05-11 13:35:18 +03:00
<ItemDefinitionGroup Condition= "'$(Configuration)'=='Debug'" >
2021-06-23 15:48:54 +03:00
<ClCompile >
<PreprocessorDefinitions > _DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<Optimization > Disabled</Optimization>
<SDLCheck > true</SDLCheck>
<RuntimeLibrary > MultiThreadedDebug</RuntimeLibrary>
</ClCompile>
<Link >
<GenerateDebugInformation > true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
2022-05-11 13:35:18 +03:00
<ItemDefinitionGroup Condition= "'$(Configuration)'=='Release'" >
2021-06-23 15:48:54 +03:00
<ClCompile >
<PreprocessorDefinitions > NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<Optimization > MaxSpeed</Optimization>
<SDLCheck > false</SDLCheck>
<RuntimeLibrary > MultiThreaded</RuntimeLibrary>
<FunctionLevelLinking > true</FunctionLevelLinking>
<IntrinsicFunctions > true</IntrinsicFunctions>
</ClCompile>
<Link >
<GenerateDebugInformation > true</GenerateDebugInformation>
<EnableCOMDATFolding > true</EnableCOMDATFolding>
<OptimizeReferences > true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<!-- Global props -->
2022-08-27 02:17:20 +03:00
<PropertyGroup Label= "Globals" >
2021-06-23 15:48:54 +03:00
<VCProjectVersion > 16.0</VCProjectVersion>
<Keyword > Win32Proj</Keyword>
<ProjectGuid > {ff1d7936-842a-4bbb-8bea-e9fe796de700}</ProjectGuid>
<RootNamespace > FancyZones</RootNamespace>
</PropertyGroup>
<!-- Props that are constant for both Debug and Release configurations -->
<PropertyGroup Label= "Configuration" >
<ConfigurationType > Application</ConfigurationType>
2022-02-07 06:08:30 -08:00
<PlatformToolset > v143</PlatformToolset>
2021-06-23 15:48:54 +03:00
<CharacterSet > Unicode</CharacterSet>
<SpectreMitigation > Spectre</SpectreMitigation>
</PropertyGroup>
<Import Project= "$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2022-05-11 13:35:18 +03:00
<PropertyGroup Condition= "'$(Configuration)'=='Debug'" Label= "Configuration" >
2021-06-23 15:48:54 +03:00
<UseDebugLibraries > true</UseDebugLibraries>
<LinkIncremental > true</LinkIncremental>
</PropertyGroup>
2022-05-11 13:35:18 +03:00
<PropertyGroup Condition= "'$(Configuration)'=='Release'" Label= "Configuration" >
2021-06-23 15:48:54 +03:00
<UseDebugLibraries > false</UseDebugLibraries>
<WholeProgramOptimization > true</WholeProgramOptimization>
<LinkIncremental > false</LinkIncremental>
</PropertyGroup>
<Import Project= "$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label= "ExtensionSettings" >
</ImportGroup>
<ImportGroup Label= "Shared" >
</ImportGroup>
2022-05-11 13:35:18 +03:00
<ImportGroup Label= "PropertySheets" >
2021-06-23 15:48:54 +03:00
<Import Project= "$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition= "exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label= "LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label= "UserMacros" />
2022-05-11 13:35:18 +03:00
<PropertyGroup >
2021-06-23 15:48:54 +03:00
<TargetName > PowerToys.$(MSBuildProjectName)</TargetName>
2023-07-20 00:12:46 +01:00
<OutDir > ..\..\..\..\$(Platform)\$(Configuration)\</OutDir>
2021-06-23 15:48:54 +03:00
</PropertyGroup>
2022-05-11 13:35:18 +03:00
<PropertyGroup Condition= "'$(Configuration)'=='Debug'" >
<LinkIncremental > true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition= "'$(Configuration)'=='Release'" >
2021-06-23 15:48:54 +03:00
<LinkIncremental > false</LinkIncremental>
</PropertyGroup>
2022-05-11 13:35:18 +03:00
<ItemDefinitionGroup Condition= "'$(Configuration)'=='Debug'" >
2021-06-23 15:48:54 +03:00
<ClCompile >
<WarningLevel > Level3</WarningLevel>
<SDLCheck > true</SDLCheck>
<PreprocessorDefinitions > _DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode > true</ConformanceMode>
<AdditionalIncludeDirectories > ./../;$(SolutionDir)src\common\Telemetry;$(SolutionDir)src\common;$(SolutionDir)src\;./;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
<Link >
<SubSystem > Windows</SubSystem>
<GenerateDebugInformation > true</GenerateDebugInformation>
2022-07-01 17:29:02 +02:00
<AdditionalDependencies > shcore.lib;shlwapi.lib;DbgHelp.lib;uxtheme.lib;dwmapi.lib;wbemuuid.lib;%(AdditionalDependencies)</AdditionalDependencies>
2021-06-23 15:48:54 +03:00
</Link>
</ItemDefinitionGroup>
2022-05-11 13:35:18 +03:00
<ItemDefinitionGroup Condition= "'$(Configuration)'=='Release'" >
2021-06-23 15:48:54 +03:00
<ClCompile >
<WarningLevel > Level3</WarningLevel>
<FunctionLevelLinking > true</FunctionLevelLinking>
<IntrinsicFunctions > true</IntrinsicFunctions>
<SDLCheck > true</SDLCheck>
<PreprocessorDefinitions > NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode > true</ConformanceMode>
<AdditionalIncludeDirectories > ./../;$(SolutionDir)src\common\Telemetry;$(SolutionDir)src\common;$(SolutionDir)src\;./;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
<Link >
<SubSystem > Windows</SubSystem>
<EnableCOMDATFolding > true</EnableCOMDATFolding>
<OptimizeReferences > true</OptimizeReferences>
<GenerateDebugInformation > true</GenerateDebugInformation>
2022-07-01 17:29:02 +02:00
<AdditionalDependencies > shcore.lib;shlwapi.lib;DbgHelp.lib;uxtheme.lib;dwmapi.lib;wbemuuid.lib;%(AdditionalDependencies)</AdditionalDependencies>
2021-06-23 15:48:54 +03:00
</Link>
</ItemDefinitionGroup>
<ItemGroup >
<ClCompile Include= "FancyZonesApp.cpp" />
<ClCompile Include= "main.cpp" />
<ClCompile Include= "pch.cpp" >
2022-05-11 13:35:18 +03:00
<PrecompiledHeader > Create</PrecompiledHeader>
2021-06-23 15:48:54 +03:00
</ClCompile>
</ItemGroup>
<ItemGroup >
<ClInclude Include= "FancyZonesApp.h" />
<ClInclude Include= "pch.h" />
</ItemGroup>
<ItemGroup >
<None Include= "packages.config" />
</ItemGroup>
<ItemGroup >
<ResourceCompile Include= "..\FancyZonesLib\Generated Files\fancyzones.rc" />
</ItemGroup>
<ItemGroup >
<ProjectReference Include= "..\..\..\common\logger\logger.vcxproj" >
<Project > {d9b8fc84-322a-4f9f-bbb9-20915c47ddfd}</Project>
</ProjectReference>
2022-04-12 11:13:22 -04:00
<ProjectReference Include= "..\..\..\common\SettingsAPI\SettingsAPI.vcxproj" >
2021-11-09 22:48:07 +03:00
<Project > {6955446d-23f7-4023-9bb3-8657f904af99}</Project>
</ProjectReference>
2021-06-23 15:48:54 +03:00
<ProjectReference Include= "..\FancyZonesLib\FancyZonesLib.vcxproj" >
<Project > {f9c68edf-ac74-4b77-9af1-005d9c9f6a99}</Project>
</ProjectReference>
</ItemGroup>
<Import Project= "$(VCTargetsPath)\Microsoft.Cpp.targets" />
<Import Project= "..\..\..\..\deps\spdlog.props" />
<ImportGroup Label= "ExtensionTargets" >
2023-09-07 15:36:47 +07:00
<Import Project= "..\..\..\..\packages\Microsoft.Windows.CppWinRT.2.0.221104.6\build\native\Microsoft.Windows.CppWinRT.targets" Condition= "Exists('..\..\..\..\packages\Microsoft.Windows.CppWinRT.2.0.221104.6\build\native\Microsoft.Windows.CppWinRT.targets')" />
2024-01-16 02:51:45 -08:00
<Import Project= "..\..\..\..\packages\Microsoft.Windows.ImplementationLibrary.1.0.231216.1\build\native\Microsoft.Windows.ImplementationLibrary.targets" Condition= "Exists('..\..\..\..\packages\Microsoft.Windows.ImplementationLibrary.1.0.231216.1\build\native\Microsoft.Windows.ImplementationLibrary.targets')" />
2021-06-23 15:48:54 +03:00
</ImportGroup>
<Target Name= "EnsureNuGetPackageBuildImports" BeforeTargets= "PrepareForBuild" >
<PropertyGroup >
<ErrorText > This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
2023-09-07 15:36:47 +07:00
<Error Condition= "!Exists('..\..\..\..\packages\Microsoft.Windows.CppWinRT.2.0.221104.6\build\native\Microsoft.Windows.CppWinRT.props')" Text= "$([System.String]::Format('$(ErrorText)', '..\..\..\..\packages\Microsoft.Windows.CppWinRT.2.0.221104.6\build\native\Microsoft.Windows.CppWinRT.props'))" />
<Error Condition= "!Exists('..\..\..\..\packages\Microsoft.Windows.CppWinRT.2.0.221104.6\build\native\Microsoft.Windows.CppWinRT.targets')" Text= "$([System.String]::Format('$(ErrorText)', '..\..\..\..\packages\Microsoft.Windows.CppWinRT.2.0.221104.6\build\native\Microsoft.Windows.CppWinRT.targets'))" />
2024-01-16 02:51:45 -08:00
<Error Condition= "!Exists('..\..\..\..\packages\Microsoft.Windows.ImplementationLibrary.1.0.231216.1\build\native\Microsoft.Windows.ImplementationLibrary.targets')" Text= "$([System.String]::Format('$(ErrorText)', '..\..\..\..\packages\Microsoft.Windows.ImplementationLibrary.1.0.231216.1\build\native\Microsoft.Windows.ImplementationLibrary.targets'))" />
2021-06-23 15:48:54 +03:00
</Target>
</Project>