Преглед на файлове

exclude coverage from corefx type

Oren Novotny преди 9 години
родител
ревизия
1003c9a46a
променени са 1 файла, в които са добавени 2 реда и са изтрити 0 реда
  1. 2 0
      Ix.NET/Source/System.Interactive.Async/Set.cs

+ 2 - 0
Ix.NET/Source/System.Interactive.Async/Set.cs

@@ -5,12 +5,14 @@
 using System;
 using System.Collections.Generic;
 using System.Diagnostics;
+using System.Diagnostics.CodeAnalysis;
 using System.Linq;
 using System.Threading.Tasks;
 
 // from https://github.com/dotnet/corefx/blob/ec2685715b01d12f16b08d0dfa326649b12db8ec/src/System.Linq/src/System/Linq/Set.cs
 namespace System.Linq
 {
+    [ExcludeFromCodeCoverage]
     internal sealed class Set<TElement>
     {
         private readonly IEqualityComparer<TElement> _comparer;