-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtdslib.nuspec
27 lines (27 loc) · 1.36 KB
/
tdslib.nuspec
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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Microsoft.Data.Tools.TdsLib</id>
<version>$version$</version>
<title>Open implementation of the TDS protocol in C#.</title>
<authors>Microsoft</authors>
<icon>icon.png</icon>
<projectUrl>https://github.com/microsoft/TdsLib</projectUrl>
<repository type="git" url="https://github.com/microsoft/TdsLib.git" branch="main" />
<license type="expression">MIT</license>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>Open implementation of the TDS protocol (version 7.4) in managed C# code.</description>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<tags>TDS MS-TDS Azure Sql SqlServer</tags>
<dependencies>
<group targetFramework=".NETStandard2.0">
</group>
</dependencies>
</metadata>
<files>
<file src="icon.png" target="" />
<file src="LICENSE.txt" target="" />
<file src="src\Microsoft.Data.Tools.TdsLib\bin\$configuration$\netstandard2.0\*.dll" target="lib\netstandard2.0" />
<file src="src\Microsoft.Data.Tools.TdsLib\bin\$configuration$\netstandard2.0\*.xml" target="lib\netstandard2.0" />
</files>
</package>