BotSharp/src/Plugins/BotSharp.Plugin.AnthropicAI/BotSharp.Plugin.AnthropicAI.csproj

22 lines
723 B
XML
Raw Normal View History

2024-05-15 11:43:05 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2024-05-02 22:07:12 +00:00
<PropertyGroup>
2024-06-26 21:15:29 +00:00
<TargetFramework>$(TargetFramework)</TargetFramework>
2024-05-02 22:07:12 +00:00
<Nullable>enable</Nullable>
2024-05-15 11:43:05 +00:00
<LangVersion>$(LangVersion)</LangVersion>
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
<GenerateDocumentationFile>$(GenerateDocumentationFile)</GenerateDocumentationFile>
<OutputPath>$(SolutionDir)packages</OutputPath>
2024-05-02 22:07:12 +00:00
</PropertyGroup>
<ItemGroup>
2024-12-02 21:18:16 +00:00
<PackageReference Include="Anthropic.SDK" Version="4.3.0" />
2024-05-02 22:07:12 +00:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
</ItemGroup>
</Project>