2024-02-14 23:32:20 +01:00
|
|
|
|
<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 net7.0-windows TFM, one for MacOS with net7.0-macos and one with net7.0 TFM for Linux.-->
|
2024-02-27 13:47:37 +01:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-02-14 23:32:20 +01:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-02-18 21:51:15 +01:00
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.0.9" />
|
2024-02-14 23:32:20 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Borepin\Borepin.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|