Files
coverlet/src/coverlet.core/Attributes/ExcludeFromCoverage.cs
T
Amaury Levé 03ff455578 Add editorconfig with tuned configuration (#1300)
Add editorconfig with tuned configuration
2022-02-14 09:14:38 +01:00

10 lines
394 B
C#

// Copyright (c) Toni Solarin-Sodara
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
namespace Coverlet.Core.Attributes
{
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Class)]
internal sealed class ExcludeFromCoverageAttribute : Attribute { }
}