aboutsummaryrefslogtreecommitdiffhomepage
path: root/csharp/src/AddressBook
Commit message (Collapse)AuthorAge
* Write messages to backing field in generated C# cloning code (#4440)Gravatar Sydney Acksman2018-04-19
| | | | | | * Edited MessageFieldGenerator to clone to backing field instead of property * Generated C# proto code
* Add auto-generated header to C# generated files (#4038)Gravatar Jan Tattermusch2017-12-13
| | | | | | * Add auto-generated header to C# generated files * regenerate C# protos
* Add unknown field support for csharp (#3936)Gravatar Jie Luo2017-12-13
| | | Add unknown field support for csharp
* Update C# generated file for addressbook.protoGravatar Feng Xiao2017-09-11
|
* Convert C# projects to MSBuild (csproj) formatGravatar Jon Skeet2017-05-24
| | | | | | | | | | | | | | | | | This has one important packaging change: the netstandard version now depends (implicitly) on netstandard1.6.1 rather than on individual packages. This is the preferred style of dependency, and shouldn't affect any users - see http://stackoverflow.com/questions/42946951 for details. The tests are still NUnit, but NUnit doesn't support "dotnet test" yet; the test project is now an executable using NUnitLite. (When NUnit supports dotnet test, we can adapt to it.) Note that the project will now only work in Visual Studio 2017 (and Visual Studio Code, and from the command line with the .NET Core 1.0.0 SDK); Visual Studio 2015 does *not* support this project file format.
* remove leading whitespace in C# xml commentsGravatar Jan Tattermusch2016-12-12
|
* Move to dotnet cli for building, and .NET Core (netstandard1.0) as target ↵Gravatar Jon Skeet2016-07-14
| | | | | | | platform (#1727) Move to dotnet cli for building, and .NET Core (netstandard1.0) as target platform This also updates the version number to 3.0.0-beta4
* Changes to generated code from previous commitGravatar Jon Skeet2016-07-04
|
* Regenerate all C# code and make it compileGravatar Jon Skeet2016-04-20
| | | | JSON tests fail, as we're not using OriginalNameAttribute yet.
* Generated code changes from previous commitGravatar Jon Skeet2016-02-04
|
* Generated code for GeneratedCodeInfo changeGravatar Jon Skeet2016-02-04
|
* Generated code changes from previous commit.Gravatar Jon Skeet2015-12-15
|
* Generated code changes for previous commit (basically ↵Gravatar Jon Skeet2015-11-22
| | | | InternalBuildGeneratedFileFrom => FromGeneratedCode)
* Merge pull request #988 from gabikliot/CSharp-SampleUsage-Big-FixGravatar Jan Tattermusch2015-11-19
|\ | | | | Fixed a bug in CSharp SampleUsage.
| * Removed redundant comment.Gravatar Gabriel Kliot2015-11-19
| |
* | Generated code from previous commit.Gravatar Jon Skeet2015-11-19
| |
| * Fixed a bug in CSharp SampleUsage.Gravatar Gabriel Kliot2015-11-18
| |
* | Generated code changes and manual changes for previous commit.Gravatar Jon Skeet2015-11-09
|/
* Generated code from previous commit.Gravatar Jon Skeet2015-10-01
|
* Generated code changes for previous commit.Gravatar Jon Skeet2015-09-29
|
* Generated code for previous commitGravatar Jon Skeet2015-09-29
|
* Regenerated code. Most changes are whitespace, removing trailing spaces.Gravatar Jon Skeet2015-09-01
| | | | Other changes are due to the well-known types changing without us regenerating.
* Generated code for previous commit.Gravatar Jon Skeet2015-08-06
|
* Generated code changes for previous commit.Gravatar Jon Skeet2015-08-05
|
* Generated code changes for previous commit.Gravatar Jon Skeet2015-08-05
|
* make changes and fixes in signingGravatar Jan Tattermusch2015-08-02
|
* build signed assembliesGravatar Jan Tattermusch2015-08-02
|
* Generated code for previous commit.Gravatar Jon Skeet2015-07-30
|
* Generated code from previous commit.Gravatar Jon Skeet2015-07-30
|
* regenerate codeGravatar Jan Tattermusch2015-07-29
|
* First attempt at using profile 259 for Google.Protobuf.Gravatar Jon Skeet2015-07-27
| | | | | | | | This requires .NET 4.5, and there are a few compatibility changes required around reflection. Creating a PR from this to see how our CI systems handle it. Will want to add more documentation, validation and probably tests before merging. This is in aid of issue #590.
* Generated code for previous commit.Gravatar Jon Skeet2015-07-22
|
* Generated code changes following previous commit.Gravatar Jon Skeet2015-07-21
|
* update addressbook exampleGravatar Jan Tattermusch2015-07-20
|
* regenerate Addressbook.csGravatar Jan Tattermusch2015-07-20
|
* First pass at the big rename from ProtocolBuffers to Google.Protobuf.Gravatar Jon Skeet2015-07-17
| | | | We'll see what I've missed when CI fails...
* Generated code for well-known typesGravatar Jon Skeet2015-07-14
|
* Changing reflection namespace (part 2)Gravatar Jon Skeet2015-07-14
| | | | Generated code changes from previous commit
* Generated code changes for previous submitGravatar Jon Skeet2015-07-10
|
* Use the new JsonFormatter to implement ToString on generated messages.Gravatar Jon Skeet2015-07-10
|
* Regenerated code due to previous commit.Gravatar Jon Skeet2015-07-09
| | | | Note that now we need a proto3 version of addressbook.proto. This may affect other platforms, and could do with an overhaul to follow proto3 conventions anyway (e.g. repeated field names). Will need to think about that carefully before merging into master. Raised issue #565 for this.
* Changes to generated code due to previous commit.Gravatar Jon Skeet2015-07-09
|
* Fix copyright lines for all C# code.Gravatar Jon Skeet2015-06-30
| | | | | | Everything should now be consistent - the only difference between files is the year (aside from generated files). Fixes issue #531.
* First pass (not yet compiling) at removing all the array handling code from ↵Gravatar Jon Skeet2015-06-30
| | | | | | | Coded*Stream. Prod code works, but some tests are broken. Obviously those need fixing, then more tests, and review benchmarks.
* More cleanup, based around searches for "Google.ProtocolBuffers"Gravatar Jon Skeet2015-06-26
| | | | | | | - Remove some old proto2-based C#-only messages - Remove the "build" directory which only contained out-of-date files - Remove the csharp_namespace option from proto2 messages - Change "Google.ProtocolBuffers" to "Google.Protobuf" in other messages
* Generated code changes for previous commit.Gravatar Jon Skeet2015-06-26
|
* Generated code changes due to map changes.Gravatar Jon Skeet2015-06-25
| | | | (Primarily this is starting the hash code of messages at a non-zero value...)
* Implement freezing for messages and repeated fields.Gravatar Jon Skeet2015-06-24
| | | | Fixes issue #523.
* Generated code changes from previous commit.Gravatar Jon Skeet2015-06-23
|
* Implement Clone.Gravatar Jon Skeet2015-06-23
| | | | Fixes issue #527.