Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion src/Controls/tests/ManualTests/Controls.ManualTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>

<!-- Use XAML Source Generator for better performance and debugging -->
<MauiXamlInflator>SourceGen</MauiXamlInflator>
</PropertyGroup>

<PropertyGroup>
Expand Down Expand Up @@ -85,7 +88,12 @@
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>

<Import Project="$(MauiSrcDirectory)Maui.InTree.props" Condition=" '$(UseMaui)' != 'true' " />

<ItemGroup>
<!-- Suppress CS0612 (obsolete) for XAML files using deprecated NamedSize FontSize values -->
<MauiXaml Update="Views\HeadersAndFooters\HeaderFooterAddClearPage.xaml" NoWarn="0612" />
</ItemGroup>

</Project>
Loading