Google.ProtocolBuffersLite.nuspec 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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\v2.0\Release\Google.ProtocolBuffersLite.???" target="lib\net20" />
  38. <file src="..\build_output\v2.0\Release\Google.ProtocolBuffersLite.Serialization.???" target="lib\net20" />
  39. <file src="..\build_output\v3.5\Release\Google.ProtocolBuffersLite.???" target="lib\net35" />
  40. <file src="..\build_output\v3.5\Release\Google.ProtocolBuffersLite.Serialization.???" target="lib\net35" />
  41. <file src="..\build_output\v4.0\Release\Google.ProtocolBuffersLite.???" target="lib\net40" />
  42. <file src="..\build_output\v4.0\Release\Google.ProtocolBuffersLite.Serialization.???" target="lib\net40" />
  43. <!-- Silverlight Binaries -->
  44. <file src="..\build_output\v2.0\Release_Silverlight\Google.ProtocolBuffersLite.???" target="lib\sl20" />
  45. <file src="..\build_output\v2.0\Release_Silverlight\Google.ProtocolBuffersLite.Serialization.???" target="lib\sl20" />
  46. <file src="..\build_output\v3.5\Release_Silverlight\Google.ProtocolBuffersLite.???" target="lib\sl30" />
  47. <file src="..\build_output\v3.5\Release_Silverlight\Google.ProtocolBuffersLite.Serialization.???" target="lib\sl30" />
  48. <file src="..\build_output\v4.0\Release_Silverlight\Google.ProtocolBuffersLite.???" target="lib\sl40" />
  49. <file src="..\build_output\v4.0\Release_Silverlight\Google.ProtocolBuffersLite.Serialization.???" target="lib\sl40" />
  50. <!-- Tools -->
  51. <file src="..\lib\Protoc.exe" target="tools" />
  52. <file src="..\build_output\ProtoGen\*" target="tools" />
  53. <!-- Content -->
  54. <file src="..\CHANGES.txt" target="content"/>
  55. <file src="..\license.txt" target="content\licenses"/>
  56. <file src="..\lib\protoc-license.txt" target="content\licenses"/>
  57. <file src="..\protos\google\protobuf\descriptor.proto" target="content\protos\google\protobuf" />
  58. <file src="..\protos\google\protobuf\csharp_options.proto" target="content\protos\google\protobuf" />
  59. <file src="..\src\ProtocolBuffers\**\*.cs" target="src\ProtocolBuffers\"/>
  60. <file src="..\src\ProtocolBuffers.Serialization\**\*.cs" target="src\ProtocolBuffers.Serialization\"/>
  61. </files>
  62. </package>