BotSharp/src/Plugins/BotSharp.Plugin.AzureOpenAI/BotSharp.Plugin.AzureOpenAI.csproj

22 lines
732 B
XML
Raw Normal View History

2024-05-02 22:07:12 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2018-11-02 12:53:27 +00:00
<PropertyGroup>
2023-05-20 21:31:31 +00:00
<TargetFramework>netstandard2.1</TargetFramework>
2023-05-26 01:36:15 +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>
2018-11-02 12:53:27 +00:00
</PropertyGroup>
<ItemGroup>
2024-05-02 22:07:12 +00:00
<PackageReference Include="Azure.AI.OpenAI" Version="1.0.0-beta.16" />
2023-05-27 01:58:31 +00:00
</ItemGroup>
<ItemGroup>
2023-06-08 03:43:16 +00:00
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
2018-11-02 12:53:27 +00:00
</ItemGroup>
</Project>