nuget-package.nuspec 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0"?>
  2. <package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="nuspec.xsd">
  3. <metadata>
  4. <id>Google.ProtocolBuffers</id>
  5. <version>2.3.0.277</version>
  6. <owners>Jon Skeet</owners>
  7. <authors>Jon Skeet, Roger Knapp</authors>
  8. <licenseUrl>http://code.google.com/p/protobuf-csharp-port/source/browse/license.txt</licenseUrl>
  9. <projectUrl>http://code.google.com/p/protobuf-csharp-port/</projectUrl>
  10. <requireLicenseAcceptance>false</requireLicenseAcceptance>
  11. <copyright>Copyright 2008 Google Inc. All rights reserved.</copyright>
  12. <tags>Protocol Buffers Binary Serialization Format Google</tags>
  13. <title>Google Protocol Buffers</title>
  14. <summary>A managed code generator and library for Google's data interchange format.</summary>
  15. <description><![CDATA[
  16. Protocol Buffers is a binary serialization format and technology, released to the open source community by Google in 2008.
  17. Its primary use is to produce small fast binary representations of a 'message' or object for serialization or transportation.
  18. There are various implementations of Protocol Buffers in .NET. This project is a fairly close port of the Google Java implementation.
  19. There are two main parts:
  20. tools/protoc.exe, which takes the textual representation of the protocol buffer and turns it into a binary representation for use with ProtoGen.exe.
  21. tools/ProtoGen.exe, which takes binary representations of protocol buffer descriptors (as generated by the "stock" protoc binary supplied by Google) and creates C# source code. This is only required at build time.
  22. lib/*/Google.ProtocolBuffers.dll, which is a supporting library. This is required at execution time.
  23. lib/*/Google.ProtocolBuffers.Serialization.dll, a supplementary library that provides extensions for reading and writing protocol buffers to xml, json, and others.
  24. LINKS:
  25. Project Home - http://code.google.com/p/protobuf-csharp-port
  26. Online Help - http://help.protobuffers.net
  27. Developer Guide - http://code.google.com/apis/protocolbuffers/docs/overview.html
  28. Language Guide - http://code.google.com/apis/protocolbuffers/docs/proto.html
  29. ]]></description>
  30. </metadata>
  31. <files>
  32. <!-- Release Binaries -->
  33. <file src="2.3.0.277\Release\Google.ProtocolBuffers.dll" target="lib\net20" />
  34. <file src="2.3.0.277\Release\Google.ProtocolBuffers.*.dll" target="lib\net20" />
  35. <!-- Silverlight Binaries -->
  36. <file src="2.3.0.277\Release_Silverlight2\Google.ProtocolBuffers.dll" target="lib\sl20" />
  37. <file src="2.3.0.277\Release_Silverlight2\Google.ProtocolBuffers.*.dll" target="lib\sl20" />
  38. <!-- Tools -->
  39. <file src="2.3.0.277\Protoc\*.exe" target="tools" />
  40. <file src="2.3.0.277\Release\Google.ProtocolBuffers.dll" target="tools" />
  41. <file src="2.3.0.277\Release\*.exe" target="tools" />
  42. <file src="2.3.0.277\Release\*.exe.config" target="tools" />
  43. <!-- Content -->
  44. <file src="2.3.0.277\license.txt" target="content\licenses"/>
  45. <file src="2.3.0.277\Protoc\protoc-license.txt" target="content\licenses"/>
  46. <file src="2.3.0.277\protos\google\protobuf\descriptor.proto" target="content\protos\google\protobuf" />
  47. <file src="2.3.0.277\protos\google\protobuf\csharp_options.proto" target="content\protos\google\protobuf" />
  48. </files>
  49. </package>