Files
highminded/highminded.csproj
2025-07-05 21:10:18 +05:30

55 lines
2.7 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ApplicationIcon>assets\highminded.ico</ApplicationIcon>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
</PropertyGroup>
<PropertyGroup>
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<PublishReadyToRun>true</PublishReadyToRun>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<DeleteExistingFiles>true</DeleteExistingFiles>
<RuntimeIdentifiers>win-x64;osx-arm64;osx-x64</RuntimeIdentifiers>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.2"/>
<PackageReference Include="Avalonia.Desktop" Version="11.3.2"/>
<PackageReference Include="Avalonia.HtmlRenderer" Version="11.2.0"/>
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.2"/>
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.2"/>
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.2">
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0"/>
<PackageReference Include="IconPacks.Avalonia" Version="1.0.0"/>
<PackageReference Include="IconPacks.Avalonia.Lucide" Version="1.0.0"/>
<PackageReference Include="Markdig" Version="0.41.3"/>
<PackageReference Include="Markdown.ColorCode" Version="3.0.0"/>
<PackageReference Include="OpenAI" Version="2.2.0-beta.4"/>
<PackageReference Include="SharpHook" Version="6.1.2"/>
<PackageReference Include="SharpHook.Reactive" Version="6.1.2"/>
<PackageReference Include="SoundFlow" Version="1.1.1"/>
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="assets\**"/>
</ItemGroup>
<ItemGroup>
<Compile Update="ui\windows\MainWindow.axaml.cs">
<DependentUpon>MainWindow.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
</Project>