-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathNETCoreSync.csproj
More file actions
31 lines (26 loc) · 1.39 KB
/
NETCoreSync.csproj
File metadata and controls
31 lines (26 loc) · 1.39 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
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>aldycool</Authors>
<Company />
<Description>Database-agnostic synchronization framework based on .NET Standard 2.0 to synchronize data between multiple clients and a single server, where both platforms are using technologies that compatible with .NET Standard 2.0, such as Xamarin Forms for the mobile clients and ASP .NET Core for the backend server.</Description>
<PackageLicenseExpression>AGPL-3.0-only</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/aldycool/NETCoreSync</PackageProjectUrl>
<RepositoryUrl>https://github.com/aldycool/NETCoreSync</RepositoryUrl>
<PackageTags>database sync synchronization framework NETCoreApp NETStandard Xamarin Forms</PackageTags>
<PackageReleaseNotes>## v1.2.2 Release Notes
### Added Features
* Fix GZip decompression into chunks
### Breaking Changes
None
</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Version>1.2.2</Version>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="System.Linq.Dynamic.Core" Version="1.2.10" />
</ItemGroup>
</Project>