sourcegit/src/SourceGit.csproj

30 lines
1.5 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>
<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>
2024-01-16 19:06:46 -08:00
<Version>7.0</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>
<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>
<ItemGroup>
<PackageReference Include="Costura.Fody" Version="5.7.0" PrivateAssets="All" />
<PackageReference Include="System.Text.Json" Version="7.0.3" />
</ItemGroup>
2020-07-05 19:23:45 -07:00
</Project>