/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/LightSwitch/LightSwitchService/LightSwitchService.vcxproj
123 строки
6 KB
Boliang Zhang
Migrate spdlog from submodule to vcpkg (#48039)
27 май 2026, 10:45
Не верифицирован
27 май 2026, 10:45
8a7933c
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <Import Project="$(RepoRoot)packages\Microsoft.Windows.CppWinRT.2.0.250303.1\build\native\Microsoft.Windows.CppWinRT.props" Condition="Exists('$(RepoRoot)packages\Microsoft.Windows.CppWinRT.2.0.250303.1\build\native\Microsoft.Windows.CppWinRT.props')" /> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug|x64"> <Configuration>Debug</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Release|x64"> <Configuration>Release</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Debug|ARM64"> <Configuration>Debug</Configuration> <Platform>ARM64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Release|ARM64"> <Configuration>Release</Configuration> <Platform>ARM64</Platform> </ProjectConfiguration> </ItemGroup> <PropertyGroup Label="Globals"> <VCProjectVersion>17.0</VCProjectVersion> <Keyword>Win32Proj</Keyword> <ProjectGuid>{08e71c67-6a7e-4ca1-b04e-2fb336410bac}</ProjectGuid> <RootNamespace>LightSwitchService</RootNamespace> <WindowsTargetPlatformVersion>10.0.26100.0</WindowsTargetPlatformVersion> <ProjectName>LightSwitchService</ProjectName> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> <ConfigurationType>Application</ConfigurationType> <UseDebugLibraries>true</UseDebugLibraries> <CharacterSet>Unicode</CharacterSet> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> <ConfigurationType>Application</ConfigurationType> <UseDebugLibraries>false</UseDebugLibraries> <WholeProgramOptimization>true</WholeProgramOptimization> <CharacterSet>Unicode</CharacterSet> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <PropertyGroup> <OutDir>$(RepoRoot)$(Platform)\$(Configuration)\$(MSBuildProjectName)\</OutDir> <TargetName>PowerToys.LightSwitchService</TargetName> </PropertyGroup> <ItemDefinitionGroup> <ClCompile> <WarningLevel>Level3</WarningLevel> <SDLCheck>true</SDLCheck> <ConformanceMode>true</ConformanceMode> <PrecompiledHeader>NotUsing</PrecompiledHeader> <PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions> <AdditionalIncludeDirectories> ./../; ..\LightSwitchLib; ..\..\..\common; $(RepoRoot)src\common\logger; $(RepoRoot)src\common\utils; $(RepoRoot)src\common\SettingsAPI; $(RepoRoot)src\common\Telemetry; $(RepoRoot)src\; ./; %(AdditionalIncludeDirectories) </AdditionalIncludeDirectories> </ClCompile> <Link> <SubSystem>Windows</SubSystem> <GenerateDebugInformation>true</GenerateDebugInformation> <AdditionalDependencies>Advapi32.lib;%(AdditionalDependencies)</AdditionalDependencies> </Link> </ItemDefinitionGroup> <ItemGroup> <ClCompile Include="LightSwitchService.cpp" /> <ClCompile Include="LightSwitchSettings.cpp" /> <ClCompile Include="LightSwitchStateManager.cpp" /> <ClCompile Include="NightLightRegistryObserver.cpp" /> <ClCompile Include="SettingsConstants.cpp" /> <ClCompile Include="ThemeScheduler.cpp" /> <ClCompile Include="trace.cpp" /> <ClCompile Include="WinHookEventIDs.cpp" /> </ItemGroup> <ItemGroup> <ResourceCompile Include="LightSwitchService.rc" /> </ItemGroup> <ItemGroup> <ClInclude Include="LightSwitchSettings.h" /> <ClInclude Include="LightSwitchStateManager.h" /> <ClInclude Include="LightSwitchUtils.h" /> <ClInclude Include="NightLightRegistryObserver.h" /> <ClInclude Include="SettingsConstants.h" /> <ClInclude Include="SettingsObserver.h" /> <ClInclude Include="ThemeScheduler.h" /> <ClInclude Include="trace.h" /> <ClInclude Include="WinHookEventIDs.h" /> </ItemGroup> <ItemGroup> <ProjectReference Include="$(RepoRoot)src\common\ManagedCommon\ManagedCommon.csproj"> <Project>{4aed67b6-55fd-486f-b917-e543dee2cb3c}</Project> </ProjectReference> <ProjectReference Include="$(RepoRoot)src\common\SettingsAPI\SettingsAPI.vcxproj"> <Project>{6955446d-23f7-4023-9bb3-8657f904af99}</Project> </ProjectReference> <ProjectReference Include="$(RepoRoot)src\common\notifications\notifications.vcxproj"> <Project>{1d5be09d-78c0-4fd7-af00-ae7c1af7c525}</Project> </ProjectReference> <ProjectReference Include="$(RepoRoot)src\common\Telemetry\EtwTrace\EtwTrace.vcxproj"> <Project>{8f021b46-362b-485c-bfba-ccf83e820cbd}</Project> </ProjectReference> <ProjectReference Include="..\LightSwitchLib\LightSwitchLib.vcxproj"> <Project>{79267138-2895-4346-9021-21408d65379f}</Project> </ProjectReference> </ItemGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <Import Project="$(RepoRoot)deps\spdlog.props" /> <ImportGroup Label="ExtensionTargets"> <Import Project="$(RepoRoot)packages\Microsoft.Windows.ImplementationLibrary.1.0.260126.7\build\native\Microsoft.Windows.ImplementationLibrary.targets" Condition="Exists('$(RepoRoot)packages\Microsoft.Windows.ImplementationLibrary.1.0.260126.7\build\native\Microsoft.Windows.ImplementationLibrary.targets')" /> <Import Project="$(RepoRoot)packages\Microsoft.Windows.CppWinRT.2.0.250303.1\build\native\Microsoft.Windows.CppWinRT.targets" Condition="Exists('$(RepoRoot)packages\Microsoft.Windows.CppWinRT.2.0.250303.1\build\native\Microsoft.Windows.CppWinRT.targets')" /> </ImportGroup> </Project>