40 lines
1.2 KiB
XML
40 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<RootNamespace>$safeprojectname$</RootNamespace>
|
|
<AssemblyName>$safeprojectname$</AssemblyName>
|
|
<ApplicationTitle>$projectname$</ApplicationTitle>
|
|
|
|
<!-- Linux Runtime -->
|
|
<RuntimeIdentifiers>linux-x64;linux-arm64</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
|
<DefineConstants>$(DefineConstants);DEBUG</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<SelfContained>true</SelfContained>
|
|
<PublishTrimmed>false</PublishTrimmed>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- OpenMaui Linux Platform -->
|
|
<PackageReference Include="OpenMaui.Controls.Linux" Version="1.0.0-preview.*" />
|
|
|
|
<!-- Core MAUI packages -->
|
|
<PackageReference Include="Microsoft.Maui.Controls" Version="9.0.*" />
|
|
<PackageReference Include="Microsoft.Maui.Graphics" Version="9.0.*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\**\*" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|