40 lines
1.1 KiB
XML
40 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
<!-- 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>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- OpenMaui Linux Platform (local development reference) -->
|
|
<ProjectReference Include="../../maui-linux/OpenMaui.Controls.Linux.csproj" />
|
|
</ItemGroup>
|
|
|
|
<!-- XAML Files -->
|
|
<ItemGroup>
|
|
<MauiXaml Update="**/*.xaml" />
|
|
</ItemGroup>
|
|
|
|
<!-- Embedded Resources (icons) -->
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\Images\*.svg" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|