-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlschy.LocalizeServer.MongoDB.csproj
More file actions
30 lines (26 loc) · 1.41 KB
/
Alschy.LocalizeServer.MongoDB.csproj
File metadata and controls
30 lines (26 loc) · 1.41 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
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<nullable>enable</nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.1.0-alpha</Version>
<Authors>Alschy</Authors>
<Company />
<Product>Alschy.LocalizeServer</Product>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Description>MongoDB implementation for the LocalizeServer to fetch resources from a mongo db</Description>
<Copyright>Alschy</Copyright>
<PackageProjectUrl>https://github.com/Alschy/LocalizeServer</PackageProjectUrl>
<RepositoryUrl>https://github.com/Alschy/LocalizeServer</RepositoryUrl>
<PackageTags>Net Core Standard Localization Mongo DB Caching</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MongoDB.Driver" Version="2.19.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\common\Alschy.LocalizeServer.Common.Models\Alschy.LocalizeServer.Common.Models.csproj" />
<ProjectReference Include="..\..\common\Alschy.LocalizeServer.Common.Services\Alschy.LocalizeServer.Common.Services.csproj" />
<ProjectReference Include="..\..\server-core\Alschy.LocalizeServer.Core.Models\Alschy.LocalizeServer.Core.Models.csproj" />
<ProjectReference Include="..\..\utils\Alschy.LocalizeServer.Utils.Caching\Alschy.LocalizeServer.Utils.Caching.csproj" />
</ItemGroup>
</Project>