mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
30 lines
No EOL
1.5 KiB
XML
30 lines
No EOL
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net48</TargetFrameworks>
|
|
<OutputType>WinExe</OutputType>
|
|
<UseWPF>true</UseWPF>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ApplicationIcon>App.ico</ApplicationIcon>
|
|
<Company>sourcegit</Company>
|
|
<Description>OpenSource GIT client for Windows</Description>
|
|
<Copyright>Copyright © sourcegit 2023. All rights reserved.</Copyright>
|
|
<ApplicationManifest>App.manifest</ApplicationManifest>
|
|
<Version>6.6</Version>
|
|
<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>
|
|
</PropertyGroup>
|
|
<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>
|
|
</Project> |