Browse Source

Removed GlobalSuppressions.

pull/131/head
Steven Kirk 11 years ago
parent
commit
f071a3d06b
  1. 14
      src/Markup/Perspex.Markup.Xaml/GlobalSuppressions.cs
  2. 1
      src/Markup/Perspex.Markup.Xaml/Perspex.Markup.Xaml.csproj
  3. 14
      src/Perspex.Base/GlobalSuppressions.cs
  4. 1
      src/Perspex.Base/Perspex.Base.csproj
  5. 14
      src/Perspex.Controls/GlobalSuppressions.cs
  6. 1
      src/Perspex.Controls/Perspex.Controls.csproj
  7. 14
      src/Perspex.Input/GlobalSuppressions.cs
  8. 1
      src/Perspex.Input/Perspex.Input.csproj
  9. 14
      src/Perspex.Interactivity/GlobalSuppressions.cs
  10. 1
      src/Perspex.Interactivity/Perspex.Interactivity.csproj
  11. 14
      src/Perspex.Layout/GlobalSuppressions.cs
  12. 1
      src/Perspex.Layout/Perspex.Layout.csproj
  13. 14
      src/Perspex.SceneGraph/GlobalSuppressions.cs
  14. 1
      src/Perspex.SceneGraph/Perspex.SceneGraph.csproj
  15. 14
      src/Perspex.Styling/GlobalSuppressions.cs
  16. 1
      src/Perspex.Styling/Perspex.Styling.csproj
  17. 14
      src/Windows/Perspex.Direct2D1/GlobalSuppressions.cs
  18. 1
      src/Windows/Perspex.Direct2D1/Perspex.Direct2D1.csproj
  19. 18
      tests/Perspex.Base.UnitTests/GlobalSuppressions.cs
  20. 1
      tests/Perspex.Base.UnitTests/Perspex.Base.UnitTests.csproj
  21. 14
      tests/Perspex.Controls.UnitTests/GlobalSuppressions.cs
  22. 1
      tests/Perspex.Controls.UnitTests/Perspex.Controls.UnitTests.csproj
  23. 14
      tests/Perspex.Direct2D1.UnitTests/GlobalSuppressions.cs
  24. 1
      tests/Perspex.Direct2D1.UnitTests/Perspex.Direct2D1.UnitTests.csproj
  25. 14
      tests/Perspex.Input.UnitTests/GlobalSuppressions.cs
  26. 1
      tests/Perspex.Input.UnitTests/Perspex.Input.UnitTests.csproj
  27. 10
      tests/Perspex.Interactivity.UnitTests/GlobalSuppressions.cs
  28. 1
      tests/Perspex.Interactivity.UnitTests/Perspex.Interactivity.UnitTests.csproj
  29. 10
      tests/Perspex.Layout.UnitTests/GlobalSuppressions.cs
  30. 1
      tests/Perspex.Layout.UnitTests/Perspex.Layout.UnitTests.csproj
  31. 14
      tests/Perspex.RenderTests/GlobalSuppressions.cs
  32. 1
      tests/Perspex.RenderTests/Perspex.Direct2D1.RenderTests.csproj
  33. 10
      tests/Perspex.SceneGraph.UnitTests/GlobalSuppressions.cs
  34. 1
      tests/Perspex.SceneGraph.UnitTests/Perspex.SceneGraph.UnitTests.csproj
  35. 10
      tests/Perspex.Styling.UnitTests/GlobalSuppressions.cs
  36. 1
      tests/Perspex.Styling.UnitTests/Perspex.Styling.UnitTests.csproj

14
src/Markup/Perspex.Markup.Xaml/GlobalSuppressions.cs

@ -1,14 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.MaintainabilityRules",
"SA1401:Fields must be private",
Justification = "PerspexProperty fields should not be private.")]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1609:Property documentation must have value",
Justification = "This rule is fscking pointless")]

1
src/Markup/Perspex.Markup.Xaml/Perspex.Markup.Xaml.csproj

@ -42,7 +42,6 @@
<Compile Include="Converters\ColumnDefinitionsTypeConverter.cs" />
<Compile Include="Converters\ThicknessConverter.cs" />
<Compile Include="Context\PerspexWiringContext.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="MarkupExtensions\BindingExtension.cs" />
<Compile Include="Converters\BrushConverter.cs" />
<Compile Include="Converters\BitmapConverter.cs" />

14
src/Perspex.Base/GlobalSuppressions.cs

@ -1,14 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.MaintainabilityRules",
"SA1401:Fields must be private",
Justification = "PerspexProperty fields should not be private.")]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1609:Property documentation must have value",
Justification = "This rule is fscking pointless")]

1
src/Perspex.Base/Perspex.Base.csproj

@ -44,7 +44,6 @@
<Compile Include="BindingDescriptor.cs" />
<Compile Include="Collections\PerspexDictionary.cs" />
<Compile Include="Diagnostics\PerspexObjectExtensions.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="IObservablePropertyBag.cs" />
<Compile Include="IPropertyBag.cs" />
<Compile Include="PerspexObjectExtensions.cs" />

14
src/Perspex.Controls/GlobalSuppressions.cs

