Forge
f583a481
1<Project Sdk="Microsoft.NET.Sdk">
2
3 <PropertyGroup>
4 <OutputType>Exe</OutputType>
5 <TargetFramework>net10.0</TargetFramework>
6 <RuntimeIdentifiers>win-x64;linux-x64</RuntimeIdentifiers>
7 <SelfContained>true</SelfContained>
8 <LangVersion>14</LangVersion>
9 <Nullable>enable</Nullable>
10 <ImplicitUsings>enable</ImplicitUsings>
11 <RootNamespace>AIGuiders.SampleMcp</RootNamespace>
12 <AssemblyName>AIGuiders.SampleMcp</AssemblyName>
13 <VersionPrefix>0.1.0</VersionPrefix>
14 <IncludeSourceRevisionInInformationalVersion>true</IncludeSourceRevisionInInformationalVersion>
15 </PropertyGroup>
16
17 <ItemGroup>
18 <PackageReference Include="ModelContextProtocol" Version="0.8.0-preview.1" />
19 </ItemGroup>
20
21</Project>
22
23
View only · write via MCP/CIDE