| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <TargetFrameworks>net10.0;net9.0;net8.0;netstandard2.1</TargetFrameworks> |
| 5 | <LangVersion>13.0</LangVersion> |
| 6 | <ImplicitUsings>enable</ImplicitUsings> |
| 7 | <Nullable>enable</Nullable> |
| 8 | <IsAotCompitable>true</IsAotCompitable> |
| 9 | |
| 10 | <!-- NuGet Packaging --> |
| 11 | <PackageId>AgentClientProtocol</PackageId> |
| 12 | <PackageTags>acp;agentclientprotocol</PackageTags> |
| 13 | <Description>Unofficial C# SDK for ACP (Agent Client Protocol) clients and agents</Description> |
| 14 | </PropertyGroup> |
| 15 | |
| 16 | <ItemGroup> |
| 17 | <None Include="..\..\README.md" Pack="true" PackagePath="README.md" /> |
| 18 | <EmbeddedResource Include="..\..\LICENSE" /> |
| 19 | </ItemGroup> |
| 20 | |
| 21 | |
| 22 | <ItemGroup Condition="$(TargetFramework) == 'netstandard2.1'"> |
| 23 | <PackageReference Include="System.Text.Json" Version="8.0.5" /> |
| 24 | </ItemGroup> |
| 25 | |
| 26 | <ItemGroup> |
| 27 | <PackageReference Include="PolySharp" Version="1.15.0"> |
| 28 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 29 | <PrivateAssets>all</PrivateAssets> |
| 30 | </PackageReference> |
| 31 | </ItemGroup> |
| 32 | |
| 33 | </Project> |
View only · write via MCP/CIDE