Github user jasonwilliams200OK commented on a diff in the pull request: https://github.com/apache/log4net/pull/16#discussion_r70599902 --- Diff: src/Appender/AppenderCollection.cs --- @@ -26,7 +26,10 @@ namespace log4net.Appender /// A strongly-typed collection of <see cref="IAppender"/> objects. /// </summary> /// <author>Nicko Cadell</author> - public class AppenderCollection : ICollection, IList, IEnumerable, ICloneable + public class AppenderCollection : ICollection, IList, IEnumerable +#if !NETSTANDARD1_3 + , ICloneable --- End diff -- Note that ICloneable is coming back. https://github.com/dotnet/corefx/pull/9970 If the new contract doesn't support NETSTANDARD1_3, and we do want to support this TxM, then the best way in the future would be to also add `NETSTANDARD1_<whatever>` in the project.json which exposes IColeable interface on public surface area.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---