mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
22 lines
No EOL
947 B
XML
22 lines
No EOL
947 B
XML
<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>
|
|
<Version>1.4</Version>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<Prefer32Bit>true</Prefer32Bit>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Resource Include="App.ico" />
|
|
</ItemGroup>
|
|
</Project> |