forked from coverlet-coverage/coverlet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCoverletOptionNames.cs
More file actions
24 lines (22 loc) · 1.25 KB
/
Copy pathCoverletOptionNames.cs
File metadata and controls
24 lines (22 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (c) Toni Solarin-Sodara
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Coverlet.MTP.CommandLine;
internal static class CoverletOptionNames
{
public const string Coverage = "coverlet";
public const string Formats = "coverlet-output-format";
public const string FilePrefix = "coverlet-file-prefix";
public const string Include = "coverlet-include";
public const string Exclude = "coverlet-exclude";
public const string ExcludeByFile = "coverlet-exclude-by-file";
public const string ExcludeByAttribute = "coverlet-exclude-by-attribute";
public const string IncludeDirectory = "coverlet-include-directory";
public const string SingleHit = "coverlet-single-hit";
public const string IncludeTestAssembly = "coverlet-include-test-assembly";
public const string SkipAutoProps = "coverlet-skip-auto-props";
public const string DoesNotReturnAttribute = "coverlet-does-not-return-attribute";
public const string ExcludeAssembliesWithoutSources = "coverlet-exclude-assemblies-without-sources";
public const string Threshold = "coverlet-threshold";
public const string ThresholdType = "coverlet-threshold-type";
public const string ThresholdStat = "coverlet-threshold-stat";
}