-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlschy.LocalizeServer.WebClient.csproj
More file actions
28 lines (24 loc) · 1.14 KB
/
Alschy.LocalizeServer.WebClient.csproj
File metadata and controls
28 lines (24 loc) · 1.14 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
<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>Web client for LocalizeServer with optional caching support</Description>
<Copyright>Alschy</Copyright>
<PackageProjectUrl>https://github.com/Alschy/LocalizeServer</PackageProjectUrl>
<RepositoryUrl>https://github.com/Alschy/LocalizeServer</RepositoryUrl>
<PackageTags>Net Core Standard Localization Caching client</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\common\Alschy.LocalizeServer.Common.Services\Alschy.LocalizeServer.Common.Services.csproj" />
<ProjectReference Include="..\..\utils\Alschy.LocalizeServer.Utils.Caching\Alschy.LocalizeServer.Utils.Caching.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
</Project>