2024-03-20 00:36:10 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
2024-05-29 05:51:24 -07:00
|
|
|
|
<OutputType>WinExe</OutputType>
|
2024-03-20 00:36:10 -07:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
|
|
|
|
<ApplicationManifest>App.manifest</ApplicationManifest>
|
|
|
|
|
<ApplicationIcon>App.ico</ApplicationIcon>
|
2024-04-16 20:00:48 -07:00
|
|
|
|
<Version>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)\\..\\VERSION"))</Version>
|
2024-03-20 00:36:10 -07:00
|
|
|
|
<BuiltInComInteropSupport>false</BuiltInComInteropSupport>
|
|
|
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
|
|
|
|
<SuppressTrimAnalysisWarnings>true</SuppressTrimAnalysisWarnings>
|
2024-08-05 23:03:24 -07:00
|
|
|
|
|
2024-03-20 00:36:10 -07:00
|
|
|
|
<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>
|
|
|
|
|
|
2024-07-26 02:47:22 -07:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
|
|
|
<PublishAot>true</PublishAot>
|
|
|
|
|
<PublishTrimmed>true</PublishTrimmed>
|
|
|
|
|
<TrimMode>link</TrimMode>
|
|
|
|
|
<OptimizationPreference>Size</OptimizationPreference>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-03-20 00:36:10 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<AvaloniaResource Include="App.ico" />
|
2024-04-08 19:41:37 -07:00
|
|
|
|
<AvaloniaResource Include="Resources/Fonts/*" />
|
2024-08-02 03:06:45 -07:00
|
|
|
|
<AvaloniaResource Include="Resources/Images/*" />
|
|
|
|
|
<AvaloniaResource Include="Resources/Images/ExternalToolIcons/*" />
|
|
|
|
|
<AvaloniaResource Include="Resources/Images/ExternalToolIcons/JetBrains/*" />
|
|
|
|
|
<AvaloniaResource Include="Resources/Images/ShellIcons/*" />
|
2024-03-20 00:36:10 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-07-26 02:35:13 -07:00
|
|
|
|
<PackageReference Include="Avalonia" Version="11.1.1" />
|
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.1.1" />
|
|
|
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.1.1" />
|
|
|
|
|
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.1.1" />
|
2024-08-05 23:03:24 -07:00
|
|
|
|
<PackageReference Include="Avalonia.AvaloniaEdit" Version="11.1.0" />
|
2024-07-26 02:35:13 -07:00
|
|
|
|
<PackageReference Include="Avalonia.Diagnostics" Version="11.1.1" Condition="'$(Configuration)' == 'Debug'" />
|
2024-08-05 23:03:24 -07:00
|
|
|
|
<PackageReference Include="AvaloniaEdit.TextMate" Version="11.1.0" />
|
2024-03-20 00:36:10 -07:00
|
|
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
|
2024-08-05 23:03:24 -07:00
|
|
|
|
<PackageReference Include="TextMateSharp.Grammars" Version="1.0.60" />
|
2024-03-20 00:36:10 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<TrimmerRootAssembly Include="SourceGit" />
|
|
|
|
|
<TrimmerRootAssembly Include="Avalonia.Themes.Fluent" />
|
|
|
|
|
</ItemGroup>
|
2024-08-05 23:03:24 -07:00
|
|
|
|
|
2024-07-27 06:35:57 -07:00
|
|
|
|
<ItemGroup Condition="'$(Configuration)' == 'Release'">
|
2024-07-22 03:24:08 -07:00
|
|
|
|
<LinkerArg Include="-mmacosx-version-min=11.0" Condition="$([MSBuild]::IsOSPlatform('OSX'))"/>
|
|
|
|
|
</ItemGroup>
|
2024-07-27 06:35:57 -07:00
|
|
|
|
</Project>
|