|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 | 3 | <PropertyGroup>
|
4 |
| - <TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks> |
| 4 | + <TargetFrameworks>netstandard2.1;net8.0;net9.0</TargetFrameworks> |
5 | 5 | <AssemblyName>SQLite.Net2</AssemblyName>
|
6 | 6 | <RootNamespace>SQLite.Net2</RootNamespace>
|
7 | 7 |
|
8 | 8 | <DebugType>portable</DebugType>
|
9 | 9 | <AssemblyProduct>SQLite.Net2</AssemblyProduct>
|
10 |
| - <AssemblyCopyright>Copyright ©2024 Benjamin Mayrargue</AssemblyCopyright> |
| 10 | + <AssemblyCopyright>Copyright ©2025 Benjamin Mayrargue</AssemblyCopyright> |
11 | 11 | <LangVersion>Latest</LangVersion>
|
12 | 12 | <Nullable>enable</Nullable>
|
13 | 13 | </PropertyGroup>
|
14 | 14 |
|
15 | 15 | <!-- nuget configurable properties -->
|
16 | 16 | <PropertyGroup>
|
17 |
| - <Version>2.1.0</Version> |
| 17 | + <Version>2.2.0</Version> |
18 | 18 | <VersionSuffix></VersionSuffix>
|
19 | 19 | <DefineConstants>$(DefineConstants);</DefineConstants>
|
20 | 20 | </PropertyGroup>
|
|
25 | 25 | <PackageId>sqlite-net2</PackageId>
|
26 | 26 | <!-- PackageIcon>icon.png</PackageIcon -->
|
27 | 27 | <!--<PackageIconUrl>https://raw.githubusercontent.com/xamarin/Essentials/master/Assets/xamarin.essentials_128x128.png</PackageIconUrl>-->
|
28 |
| - <Summary>A netstandard client library to access SQLite database files in a LINQ manner.</Summary> |
29 |
| - <PackageTags>sqlite, xamarin, android, ios, uwp, netstandard</PackageTags> |
| 28 | + <Summary>A client library to access SQLite database files in a LINQ manner.</Summary> |
| 29 | + <PackageTags>sqlite, maui, android, ios, windows</PackageTags> |
30 | 30 | <Title>sqlite-net2 light ORM for SQLite</Title>
|
31 | 31 | <Description>sqlite-net2 allows applications to manage data in SQLite databases using Entity Framework like queries, but much lighter</Description>
|
32 | 32 | <Product>$(AssemblyName) ($(TargetFramework))</Product>
|
|
46 | 46 | </PropertyGroup>
|
47 | 47 |
|
48 | 48 | <ItemGroup>
|
49 |
| - <PackageReference Include="SQLitePCLRaw.core" Version="2.1.8" /> |
| 49 | + <PackageReference Include="SQLitePCLRaw.core" Version="2.1.10" /> |
50 | 50 | <None Include="..\..\LICENSE.md" Pack="true" PackagePath="" />
|
51 | 51 | </ItemGroup>
|
52 | 52 |
|
|
0 commit comments