aboutsummaryrefslogtreecommitdiff
path: root/build/Google.ProtocolBuffersLite.nuspec
blob: 819eab62f1c0d06b5e7524bce46f257a4407a58d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?xml version="1.0"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="nuspec.xsd">
  <metadata>
    <id>Google.ProtocolBuffersLite</id>
    <version>$version$</version>
    <owners>Jon Skeet</owners>
    <authors>Jon Skeet</authors>
    <licenseUrl>http://code.google.com/p/protobuf-csharp-port/source/browse/license.txt</licenseUrl>
    <projectUrl>http://code.google.com/p/protobuf-csharp-port/</projectUrl>
    <requireLicenseAcceptance>false</requireLicenseAcceptance>
    <copyright>Copyright 2008 Google Inc.  All rights reserved.</copyright>
    <tags>Protocol Buffers Binary Serialization Format Google</tags>

    <title>Google.ProtocolBuffersLite</title>
    <summary>A managed code generator and library for Google's data interchange format.</summary>
    <description><![CDATA[
Protocol Buffers is a binary serialization format and technology, released to the open source community by Google in 2008.  
Its primary use is to produce small fast binary representations of a 'message' or object for serialization or transportation.
There are various implementations of Protocol Buffers in .NET. This project is a fairly close port of the Google Java implementation.

There are two main parts:

tools/protoc.exe, which takes the textual representation of the protocol buffer and turns it into a binary representation for use with ProtoGen.exe.
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.

lib/*/Google.ProtocolBuffersLite.dll, which is a supporting library. This is required at execution time.
lib/*/Google.ProtocolBuffersLite.Serialization.dll, a supplementary library that provides extensions for reading and writing protocol buffers to xml, json, and others.

LINKS:

Project Home    - http://code.google.com/p/protobuf-csharp-port
Online Help     - http://help.protobuffers.net
Developer Guide - http://code.google.com/apis/protocolbuffers/docs/overview.html
Language Guide  - http://code.google.com/apis/protocolbuffers/docs/proto.html

    ]]></description>
	
    <references>
      <reference file="Google.ProtocolBuffersLite.dll"/>
      <reference file="Google.ProtocolBuffersLite.Serialization.dll"/>
    </references>
  
  </metadata>
  <files>
    <!-- Release Binaries -->
    <file src="..\build_output\v2.0\Release\Google.ProtocolBuffersLite.???" target="lib\net20" />
    <file src="..\build_output\v2.0\Release\Google.ProtocolBuffersLite.Serialization.???" target="lib\net20" />
    <file src="..\build_output\v3.5\Release\Google.ProtocolBuffersLite.???" target="lib\net35" />
    <file src="..\build_output\v3.5\Release\Google.ProtocolBuffersLite.Serialization.???" target="lib\net35" />
    <file src="..\build_output\v4.0\Release\Google.ProtocolBuffersLite.???" target="lib\net40" />
    <file src="..\build_output\v4.0\Release\Google.ProtocolBuffersLite.Serialization.???" target="lib\net40" />
    <!-- Silverlight Binaries -->
    <file src="..\build_output\v2.0\Release_Silverlight\Google.ProtocolBuffersLite.???" target="lib\sl20" />
    <file src="..\build_output\v2.0\Release_Silverlight\Google.ProtocolBuffersLite.Serialization.???" target="lib\sl20" />
    <file src="..\build_output\v3.5\Release_Silverlight\Google.ProtocolBuffersLite.???" target="lib\sl30" />
    <file src="..\build_output\v3.5\Release_Silverlight\Google.ProtocolBuffersLite.Serialization.???" target="lib\sl30" />
    <file src="..\build_output\v4.0\Release_Silverlight\Google.ProtocolBuffersLite.???" target="lib\sl40" />
    <file src="..\build_output\v4.0\Release_Silverlight\Google.ProtocolBuffersLite.Serialization.???" target="lib\sl40" />
    <!-- Tools -->
    <file src="..\lib\Protoc.exe" target="tools" />
    <file src="..\build_output\ProtoGen\*" target="tools" />
    <!-- Content -->
    <file src="..\CHANGES.txt" target="content"/>
    <file src="..\license.txt" target="content\licenses"/>
    <file src="..\lib\protoc-license.txt" target="content\licenses"/>
    <file src="..\protos\google\protobuf\descriptor.proto" target="content\protos\google\protobuf" />
    <file src="..\protos\google\protobuf\csharp_options.proto" target="content\protos\google\protobuf" />

    <file src="..\src\ProtocolBuffers\**\*.cs" target="src\ProtocolBuffers\"/>
    <file src="..\src\ProtocolBuffers.Serialization\**\*.cs" target="src\ProtocolBuffers.Serialization\"/>
  </files>
</package>