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-10-10 02:39:33 -07:00
|
|
|
<Version>6.8</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>
|
2023-09-25 20:10:15 -07:00
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2022-05-04 19:05:06 -07:00
|
|
|
</PropertyGroup>
|
2023-07-18 00:00:27 -07:00
|
|
|
<ItemGroup>
|
|
|
|
<Resource Include="App.ico" />
|
|
|
|
</ItemGroup>
|
2022-10-25 19:32:42 -07:00
|
|
|
<ItemGroup>
|
2023-09-25 20:10:15 -07:00
|
|
|
<PackageReference Include="Costura.Fody" Version="5.7.0" PrivateAssets="All" />
|
|
|
|
<PackageReference Include="System.Text.Json" Version="7.0.3" />
|
2022-10-25 19:32:42 -07:00
|
|
|
</ItemGroup>
|
2020-07-05 19:23:45 -07:00
|
|
|
</Project>
|