-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathMicrosoft.Data.Sqlite.Core.csproj
More file actions
70 lines (63 loc) · 2.67 KB
/
Microsoft.Data.Sqlite.Core.csproj
File metadata and controls
70 lines (63 loc) · 2.67 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
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Microsoft.Data.Sqlite</AssemblyName>
<RootNamespace>$(AssemblyName)</RootNamespace>
<PackageId>Microsoft.Data.Sqlite.Core</PackageId>
<Description>Microsoft.Data.Sqlite is a lightweight ADO.NET provider for SQLite. This package does not include a copy of the native SQLite library.
Commonly Used Types:
Microsoft.Data.Sqlite.SqliteCommand
Microsoft.Data.Sqlite.SqliteConnection
Microsoft.Data.Sqlite.SqliteConnectionStringBuilder
Microsoft.Data.Sqlite.SqliteDataReader
Microsoft.Data.Sqlite.SqliteException
Microsoft.Data.Sqlite.SqliteFactory
Microsoft.Data.Sqlite.SqliteParameter
Microsoft.Data.Sqlite.SqliteTransaction</Description>
<TargetFrameworks>$(NetMinimum);$(NetFrameworkToolCurrent)</TargetFrameworks>
<MinClientVersion>3.6</MinClientVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<CodeAnalysisRuleSet>Microsoft.Data.Sqlite.Core.ruleset</CodeAnalysisRuleSet>
<PackageTags>SQLite;Data;ADO.NET</PackageTags>
<PackageProjectUrl>https://docs.microsoft.com/dotnet/standard/data/sqlite/</PackageProjectUrl>
<IsAotCompatible>true</IsAotCompatible>
</PropertyGroup>
<ItemGroup>
<None Update="Properties\Resources.Designer.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</None>
<None Update="SqliteConnection.CreateAggregate.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>SqliteConnection.CreateAggregate.cs</LastGenOutput>
</None>
<None Update="SqliteConnection.CreateFunction.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>SqliteConnection.CreateFunction.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="SQLitePCLRaw.core" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.Designer.tt</DependentUpon>
</Compile>
<Compile Update="SqliteCommand.cs" />
<Compile Update="SqliteConnection.CreateAggregate.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>SqliteConnection.CreateAggregate.tt</DependentUpon>
</Compile>
<Compile Update="SqliteConnection.CreateFunction.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>SqliteConnection.CreateFunction.tt</DependentUpon>
</Compile>
<Compile Update="SqliteConnection.cs" />
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
</Project>