Commit ec5fb9bd authored by csharptest's avatar csharptest Committed by Grigand

Fixes based on review

parent 0ce7bed4
<?xml version="1.0"?> <?xml version="1.0"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="nuspec.xsd"> <package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="nuspec.xsd">
<metadata> <metadata>
<id>Google.ProtocolBuffers</id> <id>Google.ProtocolBuffers</id>
<version>2.3.0.277</version> <version>2.3.0.277</version>
<owners>Jon Skeet</owners> <owners>Jon Skeet</owners>
<authors>Jon Skeet, Roger Knapp</authors> <authors>Jon Skeet, Roger Knapp</authors>
<licenseUrl>http://code.google.com/p/protobuf-csharp-port/source/browse/license.txt</licenseUrl> <licenseUrl>http://code.google.com/p/protobuf-csharp-port/source/browse/license.txt</licenseUrl>
<projectUrl>http://code.google.com/p/protobuf-csharp-port/</projectUrl> <projectUrl>http://code.google.com/p/protobuf-csharp-port/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance> <requireLicenseAcceptance>false</requireLicenseAcceptance>
<copyright>Copyright 2008 Google Inc. All right s reserved.</copyright> <copyright>Copyright 2008 Google Inc. All rights reserved.</copyright>
<tags>Protocol Buffers Binary Format Google</tags> <tags>Protocol Buffers Binary Serialization Format Google</tags>
<title>Google Protocol Buffers</title> <title>Google Protocol Buffers</title>
<summary>A managed code generator and library for google's data interchange format.</summary> <summary>A managed code generator and library for Google's data interchange format.</summary>
<description><![CDATA[ <description><![CDATA[
Protocol Buffers is a binary serialization format and technology, released to the open source community by Google in 2008. Protocol Buffers is a binary serialization format and technology, released to the open source community by Google in 2008.
It's primary use is to produce small fast binary representations of a 'message' or object for serialization or transportation. 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 various implementations of Protocol Buffers in .NET. This project is a fairly close port of the Google Java implementation.
There are two main parts: 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/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. 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.ProtocolBuffers.dll, which is a supporting library. This is required at execution time. lib/*/Google.ProtocolBuffers.dll, which is a supporting library. This is required at execution time.
lib/*/Google.ProtocolBuffers.Serialization.dll, a supplimentary library that provides extensions for reading and writing protocol buffers to xml, json, and others. lib/*/Google.ProtocolBuffers.Serialization.dll, a supplementary library that provides extensions for reading and writing protocol buffers to xml, json, and others.
LINKS: LINKS:
Project Home - http://code.google.com/p/protobuf-csharp-port Project Home - http://code.google.com/p/protobuf-csharp-port
Online Help - http://help.protobuffers.net Online Help - http://help.protobuffers.net
Developer Guide - http://code.google.com/apis/protocolbuffers/docs/overview.html Developer Guide - http://code.google.com/apis/protocolbuffers/docs/overview.html
Language Guide - http://code.google.com/apis/protocolbuffers/docs/proto.html Language Guide - http://code.google.com/apis/protocolbuffers/docs/proto.html
Protoc Project - http://code.google.com/p/protobuf
]]></description>
]]></description> </metadata>
</metadata> <files>
<files> <!-- Release Binaries -->
<!-- Release Binaries --> <file src="2.3.0.277\Release\Google.ProtocolBuffers.dll" target="lib\net20" />
<file src="2.3.0.277\Release\Google.ProtocolBuffers.dll" target="lib\net20" /> <file src="2.3.0.277\Release\Google.ProtocolBuffers.*.dll" target="lib\net20" />
<file src="2.3.0.277\Release\Google.ProtocolBuffers.*.dll" target="lib\net20" /> <!-- Silverlight Binaries -->
<!-- Silverlight Binaries --> <file src="2.3.0.277\Release_Silverlight2\Google.ProtocolBuffers.dll" target="lib\sl20" />
<file src="2.3.0.277\Release_Silverlight2\Google.ProtocolBuffers.dll" target="lib\sl20" /> <file src="2.3.0.277\Release_Silverlight2\Google.ProtocolBuffers.*.dll" target="lib\sl20" />
<file src="2.3.0.277\Release_Silverlight2\Google.ProtocolBuffers.*.dll" target="lib\sl20" /> <!-- Tools -->
<!-- Tools --> <file src="2.3.0.277\Protoc\*.exe" target="tools" />
<file src="2.3.0.277\Protoc\*.exe" target="tools" /> <file src="2.3.0.277\Release\Google.ProtocolBuffers.dll" target="tools" />
<file src="2.3.0.277\Release\Google.ProtocolBuffers.dll" target="tools" /> <file src="2.3.0.277\Release\*.exe" target="tools" />
<file src="2.3.0.277\Release\*.exe" target="tools" /> <file src="2.3.0.277\Release\*.exe.config" target="tools" />
<file src="2.3.0.277\Release\*.exe.config" target="tools" /> <!-- Content -->
<!-- Content --> <file src="2.3.0.277\license.txt" target="content\licenses"/>
<file src="2.3.0.277\license.txt" target="content\licenses"/> <file src="2.3.0.277\Protoc\protoc-license.txt" target="content\licenses"/>
<file src="2.3.0.277\Protoc\protoc-license.txt" target="content\licenses"/> <file src="2.3.0.277\protos\google\protobuf\descriptor.proto" target="content\protos\google\protobuf" />
<file src="2.3.0.277\protos\google\protobuf\descriptor.proto" target="content\protos\google\protobuf" /> <file src="2.3.0.277\protos\google\protobuf\csharp_options.proto" target="content\protos\google\protobuf" />
<file src="2.3.0.277\protos\google\protobuf\csharp_options.proto" target="content\protos\google\protobuf" /> </files>
</files>
</package> </package>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment