James E. King III | 4c71660 | 2019-01-01 19:28:23 -0500 | [diff] [blame] | 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\csharp\src and build the release version |
| 19 | of the "Thrift" and "Thrift.45" projects. |
Jens Geyer | a304b7c | 2019-06-30 15:32:00 +0200 | [diff] [blame] | 20 | 2. Open Thrift.sln in lib\netstd and build the release version of |
James E. King III | 4c71660 | 2019-01-01 19:28:23 -0500 | [diff] [blame] | 21 | the "Thrift" project. |
| 22 | 3. nuget setApiKey <your-api-key> |
| 23 | 3. nuget pack ApacheThrift.nuspec -Symbols -SymbolPackageFormat snupkg |
James E. King III | 8935c98 | 2019-01-25 00:41:17 -0500 | [diff] [blame] | 24 | 4. nuget push ApacheThrift.0.13.0.nupkg -Source https://api.nuget.org/v3/index.json |
James E. King III | 4c71660 | 2019-01-01 19:28:23 -0500 | [diff] [blame] | 25 | --> |
| 26 | |
| 27 | <package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> |
| 28 | <metadata> |
| 29 | <id>ApacheThrift</id> |
James E. King III | 8935c98 | 2019-01-25 00:41:17 -0500 | [diff] [blame] | 30 | <version>0.13.0</version> |
| 31 | <title>Apache Thrift 0.13.0</title> |
James E. King III | 4c71660 | 2019-01-01 19:28:23 -0500 | [diff] [blame] | 32 | <authors>Apache Thrift Developers</authors> |
| 33 | <owners>Apache Software Foundation</owners> |
| 34 | <license type="expression">Apache-2.0</license> |
| 35 | <projectUrl>http://thrift.apache.org/</projectUrl> |
| 36 | <requireLicenseAcceptance>true</requireLicenseAcceptance> |
| 37 | <summary>Apache Thrift .NET Library</summary> |
| 38 | <description> |
| 39 | Contains runtime libraries from lib/csharp for net35 and net45 frameworks, |
Jens Geyer | a304b7c | 2019-06-30 15:32:00 +0200 | [diff] [blame] | 40 | and from lib/netstd for netstandard2.0 framework development. |
James E. King III | 4c71660 | 2019-01-01 19:28:23 -0500 | [diff] [blame] | 41 | </description> |
James E. King III | 8935c98 | 2019-01-25 00:41:17 -0500 | [diff] [blame] | 42 | <repository type="GitHub" url="https://github.com/apache/thrift" branch="release/0.13.0" /> |
James E. King III | 4c71660 | 2019-01-01 19:28:23 -0500 | [diff] [blame] | 43 | <tags>Apache Thrift RPC</tags> |
| 44 | </metadata> |
| 45 | <files> |
| 46 | <file src="lib\csharp\src\bin\Release\Thrift.*" target="lib\net35" /> |
| 47 | <file src="lib\csharp\src\bin\Release\Thrift45.*" target="lib\net45" /> |
Jens Geyer | a304b7c | 2019-06-30 15:32:00 +0200 | [diff] [blame] | 48 | <file src="lib\netstd\Thrift\bin\Release\netstandard2.0\*.*" target="lib\netstandard2.0" /> |
James E. King III | 4c71660 | 2019-01-01 19:28:23 -0500 | [diff] [blame] | 49 | </files> |
| 50 | </package> |