-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnthropicVerification.csproj
More file actions
25 lines (22 loc) · 984 Bytes
/
AnthropicVerification.csproj
File metadata and controls
25 lines (22 loc) · 984 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<RootNamespace>AnthropicVerification</RootNamespace>
<AssemblyName>AnthropicVerification</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Anthropic.SDK" />
<!--
Anthropic.SDK 5.10.0 was compiled against Microsoft.Extensions.AI.Abstractions 10.3.0;
the repo's central pin (10.5.0) reshapes HostedMcpServerTool.AuthorizationToken and
causes a runtime MissingMethodException. Pin this throwaway harness to the SDK's
compile-time targets via VersionOverride.
-->
<PackageReference Include="Microsoft.Extensions.AI" VersionOverride="10.3.0" />
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" VersionOverride="10.3.0" />
</ItemGroup>
</Project>