mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
37 lines
1.8 KiB
XML
37 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<Version>1.0.0</Version>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Models\" />
|
|
<AvaloniaResource Include="Assets\**" />
|
|
<None Include="Localization\*.json" CopyToOutputDirectory="PreserveNewest" />
|
|
<None Include="Extensions\Components\*.json" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="11.3.12" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.3.12" />
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.12" />
|
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.12" />
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
|
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.12">
|
|
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
|
|
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1" />
|
|
<PackageReference Include="FluentAvaloniaUI" Version="2.5.0" />
|
|
<PackageReference Include="FluentIcons.Avalonia" Version="2.0.319" />
|
|
<PackageReference Include="FluentIcons.Avalonia.Fluent" Version="2.0.319" />
|
|
<PackageReference Include="LibVLCSharp.Avalonia" Version="3.9.5" />
|
|
<PackageReference Include="System.Drawing.Common" Version="10.0.0" />
|
|
<PackageReference Include="VideoLAN.LibVLC.Windows" Version="3.0.23" />
|
|
</ItemGroup>
|
|
</Project>
|