forked from softlion/SQLite.Net-PCL2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSQLite.Net2.csproj
More file actions
55 lines (48 loc) · 2.31 KB
/
SQLite.Net2.csproj
File metadata and controls
55 lines (48 loc) · 2.31 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyName>SQLite.Net2</AssemblyName>
<RootNamespace>SQLite.Net2</RootNamespace>
<DebugType>portable</DebugType>
<AssemblyProduct>SQLite.Net2</AssemblyProduct>
<AssemblyCopyright>Copyright ©2022 Benjamin Mayrargue</AssemblyCopyright>
<LangVersion>Latest</LangVersion>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<!-- nuget configurable properties -->
<PropertyGroup>
<Version>2.0.6</Version>
<VersionSuffix></VersionSuffix>
<DefineConstants>$(DefineConstants);</DefineConstants>
<NugetPackageId></NugetPackageId>
</PropertyGroup>
<!-- nuget properties -->
<PropertyGroup>
<PackageId>sqlite-net2</PackageId>
<!-- PackageIcon>icon.png</PackageIcon -->
<!--<PackageIconUrl>https://raw.githubusercontent.com/xamarin/Essentials/master/Assets/xamarin.essentials_128x128.png</PackageIconUrl>-->
<Summary>A netstandard client library to access SQLite database files in a LINQ manner.</Summary>
<PackageTags>sqlite, xamarin, android, ios, uwp, netstandard</PackageTags>
<Title>sqlite-net2 light ORM for SQLite</Title>
<Description>sqlite-net2 allows applications to manage data in SQLite databases using Entity Framework like queries, but much lighter</Description>
<Product>$(AssemblyName) ($(TargetFramework))</Product>
<VersionSuffix>.13</VersionSuffix>
<PackageVersion>$(Version)$(VersionSuffix)</PackageVersion>
<Authors>Benjamin Mayrargue</Authors>
<Owners>Benjamin Mayrargue</Owners>
<NeutralLanguage>en</NeutralLanguage>
<RepositoryUrl>https://github.com/softlion/SQLite.Net-PCL2</RepositoryUrl>
<UseFullSemVerForNuGet>false</UseFullSemVerForNuGet>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/machinezone/SQLite.Net-PCL2</PackageProjectUrl>
<PackageReleaseNotes>
https://github.com/softlion/SQLite.Net-PCL/commits
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SQLitePCLRaw.core" Version="2.1.8" />
<None Include="..\..\LICENSE.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>