| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <TargetFramework>net10.0</TargetFramework> |
| 5 | <LangVersion>14</LangVersion> |
| 6 | <Nullable>enable</Nullable> |
| 7 | <ImplicitUsings>enable</ImplicitUsings> |
| 8 | <RootNamespace>AgentForge.Plugin.Sdk</RootNamespace> |
| 9 | <AssemblyName>AgentForge.Plugin.Sdk</AssemblyName> |
| 10 | <Description>Public plugin development surface for Agent Forge (ADR-0014).</Description> |
| 11 | <Version>0.2.0</Version> |
| 12 | </PropertyGroup> |
| 13 | |
| 14 | <ItemGroup> |
| 15 | <ProjectReference Include="..\AgentForge.Abstractions\AgentForge.Abstractions.csproj" /> |
| 16 | <ProjectReference Include="..\AgentForge\AgentForge.csproj" /> |
| 17 | </ItemGroup> |
| 18 | |
| 19 | </Project> |
| 20 | |
View only · write via MCP/CIDE