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

21 lines
652 B
XML
Raw Normal View History

2023-10-08 20:46:42 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>$(LangVersion)</LangVersion>
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
2023-10-11 04:11:06 +00:00
<GenerateDocumentationFile>True</GenerateDocumentationFile>
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>