sourcegit/src/SourceGit.csproj

23 lines
1.1 KiB
XML
Raw Normal View History

2022-05-04 19:05:06 -07:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net48</TargetFrameworks>
2022-05-04 19:05:06 -07:00
<OutputType>WinExe</OutputType>
<UseWPF>true</UseWPF>
<ApplicationIcon>App.ico</ApplicationIcon>
<Company>sourcegit</Company>
<Description>OpenSource GIT client for Windows</Description>
2022-05-20 01:03:43 -07:00
<Copyright>Copyright © sourcegit 2022. All rights reserved.</Copyright>
2022-05-04 19:05:06 -07:00
<ApplicationManifest>App.manifest</ApplicationManifest>
2022-10-21 02:04:46 -07:00
<Version>6.2</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>
<ItemGroup>
<PackageReference Include="System.Text.Json" Version="6.0.6" />
</ItemGroup>
2020-07-05 19:23:45 -07:00
</Project>