2022-05-04 19:05:06 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
2022-10-25 19:32:42 -07:00
|
|
|
<TargetFrameworks>net48</TargetFrameworks>
|
2022-05-04 19:05:06 -07:00
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
<UseWPF>true</UseWPF>
|
2023-08-17 22:28:55 -07:00
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
2022-05-04 19:05:06 -07:00
|
|
|
<ApplicationIcon>App.ico</ApplicationIcon>
|
|
|
|
<Company>sourcegit</Company>
|
|
|
|
<Description>OpenSource GIT client for Windows</Description>
|
2023-07-14 00:30:35 -07:00
|
|
|
<Copyright>Copyright © sourcegit 2023. All rights reserved.</Copyright>
|
2022-05-04 19:05:06 -07:00
|
|
|
<ApplicationManifest>App.manifest</ApplicationManifest>
|
2023-08-25 02:41:56 -07:00
|
|
|
<Version>6.6</Version>
|
2022-05-04 19:05:06 -07: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 00:00:27 -07:00
|
|
|
<ItemGroup>
|
|
|
|
<Resource Include="App.ico" />
|
|
|
|
</ItemGroup>
|
2022-10-25 19:32:42 -07:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="System.Text.Json" Version="6.0.6" />
|
|
|
|
</ItemGroup>
|
2020-07-05 19:23:45 -07:00
|
|
|
</Project>
|