BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/BotSharp.Plugin.MongoStorage.csproj

20 lines
613 B
XML
Raw Normal View History

2023-09-06 04:41:49 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2023-08-26 04:41:01 +00:00
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
2023-09-09 20:30:39 +00:00
<LangVersion>$(LangVersion)</LangVersion>
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
2023-09-09 20:30:39 +00:00
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
2023-10-11 04:11:06 +00:00
<GenerateDocumentationFile>True</GenerateDocumentationFile>
2023-08-26 04:41:01 +00:00
</PropertyGroup>
<ItemGroup>
2023-10-11 04:11:06 +00:00
<PackageReference Include="MongoDB.Driver" Version="2.22.0" />
2023-08-26 04:41:01 +00:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
</ItemGroup>
</Project>