Google.ProtocolBuffersLite.nuspec 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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.ProtocolBuffersLite</id>
  5. <version>$version$</version>
  6. <owners>Jon Skeet</owners>
  7. <authors>Jon Skeet</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.ProtocolBuffersLite</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.ProtocolBuffersLite.dll, which is a supporting library. This is required at execution time.
  23. lib/*/Google.ProtocolBuffersLite.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. <references>
  31. <reference file="Google.ProtocolBuffersLite.dll"/>
  32. <reference file="Google.ProtocolBuffersLite.Serialization.dll"/>
  33. </references>
  34. </metadata>
  35. <files>
  36. <!-- Release Binaries -->
  37. <file src="..\build_output\Release\**\Google.ProtocolBuffersLite.???" target="lib\" />
  38. <file src="..\build_output\Release\**\Google.ProtocolBuffersLite.Serialization.???" target="lib\" />
  39. <!-- Tools -->
  40. <file src="..\build_output\tools\**\*" target="tools\" />
  41. <file src="..\build_output\protos\**\*" target="tools\" />
  42. <!-- Content -->
  43. <file src="..\build_output\CHANGES.txt" target="tools\"/>
  44. <file src="..\build_output\license.txt" target="tools\"/>
  45. <file src="..\build_output\tools\protoc-license.txt" target="tools\"/>
  46. <!-- Source -->
  47. <file src="..\src\ProtocolBuffers\**\*.cs" target="src\ProtocolBuffers\"/>
  48. <file src="..\src\ProtocolBuffers.Serialization\**\*.cs" target="src\ProtocolBuffers.Serialization\"/>
  49. </files>
  50. </package>