/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/ShortcutGuide/ShortcutGuide.UnitTests/ShortcutGuide.UnitTests.csproj
24 строки
958 B
Bryce Cindrich
feat(shortcut-guide): add Postman manifest and fix numbered-key display (#48461)
22 июн 2026, 07:40
Не верифицирован
22 июн 2026, 07:40
a0e53de
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <!-- Look at Directory.Build.props in root for common stuff as well --> <Import Project="$(RepoRoot)src\Common.Dotnet.CsWinRT.props" /> <PropertyGroup> <SelfContained>true</SelfContained> <RuntimeIdentifier Condition="'$(Platform)' == 'x64'">win-x64</RuntimeIdentifier> <RuntimeIdentifier Condition="'$(Platform)' == 'ARM64'">win-arm64</RuntimeIdentifier> <IsPackable>false</IsPackable> <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> <OutputPath>$(SolutionDir)$(Platform)\$(Configuration)\tests\ShortcutGuide.UnitTests\</OutputPath> <OutputType>Exe</OutputType> </PropertyGroup> <ItemGroup> <PackageReference Include="MSTest" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\ShortcutGuide.Ui\ShortcutGuide.Ui.csproj" /> </ItemGroup> </Project>