Changes between Version 2 and Version 3 of MapGuideRfc154
- Timestamp:
- 12/03/15 05:30:51 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MapGuideRfc154
v2 v3 92 92 For Linux, the usage and availability of the MapGuide API for .net core will be restricted to any Linux distribution where binaries exist for the CoreCLR. Currently, this is only Ubuntu 14.04 64-bit, which is the version of Ubuntu we intend to support for this release of MapGuide. CoreCLR is not available for Ubuntu 14.04 32-bit. 93 93 94 The API surface of the .net core wrapper is almost identical to the one for the full .net framework with one small difference:94 The API surface of the .net core wrapper is almost identical to the one for the full .net framework with a few small differences: 95 95 96 * MgColor does not have a constructor or implicit operators that accept System.Drawing.Color instances as System.Drawing does not exist in .net Core. 96 * {{{MgColor}}} does not have a constructor or implicit operators that accept {{{System.Drawing.Color}}} instances as {{{System.Drawing}}} does not exist in .net Core. 97 * {{{MgStringCollection}}} 98 * Constructor now optionally takes a {{{System.Collections.Generic.IEnumerable<String>}}} instead of a {{{System.Collections.Specialized.StringCollection}}} 99 * implicit conversion operators to/from {{{System.Collections.Specialized.StringCollection}}} have been removed 100 * {{{MgStringCollection}}} now implements {{{System.Collections.Generic.IList<String>}}} in line with other collection proxy classes 97 101 98 102 == Test Plan ==