Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
ae9b3ff2
Commit
ae9b3ff2
authored
Apr 01, 2010
by
Jon Skeet
Committed by
unknown
Apr 01, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Release preparation
parent
d3f2d098
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
71 additions
and
18 deletions
+71
-18
ProtocolBuffers.build
ProtocolBuffers.build
+25
-0
readme.txt
readme.txt
+30
-2
AssemblyInfo.cs
src/AddressBook/Properties/AssemblyInfo.cs
+2
-2
AssemblyInfo.cs
src/ProtoBench/Properties/AssemblyInfo.cs
+2
-2
AssemblyInfo.cs
src/ProtoDump/Properties/AssemblyInfo.cs
+2
-2
AssemblyInfo.cs
src/ProtoGen.Test/Properties/AssemblyInfo.cs
+2
-2
AssemblyInfo.cs
src/ProtoGen/Properties/AssemblyInfo.cs
+2
-2
AssemblyInfo.cs
src/ProtoMunge/Properties/AssemblyInfo.cs
+2
-2
AssemblyInfo.cs
src/ProtocolBuffers.Test/Properties/AssemblyInfo.cs
+2
-2
AssemblyInfo.cs
src/ProtocolBuffers/Properties/AssemblyInfo.cs
+2
-2
No files found.
ProtocolBuffers.build
View file @
ae9b3ff2
...
...
@@ -83,6 +83,29 @@
<call
target=
"dist"
/>
</target>
<target
name=
"clean-build-all"
description=
"Rebuilds all source and binaries in all configurations, including distribution"
>
<!--
- Use call instead of dependencies to make it clear what's going on: we
- need to call some targets multiple times.
-->
<call
target=
"clean"
/>
<call
target=
"build"
/>
<call
target=
"generate-source"
/>
<call
target=
"copy-generated-source"
/>
<!-- Now we've got fresh source, build again -->
<call
target=
"clean"
/>
<call
target=
"build-all-configs"
/>
<!--
- In particularly insane situations we should possibly do another
- round of generating source and building, but it gets silly.
-->
<call
target=
"test"
/>
<call
target=
"dist"
/>
</target>
<target
name=
"clean"
description=
"Removes built binaries (of all configurations) and the source generation directory"
>
<delete>
...
...
@@ -265,6 +288,7 @@
<include
name=
"ProtoMunge/bin/Debug/ProtoMunge.*"
/>
<include
name=
"ProtoDump/bin/Debug/ProtoDump.*"
/>
<include
name=
"ProtoBench/bin/Debug/ProtoBench.*"
/>
<exclude
name=
"**/*vshost*"
/>
</fileset>
</copy>
<copy
todir=
"${output-dir}/Release"
...
...
@@ -275,6 +299,7 @@
<include
name=
"ProtoMunge/bin/Release/ProtoMunge.*"
/>
<include
name=
"ProtoDump/bin/Release/ProtoDump.*"
/>
<include
name=
"ProtoBench/bin/Release/ProtoBench.*"
/>
<exclude
name=
"**/*vshost*"
/>
</fileset>
</copy>
<copy
todir=
"${output-dir}/Silverlight2"
...
...
readme.txt
View file @
ae9b3ff2
Welcome! This is, of course, a placeholder file.
\ No newline at end of file
Welcome to the C# port of Google Protocol Buffers, written by Jon Skeet
(skeet@pobox.com) based on the work of many talented people.
For more information about this port, visit its homepage:
http://protobuf-csharp-port.googlecode.com
For more information about Protocol Buffers in general, visit the
project page for the C++, Java and Python project:
http://protobuf.googlecode.com
Release 0.9
-----------
Due to popular demand, I have built a version of the binaries to put
on the web site. Currently these are set at assembly version 0.9,
and an assembly file version of 0.9. This should be seen as a mark
of the readiness of the release process more than the stability of
the code. As far as I'm aware, the code itself is perfectly fine: I
certainly have plans for more features particularly around making
code generation simpler, but you should feel confident about the
parsing and serialization of messages produced with this version of
the library. Of course, if you do find any problems, *please* report
them at the web site.
Currently the downloadable release is built with the snk file which
is in the open source library. I am considering having a privately
held key so that you can check that you're building against a
"blessed" release - feedback on this (and any other aspect of the
release process) is very welcome.
src/AddressBook/Properties/AssemblyInfo.cs
View file @
ae9b3ff2
...
...
@@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("
1.0
.0.0")]
[assembly: AssemblyFileVersion("
1.0
.0.0")]
[assembly: AssemblyVersion("
0.9
.0.0")]
[assembly: AssemblyFileVersion("
0.9
.0.0")]
src/ProtoBench/Properties/AssemblyInfo.cs
View file @
ae9b3ff2
...
...
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("
1.0
.0.0")]
[assembly: AssemblyFileVersion("
1.0
.0.0")]
[assembly: AssemblyVersion("
0.9
.0.0")]
[assembly: AssemblyFileVersion("
0.9
.0.0")]
src/ProtoDump/Properties/AssemblyInfo.cs
View file @
ae9b3ff2
...
...
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("
1.0
.0.0")]
[assembly: AssemblyFileVersion("
1.0
.0.0")]
[assembly: AssemblyVersion("
0.9
.0.0")]
[assembly: AssemblyFileVersion("
0.9
.0.0")]
src/ProtoGen.Test/Properties/AssemblyInfo.cs
View file @
ae9b3ff2
...
...
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("
1.0
.0.0")]
[assembly: AssemblyFileVersion("
1.0
.0.0")]
[assembly: AssemblyVersion("
0.9
.0.0")]
[assembly: AssemblyFileVersion("
0.9
.0.0")]
src/ProtoGen/Properties/AssemblyInfo.cs
View file @
ae9b3ff2
...
...
@@ -32,8 +32,8 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("
1.0
.0.0")]
[assembly: AssemblyFileVersion("
1.0
.0.0")]
[assembly: AssemblyVersion("
0.9
.0.0")]
[assembly: AssemblyFileVersion("
0.9
.0.0")]
[
assembly
:
InternalsVisibleTo
(
"Google.ProtocolBuffers.ProtoGen.Test,PublicKey="
+
"0024000004800000940000000602000000240000525341310004000001000100cf43741ffc3e65"
+
"c85707245e144e90f1bb82f20d1b1555846008d4d5d5c9270a980350dcb1ddd40fcdde13c2780c"
+
...
...
src/ProtoMunge/Properties/AssemblyInfo.cs
View file @
ae9b3ff2
...
...
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("
1.0
.0.0")]
[assembly: AssemblyFileVersion("
1.0
.0.0")]
[assembly: AssemblyVersion("
0.9
.0.0")]
[assembly: AssemblyFileVersion("
0.9
.0.0")]
src/ProtocolBuffers.Test/Properties/AssemblyInfo.cs
View file @
ae9b3ff2
...
...
@@ -33,8 +33,8 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("
1.0
.0.0")]
[assembly: AssemblyFileVersion("
1.0
.0.0")]
[assembly: AssemblyVersion("
0.9
.0.0")]
[assembly: AssemblyFileVersion("
0.9
.0.0")]
// We don't really need CLSCompliance, but if the assembly builds with no warnings,
// that means the generator is okay.
[assembly: CLSCompliant(true)]
src/ProtocolBuffers/Properties/AssemblyInfo.cs
View file @
ae9b3ff2
...
...
@@ -63,9 +63,9 @@ using System.Runtime.CompilerServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("
1.0
.0.0")]
[assembly: AssemblyVersion("
0.9
.0.0")]
#if !COMPACT_FRAMEWORK_35
[assembly: AssemblyFileVersion("
1.0
.0.0")]
[assembly: AssemblyFileVersion("
0.9
.0.0")]
#endif
[
assembly
:
InternalsVisibleTo
(
"Google.ProtocolBuffers.Test,PublicKey="
+
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment