2021-04-29 05:05:55 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-08-06 01:01:10 -07:00
|
|
|
<PropertyGroup>
|
2021-08-08 23:21:47 -07:00
|
|
|
<TargetFrameworks>net5.0-windows;net48</TargetFrameworks>
|
2021-06-07 18:35:11 -07:00
|
|
|
<OutputType>WinExe</OutputType>
|
2020-08-06 01:01:10 -07:00
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
<ApplicationIcon>App.ico</ApplicationIcon>
|
|
|
|
<Company>sourcegit</Company>
|
|
|
|
<Description>OpenSource GIT client for Windows</Description>
|
2021-08-11 18:40:20 -07:00
|
|
|
<Copyright>Copyright © sourcegit 2021. All rights reserved.</Copyright>
|
2020-08-06 01:01:10 -07:00
|
|
|
<ApplicationManifest>App.manifest</ApplicationManifest>
|
2021-10-17 23:43:46 -07:00
|
|
|
<Version>5.4</Version>
|
2020-08-06 01:01:10 -07:00
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
<StartupObject>SourceGit.App</StartupObject>
|
|
|
|
<PackageProjectUrl>https://gitee.com/sourcegit/SourceGit.git</PackageProjectUrl>
|
|
|
|
<RepositoryUrl>https://gitee.com/sourcegit/SourceGit.git</RepositoryUrl>
|
|
|
|
<RepositoryType>Public</RepositoryType>
|
|
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
2020-12-13 21:02:22 -08:00
|
|
|
<SatelliteResourceLanguages>none</SatelliteResourceLanguages>
|
2020-12-13 18:47:55 -08:00
|
|
|
</PropertyGroup>
|
2021-08-08 23:21:47 -07:00
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net48'">
|
|
|
|
<PackageReference Include="System.Text.Json" Version="5.0.2" />
|
|
|
|
</ItemGroup>
|
2020-07-05 19:23:45 -07:00
|
|
|
</Project>
|