|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFramework>netstandard1.1</TargetFramework> |
| 4 | + <TargetFramework>netstandard2.0</TargetFramework> |
5 | 5 | <AssemblyName>SQLite-net</AssemblyName> |
6 | | - <Version>1.0.0</Version> |
7 | | - <AssemblyTitle>SQLite-net Official .NET Standard Base Library</AssemblyTitle> |
8 | | - <Description>Light weight library providing easy SQLite database storage</Description> |
9 | | - <Company>Krueger Systems, Inc.</Company> |
10 | | - </PropertyGroup> |
| 6 | + <PackageId>sqlite-net-base</PackageId> |
| 7 | + <AssemblyTitle>SQLite-net .NET Standard Base Library</AssemblyTitle> |
| 8 | + <Description> |
| 9 | + This is a special version of SQLite-net-pcl that does not include a SQLitePCLRaw bundle. |
| 10 | + It is meant to give you all the power of SQLite-net but with the freedom to choose your own provider. |
| 11 | + Please use the package sqlite-net-pcl if you have no idea what any of this means. |
| 12 | + </Description> |
11 | 13 |
|
12 | | - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
13 | | - <DefineConstants>USE_SQLITEPCL_RAW;NO_SQLITEPCL_RAW_BATTERIES;DEBUG;NETSTANDARD1_1</DefineConstants> |
14 | | - <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
15 | | - <DocumentationFile>bin\Debug\netstandard1.1\SQLite-net.xml</DocumentationFile> |
16 | 14 | </PropertyGroup> |
| 15 | + |
17 | 16 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
18 | 17 | <DebugSymbols>false</DebugSymbols> |
19 | 18 | <DebugType></DebugType> |
20 | | - <DefineConstants>USE_SQLITEPCL_RAW;NO_SQLITEPCL_RAW_BATTERIES;RELEASE;NETSTANDARD1_1</DefineConstants> |
| 19 | + <DefineConstants>USE_SQLITEPCL_RAW;NO_SQLITEPCL_RAW_BATTERIES;RELEASE</DefineConstants> |
21 | 20 | <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
22 | | - <DocumentationFile>bin\Release\netstandard1.1\SQLite-net.xml</DocumentationFile> |
| 21 | + <DocumentationFile>bin\Release\netstandard2.0\SQLite-net.xml</DocumentationFile> |
23 | 22 | </PropertyGroup> |
| 23 | + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
| 24 | + <DefineConstants>USE_SQLITEPCL_RAW;NO_SQLITEPCL_RAW_BATTERIES;DEBUG</DefineConstants> |
| 25 | + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
| 26 | + <DocumentationFile>bin\Debug\netstandard2.0\SQLite-net.xml</DocumentationFile> |
| 27 | + </PropertyGroup> |
| 28 | + <ItemGroup> |
| 29 | + <PackageReference Include="SQLitePCLRaw.core" Version="2.0.1" /> |
| 30 | + </ItemGroup> |
24 | 31 | <ItemGroup> |
25 | 32 | <Compile Include="..\..\src\SQLite.cs"> |
26 | 33 | <Link>SQLite.cs</Link> |
27 | 34 | </Compile> |
28 | 35 | <Compile Include="..\..\src\SQLiteAsync.cs"> |
29 | 36 | <Link>SQLiteAsync.cs</Link> |
30 | 37 | </Compile> |
31 | | - </ItemGroup> |
32 | | - <ItemGroup> |
33 | | - <PackageReference Include="SQLitePCLRaw.core" Version="1.1.13" /> |
34 | | - <PackageReference Include="NuGet.Build.Packaging" Version="0.2.2" /> |
| 38 | + <None Include="..\..\LICENSE.txt" Pack="true" PackagePath="" /> |
35 | 39 | </ItemGroup> |
36 | 40 | </Project> |
0 commit comments