chore: 首次提交

This commit is contained in:
2025-01-28 19:02:45 +08:00
commit 6f373dc5e5
13 changed files with 795 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latestmajor</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,9 @@
namespace PortProxyTool.Cli;
internal static class Program
{
private static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}