- Timestamp:
- 04/16/13 13:13:41 (12 years ago)
- Location:
- branches/OaaS
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS
- Property svn:ignore
-
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll 23 24 packages
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/OaaS/HeuristicLab.Persistence
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Persistence (added) merged: 8246,8588,8600,8641,8647,8698-8699,8924,9005,9014-9015,9018
- Property svn:mergeinfo changed
-
branches/OaaS/HeuristicLab.Persistence/3.3/Default/CompositeSerializers/TypeSerializer.cs
r7259 r9363 41 41 42 42 public bool CanSerialize(Type type) { 43 #region Mono Compatibility 43 44 return type == typeof(Type) || 44 type.VersionInvariantName() == "System.RuntimeType, mscorlib"; 45 type.VersionInvariantName() == "System.RuntimeType, mscorlib" || 46 type.VersionInvariantName() == "System.MonoType, mscorlib"; 47 #endregion 45 48 } 46 49 47 50 public string JustifyRejection(Type type) { 48 return "not System.Type nor System.RuntimeType"; 51 #region Mono Compatibility 52 return "not System.Type, System.RuntimeType, System.MonoType"; 53 #endregion 49 54 } 50 55
Note: See TracChangeset
for help on using the changeset viewer.