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

19 lines
549 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-08-26 04:41:01 +00:00
</PropertyGroup>
<ItemGroup>
2023-10-02 20:40:15 +00:00
<PackageReference Include="MongoDB.Driver" Version="2.21.0" />
2023-08-26 04:41:01 +00:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
</ItemGroup>
</Project>