/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Common.SelfContained.props
15 строк
589 B
Clint Rutkas
Consolidation for self contained, built on #34055 (#34134)
06 авг 2024, 00:29
Не верифицирован
06 авг 2024, 00:29
fd706de
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <!-- Some items may be set in Directory.Build.props in root --> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <SelfContained>true</SelfContained> </PropertyGroup> <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> </Project>