|
4 | 4 | <TargetFramework>netstandard2.0</TargetFramework> |
5 | 5 | <AssemblyName>SQLite.Net2</AssemblyName> |
6 | 6 | <RootNamespace>SQLite.Net2</RootNamespace> |
| 7 | + |
| 8 | + <DebugType>portable</DebugType> |
| 9 | + <AssemblyProduct>SQLite.Net2</AssemblyProduct> |
| 10 | + <AssemblyCopyright>Copyright ©2020 Benjamin Mayrargue</AssemblyCopyright> |
7 | 11 | </PropertyGroup> |
8 | 12 |
|
9 | | - <ItemGroup> |
10 | | - <Folder Include="Properties\" /> |
11 | | - </ItemGroup> |
| 13 | + <!-- nuget configurable properties --> |
| 14 | + <PropertyGroup> |
| 15 | + <Version>0.0.0-pre1</Version> |
| 16 | + <VersionSuffix></VersionSuffix> |
| 17 | + <DefineConstants>$(DefineConstants);</DefineConstants> |
| 18 | + <NugetPackageId></NugetPackageId> |
| 19 | + </PropertyGroup> |
| 20 | + |
| 21 | + |
| 22 | + <!-- nuget properties --> |
| 23 | + <PropertyGroup> |
| 24 | + <PackageId>sqlite-net2</PackageId> |
| 25 | + <!-- PackageIcon>icon.png</PackageIcon --> |
| 26 | + <!--<PackageIconUrl>https://raw.githubusercontent.com/xamarin/Essentials/master/Assets/xamarin.essentials_128x128.png</PackageIconUrl>--> |
| 27 | + <Summary>A netstandard client library to access SQLite database files in a LINQ manner.</Summary> |
| 28 | + <PackageTags>sqlite, xamarin, android, ios, uwp, netstandard</PackageTags> |
| 29 | + <Title>sqlite-net2 light ORM for SQLite</Title> |
| 30 | + <Description>sqlite-net2 allows applications to manage data in SQLite databases using Entity Framework like queries, but much lighter</Description> |
| 31 | + <Product>$(AssemblyName) ($(TargetFramework))</Product> |
| 32 | + <VersionSuffix></VersionSuffix> |
| 33 | + <PackageVersion>$(Version)$(VersionSuffix)</PackageVersion> |
| 34 | + <Authors>Benjamin Mayrargue</Authors> |
| 35 | + <Owners>Benjamin Mayrargue</Owners> |
| 36 | + <NeutralLanguage>en</NeutralLanguage> |
| 37 | + <RepositoryUrl>https://github.com/softlion/SQLite.Net-PCL2</RepositoryUrl> |
| 38 | + <UseFullSemVerForNuGet>false</UseFullSemVerForNuGet> |
| 39 | + <PackageLicenseFile>LICENSE.md</PackageLicenseFile> |
| 40 | + <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
| 41 | + <PackageProjectUrl>https://github.com/softlion/SQLite.Net-PCL2</PackageProjectUrl> |
| 42 | + <PackageReleaseNotes> |
| 43 | + https://github.com/softlion/SQLite.Net-PCL/commits |
| 44 | + </PackageReleaseNotes> |
| 45 | + </PropertyGroup> |
12 | 46 |
|
13 | 47 | <ItemGroup> |
14 | 48 | <PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.0.2" /> |
| 49 | + <None Include="..\..\LICENSE.md" Pack="true" PackagePath="" /> |
15 | 50 | </ItemGroup> |
16 | 51 |
|
17 | 52 | </Project> |
0 commit comments