forked from kenjiuno/Npgsql
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathNpgsql.NodaTime.csproj
More file actions
19 lines (19 loc) · 944 Bytes
/
Npgsql.NodaTime.csproj
File metadata and controls
19 lines (19 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>Shay Rojansky</Authors>
<Description>NodaTime plugin for Npgsql, allowing mapping of PostgreSQL date/time types to NodaTime types.</Description>
<PackageTags>npgsql postgresql postgres nodatime date time ado ado.net database sql</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework Condition="'$(DeveloperBuild)' == 'True'">net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NodaTime" />
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Npgsql\Npgsql.csproj" />
<ProjectReference Include="../Npgsql.SourceGenerators/Npgsql.SourceGenerators.csproj"
OutputItemType="Analyzer"
ReferenceOutputAssembly="false" />
</ItemGroup>
</Project>