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

27 lines
1.1 KiB
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>
2023-10-08 20:46:42 +00:00
<ItemGroup>
2025-04-05 20:22:06 +00:00
<ProjectReference Include="..\..\..\..\..\Research\Google_GenerativeAI\src\GenerativeAI.Live\GenerativeAI.Live.csproj" />
<ProjectReference Include="..\..\..\..\..\Research\Google_GenerativeAI\src\GenerativeAI\GenerativeAI.csproj" />
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
<ProjectReference Include="..\..\Infrastructure\BotSharp.Core\BotSharp.Core.csproj" />
2023-10-08 20:46:42 +00:00
</ItemGroup>
<ItemGroup>
<PackageReference Include="Google_GenerativeAI" />
<PackageReference Include="Google_GenerativeAI.Live" />
<PackageReference Include="LLMSharp.Google.Palm" />
2023-10-08 20:46:42 +00:00
</ItemGroup>
</Project>