|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64;osx-arm64</RuntimeIdentifiers>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
|
|
|
<ApplicationIcon>./Assets/Icon.ico</ApplicationIcon>
|
|
|
|
<Version>2.3.0-dev.1</Version>
|
|
|
|
<InformationalVersion>$(Version)</InformationalVersion>
|
|
|
|
<EnableWindowsTargeting>true</EnableWindowsTargeting>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="AsyncImageLoader.Avalonia" Version="3.0.0" />
|
|
|
|
<PackageReference Include="Avalonia" Version="11.0.2" />
|
|
|
|
<PackageReference Include="Avalonia.AvaloniaEdit" Version="11.0.0" />
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.0.2" />
|
|
|
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.2" />
|
|
|
|
<!--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.2" />
|
|
|
|
<PackageReference Include="Avalonia.Xaml.Behaviors" Version="11.0.0.1" />
|
|
|
|
<PackageReference Include="AvaloniaEdit.TextMate" Version="11.0.0" />
|
|
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1" />
|
|
|
|
<PackageReference Include="DiscordRichPresence" Version="1.2.1.24" />
|
|
|
|
<PackageReference Include="FluentAvaloniaUI" Version="2.0.0" />
|
|
|
|
<PackageReference Include="FluentIcons.Avalonia" Version="1.1.207" />
|
|
|
|
<PackageReference Include="FluentIcons.FluentAvalonia" Version="1.1.207" />
|
|
|
|
<PackageReference Include="FuzzySharp" Version="2.0.2" />
|
|
|
|
<PackageReference Include="Markdown.Avalonia" Version="11.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="7.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="7.0.8" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="7.0.0" />
|
|
|
|
<PackageReference Include="Nito.AsyncEx" Version="5.1.2" />
|
|
|
|
<PackageReference Include="NLog" Version="5.2.2" />
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.2" />
|
|
|
|
<PackageReference Include="Polly" Version="7.2.4" />
|
|
|
|
<PackageReference Include="Polly.Contrib.WaitAndRetry" Version="1.1.1" />
|
|
|
|
<PackageReference Include="Polly.Extensions.Http" Version="3.0.0" />
|
|
|
|
<PackageReference Include="Projektanker.Icons.Avalonia.FontAwesome" Version="6.6.0" />
|
|
|
|
<PackageReference Include="Sentry" Version="3.33.1" />
|
|
|
|
<PackageReference Include="Sentry.NLog" Version="3.33.1" />
|
|
|
|
<PackageReference Include="TextMateSharp.Grammars" Version="1.0.55" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<AvaloniaResource Include="Assets\Icon.ico" />
|
|
|
|
<AvaloniaResource Include="Assets\Icon.png" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\StabilityMatrix.Core\StabilityMatrix.Core.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<AvaloniaResource Include="Assets\noimage.png" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<AvaloniaResource Include="Assets\licenses.json" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<AvaloniaResource Include="Assets\sitecustomize.py" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<!-- Only for win-64 -->
|
|
|
|
<AvaloniaResource Include="Assets\win-x64\**" Condition="'$(RuntimeIdentifier)' == 'win-x64'" />
|
|
|
|
<!-- Only for linux-64 -->
|
|
|
|
<AvaloniaResource Include="Assets\linux-x64\**" Condition="'$(RuntimeIdentifier)' == 'linux-x64'" />
|
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|