forked from PostgreSQLCopyHelper/PostgreSQLCopyHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
31 lines (28 loc) · 1.28 KB
/
Directory.Build.props
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
<Project>
<!-- Package configuration -->
<PropertyGroup>
<Copyright>Copyright © 2019 PostgreSQLCopyHelper Team</Copyright>
<Company />
<Product />
<Authors>Philipp Wagner;Steven Yeh</Authors>
<Description>A library for Bulk Copy / Bulk Inserts with PostgreSQL.</Description>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>git://github.com/PostgreSQLCopyHelper/PostgreSQLCopyHelper</RepositoryUrl>
<PackageProjectUrl>https://github.com/PostgreSQLCopyHelper/PostgreSQLCopyHelper</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>postgresql, bulk insert</PackageTags>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>True</IncludeSymbols>
<VersionPrefix>2.0.0</VersionPrefix>
</PropertyGroup>
<!-- Language configuration -->
<PropertyGroup>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<!-- Reference .NET Framework reference assemblies, allows building on environments without .NET Framework installed
(e.g. Linux). Gets ignored on non-framework TFMs. -->
<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0-preview.2" PrivateAssets="All" />
</ItemGroup>
</Project>