BotSharp/src/Plugins/BotSharp.Plugin.GoogleAI/BotSharp.Plugin.GoogleAI.csproj

22 lines
732 B
XML
Raw Normal View History

2023-10-08 20:46:42 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2024-06-26 21:15:29 +00:00
<TargetFramework>$(TargetFramework)</TargetFramework>
2023-10-08 20:46:42 +00:00
<Nullable>enable</Nullable>
<LangVersion>$(LangVersion)</LangVersion>
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
2023-11-27 21:00:26 +00:00
<GenerateDocumentationFile>$(GenerateDocumentationFile)</GenerateDocumentationFile>
2024-01-22 02:39:42 +00:00
<OutputPath>$(SolutionDir)packages</OutputPath>
2023-10-08 20:46:42 +00:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LLMSharp.Google.Palm" Version="1.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
</ItemGroup>
</Project>