aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Corrected code formatting and added TestCodedInputOutputPositioncsharptest2013-09-213-0/+105
|
* Rearranged the order of operations in publish to label & commit before archivecsharptest2013-09-211-2/+3
|
* mergedcsharptest2013-09-214-1/+61
|\
| * Optimize FromBase64String to return Empty when presented with an empty string.Jon Skeet2013-08-132-1/+20
| | | | | | | | This fixes issue 61.
| * When we write a single character to a JSON output, make sure we actually haveJon Skeet2013-08-132-0/+41
| | | | | | | | | | | | an output before flushing. Fixes issue 64.
* | Fix for bug in limited input stream's Position, Introduced Position on ↵csharptest2013-05-162-2/+15
|/ | | | output stream
* version 2.4.1.521csharptest2013-05-0742-58/+58
|
* Added tag 2.4.1.521 for changeset ceba24e32f5fcsharptest2013-05-070-0/+0
|
* Adde 'Unsafe' static type in ByteString to allow direct buffer manipulation ↵csharptest2013-05-071-0/+24
| | | | | | | without copying bytes. Should be used very cautiously as modifications to buffers may result in unexpected behavior.
* Added the ability to instantiate a coded input with a pre-existing buffercsharptest2013-05-072-2/+34
| | | | Added CodedInputStream.Position to return the current input stream position
* Issue #43: Fix to correct identical 'umbrella_classname' options from trying ↵csharptest2013-05-071-4/+26
| | | | to write to the same filename.
* Issue #54: should retire all bytes in buffer (bufferSize)csharptest2013-05-075-1/+617
|
* Changes to publish.csproj targetscsharptest2012-10-171-179/+181
|
* Merged issue-46 changescsharptest2012-10-17227-3011/+43422
|\
| * Work completed, merging...csharptest2012-10-170-0/+0
| |
| * Rewrote the PublishRelease.bat file in MSBuild (publish.csproj), updated ↵csharptest2012-10-168-145/+213
| | | | | | | | nuspec files
| * Cleanup of build batch files, todo - rework publishrelease.batcsharptest2012-10-169-45/+34
| |
| * Collision with known MSBuild property ProjectType was causing errors, ↵csharptest2012-10-1659-1217/+164
| | | | | | | | renamed to EnvironmentProjectType
| * Adding generated projects/solutions for all environmentscsharptest2012-10-1673-0/+9101
| |
| * Updating ingore rulescsharptest2012-10-161-0/+3
| |
| * Working project templates for Silverlight testing of SL2..4 and PL4csharptest2012-10-1612-11/+95
| |
| * Adding project templates and refactored buildcsharptest2012-10-1534-537/+33731
| |
| * Normalizing base project configurationscsharptest2012-10-1518-351/+167
| |
| * Build fixes from portable changescsharptest2012-10-142-4/+8
| |
| * Portability Changes -csharptest2012-10-1417-43/+67
| | | | | | | | | | | | | | | | Removing uses of Enum to IConvertible from CodedIOStreams, Removed MessageStreamIterator.FromFile on non-client profiles, Removed use of Path.GetFileName, Removed uses of Converter<T1, T2> delegate, Removed Guid/DispId options from test protos
| * Removed uses of reflection for enumeration of enum memberscsharptest2012-10-141-30/+7
| |
| * Changes to support the Portable Library profilecsharptest2012-10-1411-96/+8
| |
| * Last (hopefully) changes to pre-processing directivescsharptest2012-10-1410-55/+34
| |
| * Added NOEXTENSIONS and NOFILEVERSION. Internalized golden_message test ↵csharptest2012-10-1421-558/+401
| | | | | | | | dependencies
| * Working to reduce number of conditional complication directives, and migrate ↵csharptest2012-10-1423-115/+527
| | | | | | | | towards feature-based condtions rather than platform-based
| * Refactored uses of CreateDelegate for compatibility with CF2csharptest2012-10-141-0/+89
| |
| * Refactored uses of CreateDelegate for compatibility with CF2csharptest2012-10-144-16/+68
| |
| * Refactored the use of Delegate.CreateDelegate to use ↵csharptest2012-10-144-105/+28
| | | | | | | | | | | | FrameworkPortability.CreateDelegate, retooled MessageStreamIterator.cs to use safer/less complicated reflection.
| * Refactoring compatibility code to use FrameworkPortability classcsharptest2012-10-1411-49/+20
| |
| * Add generated_code_attributes option, defaulted to false to generate the ↵csharptest2012-10-1439-1107/+104
| | | | | | | | CompilerGeneratedAttribute and GeneratedCodeAttribute attributes
| * Refactored SilverlightCompatibility.cs => FrameworkPortability.cs added ↵csharptest2012-10-1413-114/+48
| | | | | | | | NewLine const
| * Fixing build for SILVERLIGHT and COMPACT_FRAMEWORK before adding more buildcsharptest2012-10-1230-41/+133
|/ | | | | | variations (WP). Changes are primarily superficial since they are to support the Serialization assembly and unit tests compiling in the CF which has not been done before.
* Fix for GetProperty(string, Type[]) incompatible with Silverlightcsharptest2012-10-102-11/+7
|
* addressbook.proto - Imported the options and set the expected namespace and ↵csharptest2012-10-102-8/+19
| | | | umbrella class
* Removed explicit build of addressbook so that it builds like all other protoscsharptest2012-10-101-2/+0
|
* Removed TestProtoFileDisablingClsComplianceFlags, see Issue 38: Disable ↵csharptest2012-10-101-30/+0
| | | | CLSCompliant warnings
* Adding addressbook.proto to the buildcsharptest2012-10-101-0/+1
|
* Issue 40: import doesn't work / proto_path does not work for command-line ↵csharptest2012-10-102-3/+18
| | | | file names
* regenerated proto files with recent changescsharptest2012-10-1028-58/+58
|
* Issue 38: Disable CLSCompliant warnings (3021)csharptest2012-10-101-292/+292
|
* Issue 49: Generated nested static Types class should be partialcsharptest2012-10-101-1/+1
|
* Merged local fix for Issue 50csharptest2012-10-1031-220/+568
|\
| * Change "typeof (Foo)" to "typeof(Foo)" everywhere. I have no idea why I used toJon Skeet2012-06-0423-97/+97
| | | | | | | | include the space - it definitely doesn't look idiomatic...
| * Merge.Jon Skeet2012-06-048-25/+373
| |\
| | * Test and fix for issue 45. When we fetch properties, explicitly state thatJon Skeet2012-06-048-26/+338
| | | | | | | | | | | | | | | | | | we don't want any arguments, to avoid ambiguity with indexers. (Also, change a few "typeof (Foo)" to "typeof(Foo)". Fuller replacement coming.)