-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPostgresORM.csproj
More file actions
34 lines (27 loc) · 1.37 KB
/
PostgresORM.csproj
File metadata and controls
34 lines (27 loc) · 1.37 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>csporm</PackageId>
<Version>1.0.2</Version>
<PackageTags>orm;sql;npgsql;postgresql</PackageTags>
<Authors>AlexeyShalaev;otter18;qwatro2;ArtemiyPavlychev</Authors>
<Description>
Your friendly neighborhood Postgres ORM
GitHub: https://github.com/AlexeyShalaev/CSharpPostgresORM
</Description>
<Copyright>(c) Alexey Shalaev & Chernykh Vladimir (otter18) & Nikolai Vlasov (qwatro2) & Artemiy Pavlychev, 2023</Copyright>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/AlexeyShalaev/CSharpPostgresORM</PackageProjectUrl>
<RepositoryUrl>https://github.com/AlexeyShalaev/CSharpPostgresORM</RepositoryUrl>
<RepositoryType>github</RepositoryType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.0.123"/>
<PackageReference Include="Npgsql" Version="7.0.1"/>
<None Include="../../README.md" Pack="true" PackagePath="/"/>
<None Include="../../LICENSE" Pack="true" PackagePath="/"/>
</ItemGroup>
</Project>