2
0
Files
maui-linux-samples/WebViewDemo/WebViewDemo.csproj

40 lines
1.1 KiB
XML
Raw Normal View History

2026-01-11 10:37:01 -05:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
2026-01-11 12:33:48 -05:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2026-01-17 05:42:44 +00:00
<!-- Application Info -->
<ApplicationTitle>OpenMaui WebView Demo</ApplicationTitle>
<ApplicationId>com.openmaui.webviewdemo</ApplicationId>
<ApplicationVersion>1.0.0</ApplicationVersion>
<!-- MAUI Settings -->
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<EnableDefaultXamlItems>true</EnableDefaultXamlItems>
<!-- Linux Runtime -->
<RuntimeIdentifiers>linux-x64;linux-arm64</RuntimeIdentifiers>
2026-01-11 10:37:01 -05:00
</PropertyGroup>
<ItemGroup>
2026-01-17 05:42:44 +00:00
<!-- OpenMaui Linux Platform (local development reference) -->
2026-01-11 12:33:48 -05:00
<ProjectReference Include="../../maui-linux/OpenMaui.Controls.Linux.csproj" />
2026-01-11 10:37:01 -05:00
</ItemGroup>
2026-01-17 05:42:44 +00:00
<!-- XAML Files -->
<ItemGroup>
<MauiXaml Update="**/*.xaml" />
</ItemGroup>
<!-- Embedded Resources (icons) -->
2026-01-11 13:34:36 -05:00
<ItemGroup>
<EmbeddedResource Include="Resources\Images\*.svg" />
</ItemGroup>
2026-01-11 10:37:01 -05:00
</Project>