mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
37 lines
1.9 KiB
XML
37 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<!--Avalonia doesen't support TrimMode=link currently,but we are working on that https://github.com/AvaloniaUI/Avalonia/issues/6892 -->
|
|
<TrimMode>copyused</TrimMode>
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
|
<LangVersion>default</LangVersion>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Models\" />
|
|
<AvaloniaResource Include="Assets\**" />
|
|
<None Remove=".gitignore" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<!--This helps with theme dll-s trimming.
|
|
If you will publish your application in self-contained mode with p:PublishTrimmed=true and it will use Fluent theme Default theme will be trimmed from the output and vice versa.
|
|
https://github.com/AvaloniaUI/Avalonia/issues/5593 -->
|
|
<TrimmableAssembly Include="Avalonia.Themes.Fluent" />
|
|
<TrimmableAssembly Include="Avalonia.Themes.Default" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="11.0.10" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.0.10" />
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
|
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.10" />
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.10" />
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.10" />
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.11.72" />
|
|
<PackageReference Include="ReactiveUI" Version="20.1.63" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\KfChatDotNetWsClient\KfChatDotNetWsClient.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|