-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathag.DbData.SQLite.csproj
More file actions
40 lines (33 loc) · 1.63 KB
/
Copy pathag.DbData.SQLite.csproj
File metadata and controls
40 lines (33 loc) · 1.63 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>3.0.0.9</Version>
<Authors>Andrey Gruber</Authors>
<Description>Simplifies working with SQLite databases in .NET Framework, .NET Core and .NET Standard projects</Description>
<PackageTags>Database, SQLite, ADO.NET, .NET, Core, Snandard, Framework</PackageTags>
<RepositoryUrl>https://github.com/dedpichto/ag.DbData.SQLite</RepositoryUrl>
<PackageProjectUrl>https://github.com/dedpichto/ag.DbData.SQLite</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReleaseNotes>Updtes Nuget dependencies</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>ag.DbData.SQLite.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>ag.DbData.SQLite.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove=".gitignore" />
<None Remove="LICENSE" />
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<None Include="readme.txt" Pack="true" PackagePath="." />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ag.DbData.Abstraction" Version="3.0.0.9" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.118" />
</ItemGroup>
</Project>