LumaTunnel
【WinUI】LumaTunnel 是一个面向个人多设备的 Windows 代理系统。客户端在本机提供 HTTP/HTTPS CONNECT 与 SOCKS5 TCP 代理,并通过一个受信任 TLS 证书保护的 WSS 会话,将多个 TCP 流复用到自建 Windows Server 节点。
关注
0
Fork
0
Star
0
<Project Sdk="Microsoft.NET.Sdk.Worker">
<PropertyGroup>
<TargetFramework>net10.0-windows</TargetFramework>
<OutputType>Exe</OutputType>
<RootNamespace>LumaTunnel.Server</RootNamespace>
<AssemblyName>LumaTunnel.Server</AssemblyName>
<ApplicationIcon Condition="Exists('..\..\assets\app-icons\LumaTunnel.ico')">..\..\assets\app-icons\LumaTunnel.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" />
<PackageReference Include="Microsoft.Extensions.Logging.EventLog" />
<PackageReference Include="XFEExtension.NetCore.ServerInteractive" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LumaTunnel.Server.Core\LumaTunnel.Server.Core.csproj" />
<ProjectReference Include="..\LumaTunnel.Shared\LumaTunnel.Shared.csproj" />
</ItemGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk.Worker">
<PropertyGroup>
<TargetFramework>net10.0-windows</TargetFramework>
<OutputType>Exe</OutputType>
<RootNamespace>LumaTunnel.Server</RootNamespace>
<AssemblyName>LumaTunnel.Server</AssemblyName>
<ApplicationIcon Condition="Exists('..\..\assets\app-icons\LumaTunnel.ico')">..\..\assets\app-icons\LumaTunnel.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" />
<PackageReference Include="Microsoft.Extensions.Logging.EventLog" />
<PackageReference Include="XFEExtension.NetCore.ServerInteractive" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LumaTunnel.Server.Core\LumaTunnel.Server.Core.csproj" />
<ProjectReference Include="..\LumaTunnel.Shared\LumaTunnel.Shared.csproj" />
</ItemGroup>
</Project>