blob: 7bbfb0dc951cb00eed4dcc5d860df21c22103ce3 [file] [log] [blame]
James E. King III4c716602019-01-01 19:28:23 -05001<?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 Geyera304b7c2019-06-30 15:32:00 +020020 2. Open Thrift.sln in lib\netstd and build the release version of
James E. King III4c716602019-01-01 19:28:23 -050021 the "Thrift" project.
22 3. nuget setApiKey <your-api-key>
23 3. nuget pack ApacheThrift.nuspec -Symbols -SymbolPackageFormat snupkg
James E. King III8935c982019-01-25 00:41:17 -050024 4. nuget push ApacheThrift.0.13.0.nupkg -Source https://api.nuget.org/v3/index.json
James E. King III4c716602019-01-01 19:28:23 -050025 -->
26
27<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
28 <metadata>
29 <id>ApacheThrift</id>
James E. King III8935c982019-01-25 00:41:17 -050030 <version>0.13.0</version>
31 <title>Apache Thrift 0.13.0</title>
James E. King III4c716602019-01-01 19:28:23 -050032 <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 Geyera304b7c2019-06-30 15:32:00 +020040 and from lib/netstd for netstandard2.0 framework development.
James E. King III4c716602019-01-01 19:28:23 -050041 </description>
James E. King III8935c982019-01-25 00:41:17 -050042 <repository type="GitHub" url="https://github.com/apache/thrift" branch="release/0.13.0" />
James E. King III4c716602019-01-01 19:28:23 -050043 <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 Geyera304b7c2019-06-30 15:32:00 +020048 <file src="lib\netstd\Thrift\bin\Release\netstandard2.0\*.*" target="lib\netstandard2.0" />
James E. King III4c716602019-01-01 19:28:23 -050049 </files>
50</package>