2024-02-05 23:08:37 -08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
|
|
|
|
<ApplicationManifest>App.manifest</ApplicationManifest>
|
|
|
|
|
<ApplicationIcon>App.ico</ApplicationIcon>
|
|
|
|
|
<Version>8.0</Version>
|
|
|
|
|
<BuiltInComInteropSupport>false</BuiltInComInteropSupport>
|
|
|
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
|
|
|
|
<SuppressTrimAnalysisWarnings>true</SuppressTrimAnalysisWarnings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<AvaloniaResource Include="App.ico" />
|
|
|
|
|
<AvaloniaResource Include="Resources/Fonts/*" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-02-17 23:28:17 -08:00
|
|
|
|
<PackageReference Include="Avalonia" Version="11.0.9" />
|
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.0.9" />
|
|
|
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.9" />
|
|
|
|
|
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.0.9" />
|
|
|
|
|
<PackageReference Include="Avalonia.Diagnostics" Version="11.0.9" Condition="'$(Configuration)' == 'Debug'" />
|
2024-02-05 23:08:37 -08:00
|
|
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
|
|
|
|
|
<PackageReference Include="OneWare.AvaloniaEdit" Version="11.0.7" />
|
|
|
|
|
<PackageReference Include="OneWare.AvaloniaEdit.TextMate" Version="11.0.7" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<TrimmerRootAssembly Include="SourceGit" />
|
|
|
|
|
<TrimmerRootAssembly Include="Avalonia.Themes.Fluent" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|