forked from sttz/expresso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpresso.csproj
33 lines (28 loc) · 1.18 KB
/
expresso.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0;net472</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Label="Package">
<Version>1.2.1</Version>
<Authors>Adrian Stutz (sttz.ch)</Authors>
<Product>expresso</Product>
<Description>CLI to control the ExpressVPN app</Description>
<Copyright>Copyright © Adrian Stutz. All rights Reserved</Copyright>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/sttz/expresso</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>CLI;VPN;ExpressVPN</PackageTags>
</PropertyGroup>
<PropertyGroup>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<PublishTrimmed>true</PublishTrimmed>
<PublishReadyToRun>true</PublishReadyToRun>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
</Project>