tesses-cms/Tesses.CMS.Avalonia/Tesses.CMS.Avalonia.Desktop/Tesses.CMS.Avalonia.Desktop...

29 lines
1.3 KiB
XML
Raw Normal View History

2024-07-28 22:59:28 +00: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 net8.0-windows TFM, one for MacOS with net8.0-macos and one with net8.0 TFM for Linux.-->
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
</PropertyGroup>
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia.Desktop" Version="$(AvaloniaVersion)" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="$(AvaloniaVersion)" />
<PackageReference Include="LibVlcSharp.Avalonia" Version="3.8.5" />
<PackageReference Include="Tesses.VirtualFilesystem" Version="1.0.2" />
<PackageReference Include="Tesses.VirtualFilesystem.Base" Version="1.0.2" />
<PackageReference Include="Tesses.Virtualfilesystem.Local" Version="1.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Tesses.CMS.Avalonia\Tesses.CMS.Avalonia.csproj" />
</ItemGroup>
</Project>