forked from npgsql/npgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNpgsql.nuspec
More file actions
executable file
·33 lines (33 loc) · 2.09 KB
/
Npgsql.nuspec
File metadata and controls
executable file
·33 lines (33 loc) · 2.09 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
<?xml version="1.0"?>
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>Npgsql</id>
<title>Npgsql</title>
<version>2.2.0</version>
<authors>Francisco Figueiredo Jr., Josh Cooley, Dave Page, Jon Asher, Brar Piening, Chris Morgan, Hiroshi Saito, Jon Hanna, Federico Di Gregorio, Glen Parker, Shay Rojansky</authors>
<owners>Francisco Figueiredo Jr., Josh Cooley, Shay Rojansky</owners>
<licenseUrl>https://github.com/npgsql/Npgsql/wiki/License</licenseUrl>
<projectUrl>https://github.com/npgsql/Npgsql</projectUrl>
<copyright>Copyright 2002 - 2014 Npgsql Development Team</copyright>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Npgsql is a .Net data provider for Postgresql. It allows any program developed for .Net framework to access database server. It is implemented in 100% C# code. Postgresql 9.x and above is officially supported.</description>
<summary>Npgsql is a .Net data provider for Postgresql.</summary>
<language>en-US</language>
<tags>Npgsql postgres data database Postgresql</tags>
</metadata>
<files>
<file src="bin\Release-net20\**\*.dll" target="lib\net20" exclude="**\policy.*" />
<file src="bin\Release-net20\*.pdb" target="lib\net20"/>
<file src="bin\Release-net20\*.xml" target="lib\net20"/>
<file src="bin\Release-net35\**\*.dll" target="lib\net35" exclude="**\policy.*" />
<file src="bin\Release-net35\*.pdb" target="lib\net35"/>
<file src="bin\Release-net35\*.xml" target="lib\net35"/>
<file src="bin\Release-net40\**\*.dll" target="lib\net40" exclude="**\policy.*" />
<file src="bin\Release-net40\*.pdb" target="lib\net40"/>
<file src="bin\Release-net40\*.xml" target="lib\net40"/>
<file src="bin\Release-net45\**\*.dll" target="lib\net45" exclude="**\policy.*" />
<file src="bin\Release-net45\*.pdb" target="lib\net45"/>
<file src="bin\Release-net45\*.xml" target="lib\net45"/>
<file src="**\*.cs" target="src" />
</files>
</package>