-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceBlock.Storage.MongoDb.csproj
More file actions
26 lines (22 loc) · 1 KB
/
ServiceBlock.Storage.MongoDb.csproj
File metadata and controls
26 lines (22 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
<NullableContextOptions>enable</NullableContextOptions>
<IsPackable>true</IsPackable>
<Version>1.3.0</Version>
<Authors>Zrean Tofiq</Authors>
<Description>Mongo DB storage package for ServiceBlock</Description>
<PackageTags>Microservice, API, OpenAPI, REST, ASP.Net Core</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="3.1.0" />
<PackageReference Include="MongoDB.Driver" Version="2.19.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ServiceBlock.Interface\ServiceBlock.Interface.csproj" />
<ProjectReference Include="..\ServiceBlock.Storage\ServiceBlock.Storage.csproj" />
</ItemGroup>
</Project>