File tree Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 8
8
9
9
namespace Tests . CodeStandards
10
10
{
11
+ [ ProjectReferenceOnly ]
11
12
public class Analysis
12
13
{
13
14
/**
14
15
* Every analyzer interface should attribute properties with JsonPropertyAttribute
15
16
*/
16
- [ U ]
17
+ [ U ( ) ]
17
18
public void AnalyzerPropertiesAreAttributedWithJsonPropertyAttribute ( ) =>
18
19
PropertiesOfTypeAreAttributedWithJsonPropertyAttribute ( typeof ( IAnalyzer ) ) ;
19
20
Original file line number Diff line number Diff line change @@ -8,10 +8,4 @@ namespace Tests.Framework
8
8
/// </summary>
9
9
[ AttributeUsage ( AttributeTargets . Class ) ]
10
10
public class IntegrationOnlyAttribute : Attribute { }
11
-
12
- /// <summary>
13
- /// Ignores all unit tests on from a class when we are running the unit tests against a PackageReference instead of ProjectReference
14
- /// </summary>
15
- [ AttributeUsage ( AttributeTargets . Class ) ]
16
- public class ProjectReferenceOnlyAttribute : Attribute { }
17
11
}
Original file line number Diff line number Diff line change
1
+ using System ;
2
+
3
+ namespace Tests . Framework
4
+ {
5
+ /// <summary>
6
+ /// Ignores all unit tests on from a class when we are running the unit tests against a PackageReference instead of ProjectReference
7
+ /// </summary>
8
+ [ AttributeUsage ( AttributeTargets . Class ) ]
9
+ public class ProjectReferenceOnlyAttribute : Attribute { }
10
+ }
You can’t perform that action at this time.
0 commit comments