Complete Linux platform implementation for .NET MAUI with:
- 35+ Skia-rendered controls (Button, Label, Entry, CarouselView, etc.)
- Platform services (Clipboard, FilePicker, Notifications, DragDrop, etc.)
- Accessibility support (AT-SPI2, High Contrast)
- HiDPI and Input Method support
- 216 unit tests
- CI/CD workflows
- Project templates
- Documentation
🤖 Generated with Claude Code
28 lines
838 B
XML
28 lines
838 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<RootNamespace>MauiLinuxApp</RootNamespace>
|
|
<AssemblyName>MauiLinuxApp</AssemblyName>
|
|
<ApplicationTitle>MauiLinuxApp</ApplicationTitle>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- .NET MAUI Linux Platform -->
|
|
<PackageReference Include="Microsoft.Maui.Controls.Linux" Version="1.0.0-preview.4" />
|
|
|
|
<!-- Core MAUI packages -->
|
|
<PackageReference Include="Microsoft.Maui.Controls" Version="9.0.40" />
|
|
<PackageReference Include="Microsoft.Maui.Graphics" Version="9.0.40" />
|
|
</ItemGroup>
|
|
|
|
<!-- Embed Resources -->
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\**\*" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|