-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathSystem.Data.SQLite.csproj
More file actions
executable file
·32 lines (27 loc) · 1.92 KB
/
System.Data.SQLite.csproj
File metadata and controls
executable file
·32 lines (27 loc) · 1.92 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>C#-SQLite is an independent reimplementation of the SQLite software library</Description>
<Authors>Pioneer Software Consulting</Authors>
<Company>Pioneer Software Consulting</Company>
<Product>C#-SQLite3 shell</Product>
<Copyright>Copyright © 2009-2013</Copyright>
<Version>3.7.7.1</Version>
<RepositoryUrl>https://github.com/CsharpDatabase/CsharpSQLite</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/CsharpDatabase/CsharpSQLite</PackageProjectUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\Run\Debug</OutputPath>
<DefineConstants>TRACE;DEBUG;TRUE;NDEBUG;SQLITE_ASCII;SQLITE_DISABLE_LFS;SQLITE_ENABLE_OVERSIZE_CELL_CHECK;SQLITE_MUTEX_OMIT;SQLITE_OMIT_AUTHORIZATION;SQLITE_OMIT_DEPRECATED;SQLITE_OMIT_GET_TABLE;SQLITE_OMIT_INCRBLOB;SQLITE_OMIT_LOOKASIDE;SQLITE_OMIT_SHARED_CACHE;SQLITE_OMIT_UTF16;SQLITE_OMIT_WAL;SQLITE_OS_WIN;SQLITE_SYSTEM_MALLOC;VDBE_PROFILE_OFF;SQLITE_DEFAULT_FOREIGN_KEYS</DefineConstants>
<NoWarn>0168;0169;0414;0618;0649;0219;0162;0429</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\Run\Release</OutputPath>
<DefineConstants>TRACE;TRUE;NDEBUG;SQLITE_ASCII;SQLITE_DISABLE_LFS;SQLITE_ENABLE_OVERSIZE_CELL_CHECK;SQLITE_MUTEX_OMIT;SQLITE_OMIT_AUTHORIZATION;SQLITE_OMIT_DEPRECATED;SQLITE_OMIT_GET_TABLE;SQLITE_OMIT_INCRBLOB;SQLITE_OMIT_LOOKASIDE;SQLITE_OMIT_SHARED_CACHE;SQLITE_OMIT_UTF16;SQLITE_OMIT_WAL;SQLITE_OS_WIN;SQLITE_SYSTEM_MALLOC;VDBE_PROFILE_OFF;SQLITE_DEFAULT_FOREIGN_KEYS</DefineConstants>
<NoWarn>0168;0169;0414;0618;0649;0219;0162;0429</NoWarn>
</PropertyGroup>
<ItemGroup>
</ItemGroup>
</Project>