-
Notifications
You must be signed in to change notification settings - Fork 682
Expand file tree
/
Copy pathQuickstartClient.csproj
More file actions
26 lines (22 loc) · 910 Bytes
/
QuickstartClient.csproj
File metadata and controls
26 lines (22 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UserSecretsId>a4e20a70-5009-4b81-b5b6-780b6d43e78e</UserSecretsId>
<!--
Anthropic SDK isn't AOT compatible yet
<PublishAot>true</PublishAot>
-->
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\ModelContextProtocol.Core\ModelContextProtocol.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Anthropic" />
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" VersionOverride="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="Microsoft.Extensions.AI" />
</ItemGroup>
</Project>