| 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 | <Compile Remove="tools\**\*.cs" /> |
| 19 | <Compile Remove="AIGuiders.SampleMcp.Tests\**\*.cs" /> |
| 20 | <None Remove="AIGuiders.SampleMcp.Tests\**\*" /> |
| 21 | </ItemGroup> |
| 22 | |
| 23 | <ItemGroup> |
| 24 | <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
| 25 | <_Parameter1>AIGuiders.SampleMcp.Tests</_Parameter1> |
| 26 | </AssemblyAttribute> |
| 27 | <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
| 28 | <_Parameter1>ExportMcpManifest</_Parameter1> |
| 29 | </AssemblyAttribute> |
| 30 | </ItemGroup> |
| 31 | |
| 32 | <ItemGroup> |
| 33 | <PackageReference Include="ModelContextProtocol" Version="0.8.0-preview.1" /> |
| 34 | </ItemGroup> |
| 35 | |
| 36 | </Project> |
| 37 | |
| 38 | |
View only · write via MCP/CIDE