/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/Files.App.UITests/Files.App.UITests.csproj
39 строк
2 KB
Leo Carvalho
Code Quality: Fixed typo in Files.App.UITests.csproj (#17652)
19 сен 2025, 00:03
Не верифицирован
19 сен 2025, 00:03
53466f5
Код
Авторство
О чём код?
<!-- Copyright (c) Files Community. Licensed under the MIT License. --> <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>WinExe</OutputType> <TargetFramework>$(WindowsTargetFramework)</TargetFramework> <TargetPlatformMinVersion>$(MinimalWindowsVersion)</TargetPlatformMinVersion> <PublishProfile>win-$(Platform).pubxml</PublishProfile> <UseWinUI>true</UseWinUI> <EnableMsixTooling>true</EnableMsixTooling> <ApplicationManifest>app.manifest</ApplicationManifest> <Nullable>enable</Nullable> <Configurations>Debug;Release</Configurations> <Platforms>x86;x64;arm64</Platforms> <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> </PropertyGroup> <ItemGroup> <Manifest Include="$(ApplicationManifest)" /> <Content Include="Assets\**\*.png" /> <Content Include="Data\**\*.png" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\..\src\Files.App.Controls\Files.App.Controls.csproj" /> <PackageReference Include="Microsoft.Windows.SDK.BuildTools" /> <PackageReference Include="Microsoft.WindowsAppSDK" /> </ItemGroup> <!-- Allows the Single-project MSIX Packaging Tools extension to be activated for this project even if the Windows App SDK Nuget package has not yet been restored. --> <ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'"> <ProjectCapability Include="Msix" /> </ItemGroup> <!-- Allows the Solution Explorer "Package and Publish" context menu entry to be enabled for this project even if the Windows App SDK Nuget package has not yet been restored. --> <PropertyGroup Condition="'$(DisableHasPackageAndPublishMenuAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'"> <HasPackageAndPublishMenu>true</HasPackageAndPublishMenu> </PropertyGroup> </Project>