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

22 lines
708 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>
2024-06-26 21:15:29 +00:00
<TargetFramework>$(TargetFramework)</TargetFramework>
2023-09-09 20:30:39 +00:00
<LangVersion>$(LangVersion)</LangVersion>
2023-10-17 20:29:40 +00:00
<Nullable>enable</Nullable>
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
2023-09-09 20:30:39 +00:00
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
2024-01-13 21:17:40 +00:00
<GenerateDocumentationFile>$(GenerateDocumentationFile)</GenerateDocumentationFile>
2024-01-22 02:39:42 +00:00
<OutputPath>$(SolutionDir)packages</OutputPath>
2023-08-26 04:41:01 +00:00
</PropertyGroup>
<ItemGroup>
2025-03-01 19:44:52 +00:00
<PackageReference Include="MongoDB.Driver" />
2023-08-26 04:41:01 +00:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
</ItemGroup>
</Project>