Files
harmonia/Harmonia.UI.Desktop/Harmonia.UI.Desktop.csproj
2026-01-25 17:17:31 -05:00

20 lines
730 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<!--If you are willing to use Windows/MacOS native APIs you will need to create 3 projects.
One for Windows with net8.0-windows TFM, one for MacOS with net8.0-macos and one with net8.0 TFM for Linux.-->
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia.Desktop" Version="11.3.7" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Harmonia.UI\Harmonia.UI.csproj" />
</ItemGroup>
</Project>