-
Notifications
You must be signed in to change notification settings - Fork 0
/
vpnc.csproj
40 lines (40 loc) · 1.73 KB
/
vpnc.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
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<StartupObject>CliProgram</StartupObject>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<Version>0.2.0</Version>
<FileVersion>0.2.0</FileVersion>
<Authors>Lifailon</Authors>
<ProjectUrl>https://github.com/Lifailon/vpnc</ProjectUrl>
<AssemblyTitle>VPN Control</AssemblyTitle>
<PackAsTool>true</PackAsTool>
<ToolCommandName>vpnc</ToolCommandName>
<PackageId>vpnc</PackageId>
<Description>Universal tool for automatic (local) and remote VPN connection management via a desktop application (system tray) and API</Description>
<Tags>CSharp, .NET, VPN, Cli, API, Tray</Tags>
<RepositoryUrl>https://github.com/Lifailon/vpnc</RepositoryUrl>
<LicenseUrl>https://github.com/Lifailon/vpnc/blob/main/LICENSE</LicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<ApplicationIcon>img/vpn.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.9.0" />
<Content Include="img\*.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="vpnc.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Update="img/vpn.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>