mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
57 lines
2.5 KiB
XML
57 lines
2.5 KiB
XML
<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.3</Version>
|
|
<BuiltInComInteropSupport>false</BuiltInComInteropSupport>
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
|
<SuppressTrimAnalysisWarnings>true</SuppressTrimAnalysisWarnings>
|
|
|
|
<Product>SourceGit</Product>
|
|
<Description>OpenSource GIT client</Description>
|
|
<Company>sourcegit-scm</Company>
|
|
<Copyright>Copyright © 2024 sourcegit-scm.</Copyright>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://github.com/sourcegit-scm/sourcegit.git</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/sourcegit-scm/sourcegit.git</RepositoryUrl>
|
|
<RepositoryType>Public</RepositoryType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Linux'))">
|
|
<DefineConstants>$(DefineConstants);USE_FONT_INTER</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<AvaloniaResource Include="App.ico" />
|
|
<AvaloniaResource Include="Resources/Fonts/*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="11.0.10" />
|
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.10" Condition="$([MSBuild]::IsOSPlatform('Linux'))" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.0.10" />
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.10" />
|
|
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.0.10" />
|
|
<PackageReference Include="Avalonia.AvaloniaEdit" Version="11.0.6" />
|
|
<PackageReference Include="Avalonia.Diagnostics" Version="11.0.10" Condition="'$(Configuration)' == 'Debug'" />
|
|
<PackageReference Include="AvaloniaEdit.TextMate" Version="11.0.6" />
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
|
|
<PackageReference Include="TextMateSharp.Grammars" Version="1.0.56" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<TrimmerRootAssembly Include="SourceGit" />
|
|
<TrimmerRootAssembly Include="Avalonia.Themes.Fluent" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Assets\Resources.*.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
</Project>
|