1<?xml version="1.0"?>
2
3<!--
4  Licensed under the Apache License, Version 2.0 (the "License");
5  you may not use this file except in compliance with the License.
6  You may obtain a copy of the License at
7
8      http://www.apache.org/licenses/LICENSE-2.0
9
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15
16  Instructions for building a nuget package:
17
18  1. Open Thrift.sln in lib\netstd and build the release version of
19     the "Thrift" project.
20  2. nuget setApiKey <your-api-key>
21  3. nuget pack ApacheThrift.nuspec -Symbols -SymbolPackageFormat snupkg
22  4. nuget push ApacheThrift.0.14.0.nupkg -Source https://api.nuget.org/v3/index.json
23  -->
24
25<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
26  <metadata>
27    <id>ApacheThrift</id>
28    <version>0.14.0</version>
29    <title>Apache Thrift 0.14.0</title>
30    <authors>Apache Thrift Developers</authors>
31    <owners>Apache Software Foundation</owners>
32    <license type="expression">Apache-2.0</license>
33    <projectUrl>http://thrift.apache.org/</projectUrl>
34    <requireLicenseAcceptance>true</requireLicenseAcceptance>
35    <summary>Apache Thrift .NET Library</summary>
36    <description>
37      Contains runtime libraries from lib/netstd for netstandard2.0 framework development.
38    </description>
39    <repository type="GitHub" url="https://github.com/apache/thrift" branch="release/0.14.0" />
40    <tags>Apache Thrift RPC</tags>
41  </metadata>
42  <files>
43    <file src="lib\netstd\Thrift\bin\Release\netstandard2.0\*.*" target="lib\netstandard2.0" />
44  </files>
45</package>