aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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.)
| * | Corrected last release versioncsharptest2011-11-051-98/+98
| | |
* | | Ignored batch filescsharptest2012-10-101-1/+1
| | |
* | | Issue 50: The XML serializer will fail to deserialize a message with empty ↵csharptest2012-10-102-7/+44
|/ / | | | | | | child message
* | Post-release changescsharptest2011-10-1529-30/+30
| |
* | Added tag 2.4.1.473 for changeset bde5972aed1ccsharptest2011-10-150-0/+0
| |
* | version 2.4.1.473csharptest2011-10-1540-595/+649
| |
* | Excluded lib/NUnit/tools/nunit-console.exe.configcsharptest2011-10-052-19/+1
| |
* | Updated Changes.txt to reflect new optioncsharptest2011-10-051-1/+2
| |
* | Added option generate_private_ctor to disable private ctor generationcsharptest2011-10-053-34/+83
| |
* | Update of release notes.csharptest2011-10-051-6/+12
| |
* | Merged issue-35csharptest2011-10-051-9/+51
|\ \
| * | Completedcsharptest2011-10-040-0/+0
| | |
| * | Fixed issue-35csharptest2011-10-041-9/+51
| | |
* | | Merged issue-34csharptest2011-10-05211-8498/+38838
|\ \ \ | |/ / |/| |
| * | Completedcsharptest2011-10-050-0/+0
| | |
| * | Added license agreement for Silverlight Test frameworkcsharptest2011-10-051-0/+0
| | |
| * | Bound to happen once in a whilecsharptest2011-10-041-2/+2
| | |
| * | Added removal of build_output and build_temp to CleanAll.batcsharptest2011-10-047-10/+14
| | | | | | | | | | | | Added /nologo for all msbuild calls
| * | Removed dependency on Rhino.Mockscsharptest2011-10-0413-4963/+109
| | | | | | | | | | | | | | | Added CleanAll batch file Added the now rhino-free service test to silverlight
| * | Removed the 2008 solution and created batch files to toggle the solution to thecsharptest2011-10-044-274/+16
| | | | | | | | | | | | desired version of Visual Studio.
| * | - Upgraded NUnitcsharptest2011-10-04173-3353/+20538
| | | | | | | | | | | | | | | | | | - Added StatLight and Silverlight unit testing - Added copies of all projects for Silverlight - Integrated Silverlight unit tests in build
| * | Adding silverlight testing framework and statlight test runnercsharptest2011-10-0324-0/+18263
| | |
* | | merged issue-30csharptest2011-10-0448-1245/+833
|\ \ \
| * | | Completed.csharptest2011-10-040-0/+0
| |/ /
| * | Fix for incorrect Target/Configurationcsharptest2011-10-021-1/+1
| | |
| * | Renamed SILVERLIGHT2 compilation constant to SILVERLIGHTcsharptest2011-10-0212-17/+17
| | |
| * | Several build related changes in this commit:csharptest2011-10-0225-318/+598
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Refactoring of build to allow multiple target frameworks 2. Addition of multiple Silverlight versions 3. Renamed *_Silverlight2 configurations to *_Silverlight 4. Added batch files for each framework build (Build20, Build35, Build40) 5. Moved the package building into MSBuild tasks 6. BuildAll.bat now builds all packages in one build 7. Removed Generate*Package.bat batch files (replaced by BuildAll.bat) 8. Removed the ability to build with 3.5 MSBuild 9. Source is only generated with Release/2.0 build of ProtoGen 10. Removed unit testing proto files from packaging 11. Removed the remaining 'pause' statements from all batch files 12. RunBenchmarks target now builds with .NET 2.0 instead of 4.0 13. Benchmark arguments can now be specified with BenchmarkArgs parameter 14. ProtoBench now supports '/log:path' so console can still see progress 15. Updated PublishRelease.bat and *.nuspec for new build output 16. Updated ProtocolBuffers.Serialization.csproj to omit extensions for 2.0 17. Added NUnit console configurations for each .NET framework version
| * | Changed the resource loading in unit testscsharptest2011-10-014-217/+45
| | |
| * | Conditional extensions in serialization, Removed usages of extensions ↵csharptest2011-10-0111-635/+126
| | | | | | | | | | | | methods from unit tests
| * | Moved all extension methods to a single class/filecsharptest2011-10-015-76/+65
| | |
| * | merged issue-31csharptest2011-10-0130-2991/+7954
| |\ \
* | \ \ merged issue-31csharptest2011-10-0430-2991/+7954
|\ \ \ \ | |/ / / |/| | |
| * | | Completed.csharptest2011-10-040-0/+0
| |/ /
| * | Fix for incorrect 2010 solutioncsharptest2011-10-011-1/+1
| | |
| * | Added unit tests for Lite runtime services and serializationcsharptest2011-10-0110-5/+2039
| | |