-
Notifications
You must be signed in to change notification settings - Fork 17
/
strans.csproj
38 lines (33 loc) · 1.58 KB
/
strans.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
<RuntimeFrameworkVersion>2.2</RuntimeFrameworkVersion>
<Version>0.0.5</Version>
<ToolCommandName>strans</ToolCommandName>
<Authors>Inventitech</Authors>
<RepositoryUrl>https://github.com/Inventitech/strans.git</RepositoryUrl>
<Copyright>Copyright (C) 2019 Moritz Beller (Inventitech)</Copyright>
<RuntimeIdentifiers>linux-x64;osx-x64</RuntimeIdentifiers>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup>
<CFBundleName>strans</CFBundleName>
<CFBundleDisplayName>strans</CFBundleDisplayName>
<CFBundleIdentifier>com.inventitech.strans</CFBundleIdentifier>
<CFBundleVersion>0.0.5</CFBundleVersion>
<CFBundlePackageType>AAPL</CFBundlePackageType>
<CFBundleSignature>com.inventitech.strans</CFBundleSignature>
<CFBundleExecutable>strans</CFBundleExecutable>
<CFBundleIconFile>strans-icon.png</CFBundleIconFile>
<NSPrincipalClass>NSApplication</NSPrincipalClass>
<NSHighResolutionCapable>true</NSHighResolutionCapable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.4.3" />
<PackageReference Include="dotnet-bundle" Version="0.9.8" />
<PackageReference Include="Dotnet.Bundle" Version="0.9.8" />
<PackageReference Include="Microsoft.ProgramSynthesis" Version="6.14.6" />
<DotNetCliToolReference Include="dotnet-bundle" Version="*" />
</ItemGroup>
</Project>