2020-07-12 07:24:59 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net46</TargetFramework>
|
|
|
|
|
<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 2020. All rights reserved.</Copyright>
|
|
|
|
|
<ApplicationManifest>App.manifest</ApplicationManifest>
|
2020-07-29 23:51:40 -07:00
|
|
|
|
<Version>1.4</Version>
|
2020-07-12 07:24:59 -07:00
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
|
</PropertyGroup>
|
2020-07-19 20:45:01 -07:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
<Prefer32Bit>true</Prefer32Bit>
|
|
|
|
|
</PropertyGroup>
|
2020-07-12 07:24:59 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Resource Include="App.ico" />
|
|
|
|
|
</ItemGroup>
|
2020-07-05 19:23:45 -07:00
|
|
|
|
</Project>
|