From ed210cee1b64ed254cf5d06045c8f2990f08af17 Mon Sep 17 00:00:00 2001 From: Zhanghu Date: Thu, 13 Nov 2025 09:48:15 +0800 Subject: [PATCH] initial commit --- .gitignore | 5 +++++ ConsoleEchoMcpServer/ConsoleEchoMcpServer.csproj | 14 ++++++++++++++ ConsoleEchoMcpServer/Program.cs | 3 +++ McpServerCSharp.sln | 16 ++++++++++++++++ 4 files changed, 38 insertions(+) create mode 100644 .gitignore create mode 100644 ConsoleEchoMcpServer/ConsoleEchoMcpServer.csproj create mode 100644 ConsoleEchoMcpServer/Program.cs create mode 100644 McpServerCSharp.sln diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..add57be --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ \ No newline at end of file diff --git a/ConsoleEchoMcpServer/ConsoleEchoMcpServer.csproj b/ConsoleEchoMcpServer/ConsoleEchoMcpServer.csproj new file mode 100644 index 0000000..0fd0cbb --- /dev/null +++ b/ConsoleEchoMcpServer/ConsoleEchoMcpServer.csproj @@ -0,0 +1,14 @@ + + + + Exe + net8.0 + enable + enable + + + + + + + diff --git a/ConsoleEchoMcpServer/Program.cs b/ConsoleEchoMcpServer/Program.cs new file mode 100644 index 0000000..e5dff12 --- /dev/null +++ b/ConsoleEchoMcpServer/Program.cs @@ -0,0 +1,3 @@ +// See https://aka.ms/new-console-template for more information + +Console.WriteLine("Hello, World!"); \ No newline at end of file diff --git a/McpServerCSharp.sln b/McpServerCSharp.sln new file mode 100644 index 0000000..1847fd2 --- /dev/null +++ b/McpServerCSharp.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleEchoMcpServer", "ConsoleEchoMcpServer\ConsoleEchoMcpServer.csproj", "{D9A9A1BA-D847-4083-A085-DCBD43B5E1DC}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D9A9A1BA-D847-4083-A085-DCBD43B5E1DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D9A9A1BA-D847-4083-A085-DCBD43B5E1DC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D9A9A1BA-D847-4083-A085-DCBD43B5E1DC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D9A9A1BA-D847-4083-A085-DCBD43B5E1DC}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal