| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <OutputType>Exe</OutputType> |
| 5 | <TargetFramework>net10.0</TargetFramework> |
| 6 | <RuntimeIdentifiers>win-x64;linux-x64;osx-x64;osx-arm64</RuntimeIdentifiers> |
| 7 | <SelfContained>true</SelfContained> |
| 8 | <LangVersion>14</LangVersion> |
| 9 | <Nullable>enable</Nullable> |
| 10 | <ImplicitUsings>enable</ImplicitUsings> |
| 11 | <RootNamespace>AgentForge.Mcp</RootNamespace> |
| 12 | <AssemblyName>AgentForge.Mcp</AssemblyName> |
| 13 | <Version>0.1.0</Version> |
| 14 | </PropertyGroup> |
| 15 | |
| 16 | <ItemGroup> |
| 17 | <Compile Remove="..\..\tests\AgentForge.Mcp.Tests\**\*.cs" /> |
| 18 | <None Remove="..\..\tests\AgentForge.Mcp.Tests\**\*" /> |
| 19 | </ItemGroup> |
| 20 | |
| 21 | <ItemGroup> |
| 22 | <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
| 23 | <_Parameter1>AgentForge.Mcp.Tests</_Parameter1> |
| 24 | </AssemblyAttribute> |
| 25 | </ItemGroup> |
| 26 | |
| 27 | <ItemGroup> |
| 28 | <PackageReference Include="ModelContextProtocol" Version="1.4.0" /> |
| 29 | <PackageReference Include="Tomlyn" Version="0.19.0" /> |
| 30 | <ProjectReference Include="..\..\src\AgentForge.Abstractions\AgentForge.Abstractions.csproj" /> |
| 31 | <ProjectReference Include="..\..\src\AgentForge.Credentials\AgentForge.Credentials.csproj" /> |
| 32 | </ItemGroup> |
| 33 | |
| 34 | </Project> |
| 35 | |
View only · write via MCP/CIDE