initial commit
This commit is contained in:
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
bin/
|
||||||
|
obj/
|
||||||
|
/packages/
|
||||||
|
riderModule.iml
|
||||||
|
/_ReSharper.Caches/
|
||||||
14
ConsoleEchoMcpServer/ConsoleEchoMcpServer.csproj
Normal file
14
ConsoleEchoMcpServer/ConsoleEchoMcpServer.csproj
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="ModelContextProtocol" Version="0.4.0-preview.3" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
3
ConsoleEchoMcpServer/Program.cs
Normal file
3
ConsoleEchoMcpServer/Program.cs
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
// See https://aka.ms/new-console-template for more information
|
||||||
|
|
||||||
|
Console.WriteLine("Hello, World!");
|
||||||
16
McpServerCSharp.sln
Normal file
16
McpServerCSharp.sln
Normal file
@@ -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
|
||||||
Reference in New Issue
Block a user