/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/powerdisplay/PowerDisplay.Lib/PowerDisplay.Lib.csproj
45 строк
2 KB
moooyo
PowerDisplay: Pace and retry the maximum-compatibility VCP probe (#49579)
30 июл 2026, 12:55
Не верифицирован
30 июл 2026, 12:55
bc2d09a
Код
Авторство
О чём код?
<!-- Copyright (c) Microsoft Corporation. All rights reserved. --> <!-- Licensed under the MIT License. See LICENSE file in the project root for license information. --> <Project Sdk="Microsoft.NET.Sdk"> <!-- Look at Directory.Build.props in root for common stuff as well --> <Import Project="..\..\..\Common.Dotnet.CsWinRT.props" /> <Import Project="..\..\..\Common.Dotnet.AotCompatibility.props" /> <PropertyGroup> <OutputType>Library</OutputType> <RootNamespace>PowerDisplay.Common</RootNamespace> <Platforms>x64;ARM64</Platforms> <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <Nullable>enable</Nullable> <AssemblyName>PowerDisplay.Lib</AssemblyName> </PropertyGroup> <!-- Native AOT Configuration --> <PropertyGroup> <PublishSingleFile>false</PublishSingleFile> <DisableRuntimeMarshalling>false</DisableRuntimeMarshalling> <IsAotCompatible>true</IsAotCompatible> <TrimmerSingleWarn>false</TrimmerSingleWarn> <SuppressTrimAnalysisWarnings>false</SuppressTrimAnalysisWarnings> </PropertyGroup> <ItemGroup> <InternalsVisibleTo Include="PowerDisplay.Lib.UnitTests" /> </ItemGroup> <ItemGroup> <PackageReference Include="WmiLight" /> <PackageReference Include="Microsoft.Windows.CsWin32"> <PrivateAssets>all</PrivateAssets> </PackageReference> </ItemGroup> <ItemGroup> <!-- Hide build log files from Solution Explorer --> <None Remove="*.log" /> <None Remove="*.binlog" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\..\..\common\ManagedCommon\ManagedCommon.csproj" /> <ProjectReference Include="..\..\..\common\ManagedCsWin32\ManagedCsWin32.csproj" /> <ProjectReference Include="..\..\..\common\interop\PowerToys.Interop.vcxproj" /> <ProjectReference Include="..\PowerDisplay.Models\PowerDisplay.Models.csproj" /> </ItemGroup> </Project>