@ -1,14 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.MaintainabilityRules",
"SA1401:Fields must be private",
Justification = "PerspexProperty fields should not be private.")]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1609:Property documentation must have value",
Justification = "This rule is fscking pointless")]

1
src/Perspex.Controls/Perspex.Controls.csproj

@ -53,7 +53,6 @@
<Compile Include="Presenters\IContentPresenter.cs" />
<Compile Include="Primitives\AccessText.cs" />
<Compile Include="Border.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="MenuItem.cs" />
<Compile Include="Menu.cs" />
<Compile Include="Button.cs" />

14
src/Perspex.Input/GlobalSuppressions.cs

@ -1,14 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.MaintainabilityRules",
"SA1401:Fields must be private",
Justification = "PerspexProperty fields should not be private.")]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1609:Property documentation must have value",
Justification = "This rule is fscking pointless")]

1
src/Perspex.Input/Perspex.Input.csproj

@ -65,7 +65,6 @@
<Link>Properties\SharedAssemblyInfo.cs</Link>
</Compile>
<Compile Include="Cursors.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="AccessKeyHandler.cs" />
<Compile Include="Platform\IClipboard.cs" />
<Compile Include="Platform\IStandardCursorFactory.cs" />

14
src/Perspex.Interactivity/GlobalSuppressions.cs

@ -1,14 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.MaintainabilityRules",
"SA1401:Fields must be private",
Justification = "Routed event fields should not be private.")]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1609:Property documentation must have value",
Justification = "This rule is fscking pointless")]

1
src/Perspex.Interactivity/Perspex.Interactivity.csproj

@ -60,7 +60,6 @@
<Compile Include="..\Shared\SharedAssemblyInfo.cs">
<Link>Properties\SharedAssemblyInfo.cs</Link>
</Compile>
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="IInteractive.cs" />
<Compile Include="InteractiveExtensions.cs" />
<Compile Include="Interactive.cs" />

14
src/Perspex.Layout/GlobalSuppressions.cs

@ -1,14 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.MaintainabilityRules",
"SA1401:Fields must be private",
Justification = "Routed event fields should not be private.")]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1609:Property documentation must have value",
Justification = "This rule is fscking pointless")]

1
src/Perspex.Layout/Perspex.Layout.csproj

@ -60,7 +60,6 @@
<Compile Include="..\Shared\SharedAssemblyInfo.cs">
<Link>Properties\SharedAssemblyInfo.cs</Link>
</Compile>
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="ILayoutable.cs" />
<Compile Include="ILayoutManager.cs" />
<Compile Include="ILayoutRoot.cs" />

14
src/Perspex.SceneGraph/GlobalSuppressions.cs

@ -1,14 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.MaintainabilityRules",
"SA1401:Fields must be private",
Justification = "PerspexProperty fields should not be private.")]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1609:Property documentation must have value",
Justification = "This rule is fscking pointless")]

1
src/Perspex.SceneGraph/Perspex.SceneGraph.csproj

@ -55,7 +55,6 @@
<Compile Include="Animation\PageSlide.cs" />
<Compile Include="Animation\CrossFade.cs" />
<Compile Include="Animation\IPageTransition.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="Matrix.cs" />
<Compile Include="Media\AlignmentY.cs" />
<Compile Include="Media\AlignmentX.cs" />

14
src/Perspex.Styling/GlobalSuppressions.cs

@ -1,14 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.MaintainabilityRules",
"SA1401:Fields must be private",
Justification = "PerspexProperty fields should not be private.")]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1609:Property documentation must have value",
Justification = "This rule is fscking pointless")]

1
src/Perspex.Styling/Perspex.Styling.csproj

@ -41,7 +41,6 @@
<Compile Include="..\Shared\SharedAssemblyInfo.cs">
<Link>Properties\SharedAssemblyInfo.cs</Link>
</Compile>
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="ILogical.cs" />
<Compile Include="LogicalTree\LogicalExtensions.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />

14
src/Windows/Perspex.Direct2D1/GlobalSuppressions.cs

@ -1,14 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.MaintainabilityRules",
"SA1401:Fields must be private",
Justification = "PerspexProperty fields should not be private.")]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1609:Property documentation must have value",
Justification = "This rule is fscking pointless")]

1
src/Windows/Perspex.Direct2D1/Perspex.Direct2D1.csproj

@ -75,7 +75,6 @@
</Compile>
<Compile Include="Direct2D1Platform.cs" />
<Compile Include="Disposable.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="Media\BrushImpl.cs" />
<Compile Include="Media\BrushWrapper.cs" />
<Compile Include="Media\DrawingContext.cs" />

18
tests/Perspex.Base.UnitTests/GlobalSuppressions.cs

@ -1,18 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.MaintainabilityRules",
"SA1401:Fields must be private",
Justification = "PerspexProperty fields should not be private.")]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1600:Elements must be documented",
Justification = "Tests should be self-documenting")]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.NamingRules",
"SA1300:Element must begin with upper-case letter",
Justification = "Some tests must begin with lower-case letters")]

1
tests/Perspex.Base.UnitTests/Perspex.Base.UnitTests.csproj

