We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a4bd6a commit 8dcd1ffCopy full SHA for 8dcd1ff
src/System.Composition/perftests/WebBenchmarks.cs
@@ -65,7 +65,9 @@ internal class LightweightWebBenchmark : WebBenchmark
65
[Export]
66
private class WebServer
67
{
68
+#pragma warning disable 3016
69
[Import, SharingBoundary(Web.Boundaries.Web)]
70
+#pragma warning restore 3016
71
public ExportFactory<Web.OperationRoot> WebScopeFactory { get; set; }
72
}
73
src/System.Composition/scenarios/TestLibrary/TestClass.cs
@@ -11,6 +11,7 @@
11
namespace TestLibrary
12
13
14
+ [CLSCompliant(false)]
15
public class ClassWithDependecy
16
17
public TestDependency _dep;
@@ -22,6 +23,7 @@ public ClassWithDependecy(TestDependency dep)
22
23
24
25
26
27
public class ClassWithDependecyAndSameBaseType
28
29
public IDependency _dep;
0 commit comments