forked from praeclarum/sqlite-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSQLite.csproj
140 lines (140 loc) · 8.64 KB
/
SQLite.csproj
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{67F9D3A8-F71E-4428-913F-C37AE82CDB24}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SQLite</RootNamespace>
<AssemblyName>SQLite</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkProfile>Profile7</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;USE_NEW_REFLECTION_API</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Compile Include="src\ORM\AbstractTableMapping.cs" />
<Compile Include="src\ORM\Columns\AbstractDirectTableMappingColumn.cs" />
<Compile Include="src\ORM\Columns\AbstractTableMappingColumn.cs" />
<Compile Include="src\ORM\Columns\BasicTableMappingColumnFactory.cs" />
<Compile Include="src\ORM\Columns\ComplexTableMappingColumnFactory.cs" />
<Compile Include="src\ORM\Columns\DirectTableMappingColumn.cs" />
<Compile Include="src\ORM\Columns\FieldTypeTableMappingColumn.cs" />
<Compile Include="src\ORM\Columns\FieldCollection\FieldCollector.cs" />
<Compile Include="src\ORM\Columns\FieldCollection\FieldCollectorFactory.cs" />
<Compile Include="src\ORM\Columns\FieldCollection\NewAPIFieldCollector.cs" />
<Compile Include="src\ORM\Columns\FieldCollection\NullFieldCollector.cs" />
<Compile Include="src\ORM\Columns\IndirectTableMappingColumn.cs" />
<Compile Include="src\ORM\Columns\ListAdapterTableMappingColumn.cs" />
<Compile Include="src\ORM\Columns\PropertyAttributeChecker\NewAPIPropertyAttributeChecker.cs" />
<Compile Include="src\ORM\Columns\PropertyAttributeChecker\OldAPIPropertyAttributeChecker.cs" />
<Compile Include="src\ORM\Columns\PropertyAttributeChecker\IPropertyAttributeChecker.cs" />
<Compile Include="src\ORM\Columns\PropertyAttributeChecker\PropertyAttributeCheckerFactory.cs" />
<Compile Include="src\ORM\Columns\PropertyCollection\NewAPIPropertyCollector.cs" />
<Compile Include="src\ORM\Columns\PropertyCollection\NullPropertyCollector.cs" />
<Compile Include="src\ORM\Columns\PropertyCollection\OldAPIPropertyCollector.cs" />
<Compile Include="src\ORM\Columns\PropertyCollection\PropertyCollector.cs" />
<Compile Include="src\ORM\Columns\PropertyCollection\PropertyCollectorFactory.cs" />
<Compile Include="src\ORM\Columns\PropertyTypeTableMappingColumn.cs" />
<Compile Include="src\ORM\Columns\StandardPropertyCollector.cs" />
<Compile Include="src\ORM\TypeExtensions.cs" />
<Compile Include="src\ORM\NewAPIORMUtilitiesHelper.cs" />
<Compile Include="src\ORM\OldAPIORMUtilitiesHelper.cs" />
<Compile Include="src\ORM\ORMUtilitiesHelper.cs" />
<Compile Include="src\ORM\ORMUtilitiesHelperFactory.cs" />
<Compile Include="src\ORM\TableAttributeCollection\NewReflectionAPITableAttributeCollector.cs" />
<Compile Include="src\ORM\TableAttributeCollection\OldReflectionAPITableAttributeCollector.cs" />
<Compile Include="src\ORM\TableAttributeCollection\TableAttributeCollector.cs" />
<Compile Include="src\ORM\TableAttributeCollection\TableAttributeCollectorFactory.cs" />
<Compile Include="src\ORM\TableMapping.cs" />
<Compile Include="src\ORM\Columns\TableMappingColumn.cs" />
<Compile Include="src\ORM\Columns\TableMappingColumnFactory.cs" />
<Compile Include="src\ORM\TableMappingConfiguration.cs" />
<Compile Include="src\Query\BaseTableQuery.cs" />
<Compile Include="src\SQLite\CreateFlags.cs" />
<Compile Include="src\SQLite\CreateTablesResult.cs" />
<Compile Include="src\Misc\ListEx.cs" />
<Compile Include="src\Query\NotifyTableChangedEventArgs.cs" />
<Compile Include="src\Exceptions\NotNullConstraintViolationException.cs" />
<Compile Include="src\ORM\ORMUtilities.cs" />
<Compile Include="src\SQLite\PreparedSqLiteInsertCommand.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="src\SQLite\SQLAttributes.cs" />
<Compile Include="src\SQLite\SQLite3.cs" />
<Compile Include="src\Async\SQLiteAsyncConnection.cs" />
<Compile Include="src\SQLite\SQLiteCommand.cs" />
<Compile Include="src\SQLite\SQLiteConnection.cs" />
<Compile Include="src\SQLite\SQLiteConnectionPool.cs" />
<Compile Include="src\SQLite\SQLiteConnectionString.cs" />
<Compile Include="src\SQLite\SQLiteConnectionWithLock.cs" />
<Compile Include="src\Exceptions\SQLiteException.cs" />
<Compile Include="src\SQLite\SQLiteOpenFlags.cs" />
<Compile Include="src\Async\AsyncTableQuery.cs" />
<Compile Include="src\ORM\StandardTableMapping.cs" />
<Compile Include="src\Query\TableQuery.cs" />
<Compile Include="src\SQLite\SQLiteType.cs" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<Reference Include="Xamarin.Forms.Core">
<HintPath>..\..\packages\Xamarin.Forms.1.4.2.6355\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Core.dll</HintPath>
</Reference>
<Reference Include="Xamarin.Forms.Platform">
<HintPath>..\..\packages\Xamarin.Forms.1.4.2.6355\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Platform.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Xamarin.Forms.Xaml">
<HintPath>..\..\packages\Xamarin.Forms.1.4.2.6355\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Xaml.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Content Include="lib\metro\ARM\sqlite3.dll" />
<Content Include="lib\metro\x64\sqlite3.dll" />
<Content Include="lib\metro\x86\sqlite3.dll" />
<Content Include="lib\wp7\Community.CsharpSqlite.WinPhone.dll" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
<Import Project="..\..\packages\Xamarin.Forms.1.4.2.6355\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets" Condition="Exists('..\..\packages\Xamarin.Forms.1.4.2.6355\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\..\packages\Xamarin.Forms.1.4.2.6355\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Xamarin.Forms.1.4.2.6355\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets'))" />
</Target>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>