@ -80,7 +80,6 @@
<Compile Include="Collections\PerspexDictionaryTests.cs" />
<Compile Include="Collections\PerspexListTests.cs" />
<Compile Include="Collections\PropertyChangedTracker.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="PerspexObjectTests_GetObservable.cs" />
<Compile Include="PerspexObjectTests_Validation.cs" />
<Compile Include="PerspexObjectTests_Binding.cs" />

14
tests/Perspex.Controls.UnitTests/GlobalSuppressions.cs

@ -1,14 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.MaintainabilityRules",
"SA1401:Fields must be private",
Justification = "PerspexProperty fields should not be private.")]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1600:Elements must be documented",
Justification = "Tests should be self-documenting")]

1
tests/Perspex.Controls.UnitTests/Perspex.Controls.UnitTests.csproj

@ -94,7 +94,6 @@
<Compile Include="GridLengthTests.cs" />
<Compile Include="ContentPresenterTests.cs" />
<Compile Include="BorderTests.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="Mixins\SelectableMixinTests.cs" />
<Compile Include="Primitives\TrackTests.cs" />
<Compile Include="Primitives\PopupTests.cs" />

14
tests/Perspex.Direct2D1.UnitTests/GlobalSuppressions.cs

@ -1,14 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.MaintainabilityRules",
"SA1401:Fields must be private",
Justification = "PerspexProperty fields should not be private.")]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1600:Elements must be documented",
Justification = "Tests should be self-documenting")]

1
tests/Perspex.Direct2D1.UnitTests/Perspex.Direct2D1.UnitTests.csproj

@ -63,7 +63,6 @@
</ItemGroup>
<ItemGroup>
<Compile Include="Controls\Shapes\PathTests.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="Media\GeometryTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="RectComparer.cs" />

14
tests/Perspex.Input.UnitTests/GlobalSuppressions.cs

@ -1,14 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.MaintainabilityRules",
"SA1401:Fields must be private",
Justification = "PerspexProperty fields should not be private.")]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1600:Elements must be documented",
Justification = "Tests should be self-documenting")]

1
tests/Perspex.Input.UnitTests/Perspex.Input.UnitTests.csproj

@ -62,7 +62,6 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="KeyboardNavigationTests_Arrows.cs" />
<Compile Include="KeyboardNavigationTests_Tab.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />

10
tests/Perspex.Interactivity.UnitTests/GlobalSuppressions.cs

@ -1,10 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1600:Elements must be documented",
Justification = "Tests should be self-documenting")]

1
tests/Perspex.Interactivity.UnitTests/Perspex.Interactivity.UnitTests.csproj

@ -58,7 +58,6 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="InteractiveTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>

10
tests/Perspex.Layout.UnitTests/GlobalSuppressions.cs

@ -1,10 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1600:Elements must be documented",
Justification = "Tests should be self-documenting")]

1
tests/Perspex.Layout.UnitTests/Perspex.Layout.UnitTests.csproj

@ -77,7 +77,6 @@
</Choose>
<ItemGroup>
<Compile Include="FullLayoutTests.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>

14
tests/Perspex.RenderTests/GlobalSuppressions.cs

@ -1,14 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.MaintainabilityRules",
"SA1401:Fields must be private",
Justification = "PerspexProperty fields should not be private.")]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1600:Elements must be documented",
Justification = "Tests should be self-documenting")]

1
tests/Perspex.RenderTests/Perspex.Direct2D1.RenderTests.csproj

@ -78,7 +78,6 @@
<Compile Include="Media\VisualBrushTests.cs" />
<Compile Include="Controls\ImageTests.cs" />
<Compile Include="Controls\BorderTests.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="Media\LinearGradientBrushTests.cs" />
<Compile Include="Shapes\PathTests.cs" />
<Compile Include="Shapes\EllipseTests.cs" />

10
tests/Perspex.SceneGraph.UnitTests/GlobalSuppressions.cs

@ -1,10 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1600:Elements must be documented",
Justification = "Tests should be self-documenting")]

1
tests/Perspex.SceneGraph.UnitTests/Perspex.SceneGraph.UnitTests.csproj

@ -81,7 +81,6 @@
</Choose>
<ItemGroup>
<Compile Include="ThicknessTests.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="Media\BrushTests.cs" />
<Compile Include="Media\ColorTests.cs" />
<Compile Include="TestRoot.cs" />

10
tests/Perspex.Styling.UnitTests/GlobalSuppressions.cs

@ -1,10 +0,0 @@
// -----------------------------------------------------------------------
// <copyright file="GlobalSuppressions.cs" company="Steven Kirk">
// Copyright 2015 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"StyleCop.CSharp.DocumentationRules",
"SA1600:Elements must be documented",
Justification = "Tests should be self-documenting")]

1
tests/Perspex.Styling.UnitTests/Perspex.Styling.UnitTests.csproj

@ -84,7 +84,6 @@
<Otherwise />
</Choose>
<ItemGroup>
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SelectorTests_Class.cs" />
<Compile Include="SelectorTests_Child.cs" />

Loading…
Cancel
Save