-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHandshakeDVPN.csproj
More file actions
30 lines (26 loc) · 1.13 KB
/
Copy pathHandshakeDVPN.csproj
File metadata and controls
30 lines (26 loc) · 1.13 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<AssemblyName>HandshakeDVPN</AssemblyName>
<RootNamespace>HandshakeDVPN</RootNamespace>
<Version>1.0.0</Version>
<AssemblyTitle>Handshake dVPN</AssemblyTitle>
<Description>Decentralized VPN with Handshake DNS — powered by Sentinel Network and the P2P protocol</Description>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<Resource Include="Fonts\Inter-Regular.ttf" />
<Resource Include="Fonts\Inter-Medium.ttf" />
<Resource Include="Fonts\Inter-SemiBold.ttf" />
<Resource Include="Fonts\Inter-Bold.ttf" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Sentinel.SDK.Core\Sentinel.SDK.Core.csproj" />
<ProjectReference Include="..\..\src\Sentinel.SDK.Node\Sentinel.SDK.Node.csproj" />
<ProjectReference Include="..\..\src\Sentinel.SDK.Tunnel\Sentinel.SDK.Tunnel.csproj" />
</ItemGroup>
</Project>