2022-05-05 10:05:06 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
2022-10-26 10:32:42 +08:00
|
|
|
<TargetFrameworks>net48</TargetFrameworks>
|
2022-05-05 10:05:06 +08:00
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
<UseWPF>true</UseWPF>
|
2023-08-18 13:28:55 +08:00
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
2022-05-05 10:05:06 +08:00
|
|
|
<ApplicationIcon>App.ico</ApplicationIcon>
|
|
|
|
<Company>sourcegit</Company>
|
|
|
|
<Description>OpenSource GIT client for Windows</Description>
|
2023-07-14 15:30:35 +08:00
|
|
|
<Copyright>Copyright © sourcegit 2023. All rights reserved.</Copyright>
|
2022-05-05 10:05:06 +08:00
|
|
|
<ApplicationManifest>App.manifest</ApplicationManifest>
|
2023-08-25 17:41:56 +08:00
|
|
|
<Version>6.6</Version>
|
2022-05-05 10:05:06 +08:00
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
<StartupObject>SourceGit.App</StartupObject>
|
|
|
|
<PackageProjectUrl>https://github.com/sourcegit-scm/sourcegit.git</PackageProjectUrl>
|
|
|
|
<RepositoryUrl>https://github.com/sourcegit-scm/sourcegit.git</RepositoryUrl>
|
|
|
|
<RepositoryType>Public</RepositoryType>
|
|
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
|
|
|
<SatelliteResourceLanguages>none</SatelliteResourceLanguages>
|
|
|
|
</PropertyGroup>
|
2023-07-18 15:00:27 +08:00
|
|
|
<ItemGroup>
|
|
|
|
<Resource Include="App.ico" />
|
|
|
|
</ItemGroup>
|
2022-10-26 10:32:42 +08:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="System.Text.Json" Version="6.0.6" />
|
|
|
|
</ItemGroup>
|
2020-07-06 10:23:45 +08:00
|
|
|
</Project>
|