├── .editorconfig ├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── Directory.Build.props ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── ReflectionAnalyzers.Tests ├── .editorconfig ├── AllAnalyzersValid.cs ├── AssemblyAttributes.cs ├── BinaryReference.cs ├── DocumentationTests.cs ├── Helpers │ ├── Filters │ │ └── TypesTests.cs │ └── Reflection │ │ ├── BindingFlagsExtTests.cs │ │ ├── BindingFlagsTests.cs │ │ ├── GenericTypeArgumentTests.cs │ │ ├── GenericTypeNameTests.cs │ │ ├── GetMethodTests.cs │ │ ├── MethodInfoTests.cs │ │ ├── ReflectedMemberTests.cs │ │ └── TypeTests.cs ├── LibrarySettings.cs ├── REFL001CastReturnValueTests │ ├── CodeFix.ActivatorCreateInstance.cs │ ├── CodeFix.ConstructorInfoInvoke.cs │ ├── CodeFix.DelegateCreateDelegate.cs │ ├── CodeFix.MethodInfoInvoke.cs │ ├── Diagnostics.ConstructorInfoInvoke.cs │ ├── Diagnostics.MethodInfoInvoke.cs │ ├── Valid.ActivatorCreateInstance.cs │ └── Valid.MethodInfoInvoke.cs ├── REFL002DiscardReturnValueTests │ ├── Diagnostics.cs │ └── Valid.cs ├── REFL003MemberDoesNotExistTests │ ├── Diagnostics.GetAccessor.cs │ ├── Diagnostics.GetMethod.cs │ ├── Diagnostics.cs │ ├── Valid.GetMethod.cs │ └── Valid.cs ├── REFL004AmbiguousMatchTests │ ├── CodeFix.cs │ ├── Diagnostics.GetMethod.cs │ ├── Diagnostics.cs │ ├── Valid.OverloadResolution.cs │ └── Valid.cs ├── REFL005WrongBindingFlagsTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL006RedundantBindingFlagsTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL007BindingFlagsOrderTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL008MissingBindingFlagsTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL009MemberCantBeFoundTests │ ├── Diagnostics.cs │ ├── Valid.GetMethod.cs │ ├── Valid.Ignore.cs │ └── Valid.cs ├── REFL010PreferGenericGetCustomAttributeTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL011DuplicateBindingFlagsTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL012PreferIsDefinedTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL013MemberIsOfWrongTypeTests │ ├── Diagnostics.cs │ └── Valid.cs ├── REFL014PreferGetMemberThenAccessorTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL015UseContainingTypeTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL016UseNameofTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL017NameofWrongMemberTests │ ├── CodeFix.WhenWrongMember.cs │ ├── CodeFix.cs │ └── Valid.cs ├── REFL018ExplicitImplementationTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL019NoMemberMatchesTheTypesTests │ ├── Diagnostics.cs │ └── Valid.cs ├── REFL020AmbiguousMatchInterfaceTests │ ├── Diagnostics.cs │ └── Valid.cs ├── REFL022UseFullyQualifiedNameTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL023TypeDoesNotImplementInterfaceTests │ ├── Diagnostics.cs │ └── Valid.cs ├── REFL024PreferNullOverEmptyArrayTests │ └── CodeFix.cs ├── REFL025ArgumentsDoNotMatchParametersTests │ ├── Diagnostics.ConstructorInfoInvoke.cs │ ├── Diagnostics.MethodInfoInvoke.cs │ ├── Diagnostics.cs │ ├── Valid.ConstructorInfoInvoke.cs │ ├── Valid.MethodInfoInvoke.cs │ └── Valid.cs ├── REFL026MissingDefaultConstructorTests │ ├── Diagnostics.cs │ └── Valid.cs ├── REFL027PreferEmptyTypesTests │ └── CodeFix.cs ├── REFL028CastReturnValueToCorrectTypeTests │ ├── CodeFix.ConstructorInfoInvoke.cs │ ├── CodeFix.DelegateCreateDelegate.cs │ ├── CodeFix.MethodInfoInvoke.cs │ ├── CodeFix.cs │ └── Valid.cs ├── REFL029MissingTypesTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL030UseCorrectObjTests │ ├── Diagnostics.MethodInfoInvoke.cs │ ├── Diagnostics.cs │ ├── Valid.MethodInfoInvoke.cs │ └── Valid.cs ├── REFL031UseCorrectGenericArgumentsTests │ ├── Diagnostics.MakeGenericType.cs │ ├── Diagnostics.cs │ ├── NoDiagnostics.cs │ ├── Valid.MakeGenericType.cs │ └── Valid.cs ├── REFL032DependencyMustExistTests │ ├── Diagnostics.cs │ └── Valid.cs ├── REFL033UseSameTypeAsParameterTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL034DontMakeGenericTests │ ├── Diagnostics.MakeGenericType.cs │ ├── Diagnostics.cs │ └── Valid.cs ├── REFL035DontInvokeGenericDefinitionTests │ └── CodeFix.cs ├── REFL036CheckNullTests │ ├── CodeFix.cs │ ├── Diagnostics.cs │ └── Valid.cs ├── REFL037TypeDoesNotExitsTests │ ├── CodeFix.cs │ ├── NoFix.cs │ └── Valid.cs ├── REFL038PreferRunClassConstructorTests │ └── CodeFix.cs ├── REFL039PreferTypeofTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL040PreferIsInstanceOfTypeTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL041CreateDelegateTypeTests │ ├── CodeFix.cs │ └── Valid.cs ├── REFL042FirstArgumentMustBeReferenceTypeTests │ ├── Diagnostics.cs │ └── Valid.cs ├── REFL043FirstArgumentTypeTests │ ├── Diagnostics.cs │ └── Valid.cs ├── REFL044ExpectedAttributeTypeTests │ ├── Diagnostics.IsDefined.cs │ ├── Diagnostics.cs │ ├── Valid.GetCustomAttribute.cs │ └── Valid.IsDefined.cs ├── REFL045InsufficientFlagsTests │ ├── Diagnostics.cs │ └── Valid.cs ├── REFL046DefaultMemberMustExistTests │ ├── Diagnostics.cs │ └── Valid.cs ├── ReflectionAnalyzers.Tests.csproj └── Repro.cs ├── ReflectionAnalyzers.Vsix ├── Properties │ └── launchSettings.json ├── Readme.txt ├── ReflectionAnalyzers.Vsix.csproj ├── ReflectionAnalyzers.Vsix.ruleset └── source.extension.vsixmanifest ├── ReflectionAnalyzers.sln ├── ReflectionAnalyzers.sln.DotSettings ├── ReflectionAnalyzers.snk ├── ReflectionAnalyzers ├── .editorconfig ├── AnalyzerCategory.cs ├── AssemblyAttributes.cs ├── Codefixes │ ├── AddTypesFix.cs │ ├── BindingFlagsFix.cs │ ├── CallMakeGenericMethodFix.cs │ ├── CastReturnValueFix.cs │ ├── DisambiguateFix.cs │ ├── NameofFix.cs │ ├── PreferEmptyTypesFix.cs │ ├── PreferNullFix.cs │ ├── SuggestTypeFix.cs │ ├── ThrowOnErrorFix.cs │ ├── UseContainingTypeFix.cs │ ├── UseFullyQualifiedFix.cs │ ├── UseGenericGetCustomAttributeFix.cs │ ├── UseGetMemberThenAccessorFix.cs │ ├── UseIsDefinedFix.cs │ ├── UseIsInstanceOfTypeFix.cs │ ├── UseParameterTypeFix.cs │ ├── UseRunClassConstructorFix.cs │ ├── UseTypeFix.cs │ └── UseTypeOfFix.cs ├── Descriptors.cs ├── Helpers │ ├── Arguments.cs │ ├── AssignedValue.cs │ ├── CompilationExt.cs │ ├── INamedTypeSymbolExt.cs │ ├── InvocationExpressionExt.cs │ ├── KnownSymbols │ │ ├── ActivatorType.cs │ │ ├── ArrayType.cs │ │ ├── AssemblyBuilderType.cs │ │ ├── AssemblyType.cs │ │ ├── AttributeType.cs │ │ ├── ConstructorInfoType.cs │ │ ├── CustomAttributeExtensionsType.cs │ │ ├── DelegateType.cs │ │ ├── EventInfoType.cs │ │ ├── FieldInfoType.cs │ │ ├── KnownSymbol.cs │ │ ├── LocalVariableInfoType.cs │ │ ├── ManifestResourceInfoType.cs │ │ ├── MemberInfoType.cs │ │ ├── MethodInfoType.cs │ │ ├── MissingType.cs │ │ ├── NUnitAssertType.cs │ │ ├── ObjectType.cs │ │ ├── ParameterInfoType.cs │ │ ├── PropertyInfoType.cs │ │ ├── RuntimeConstructorInfoType.cs │ │ ├── RuntimeEventInfoType.cs │ │ ├── RuntimeFieldInfoType.cs │ │ ├── RuntimeMethodInfoType.cs │ │ ├── RuntimeParameterInfoType.cs │ │ ├── RuntimePropertyInfoType.cs │ │ ├── StringType.cs │ │ ├── TypeInfoType.cs │ │ └── TypeType.cs │ ├── NameOf.cs │ ├── Reflection │ │ ├── ArgumentAndValue.cs │ │ ├── Array.cs │ │ ├── Assembly.cs │ │ ├── BindingFlags.cs │ │ ├── BindingFlagsExt.cs │ │ ├── EventInfo.cs │ │ ├── FieldInfo.cs │ │ ├── Filters │ │ │ ├── FilterMatch.cs │ │ │ ├── Flags.cs │ │ │ ├── Name.cs │ │ │ └── Types.cs │ │ ├── GenericTypeArgument.cs │ │ ├── GenericTypeName.cs │ │ ├── GetConstructor.cs │ │ ├── GetEvent.cs │ │ ├── GetField.cs │ │ ├── GetMethod.cs │ │ ├── GetNestedType.cs │ │ ├── GetProperty.cs │ │ ├── GetX.cs │ │ ├── MethodInfo.cs │ │ ├── PropertyInfo.cs │ │ ├── ReflectedMember.cs │ │ ├── ReturnValue.cs │ │ ├── Type.cs │ │ ├── TypeArguments.cs │ │ └── TypeNameArgument.cs │ ├── StringExt.cs │ ├── SymbolExt.cs │ └── Walkers │ │ └── ReturnValueWalker.cs ├── NodeAnalzers │ ├── ActivatorAnalyzer.cs │ ├── ArgumentAnalyzer.cs │ ├── BindingFlagsAnalyzer.cs │ ├── CreateDelegateAnalyzer.cs │ ├── DefaultMemberAttributeAnalyzer.cs │ ├── DependencyAttributeAnalyzer.cs │ ├── GetAccessorAnalyzer.cs │ ├── GetCustomAttributeAnalyzer.cs │ ├── GetInterfaceAnalyzer.cs │ ├── GetTypeAnalyzer.cs │ ├── GetXAnalyzer.cs │ ├── InvokeAnalyzer.cs │ ├── IsAssignableFromAnalyzer.cs │ ├── IsDefinedAnalyzer.cs │ └── MakeGenericAnalyzer.cs ├── ReflectionAnalyzers.csproj ├── ReflectionAnalyzers.csproj.DotSettings └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── ValidCode ├── .editorconfig ├── Accessors.cs ├── ActivatorCreateInstance.cs ├── AnonymousType.cs ├── AssemblyLoad.cs ├── ConstructorInfoInvoke.cs ├── DelegateCreateDelegate │ ├── CustomDelegate.cs │ ├── Instance.cs │ └── Static.cs ├── Delegates.cs ├── Dynamic.cs ├── Generic.cs ├── GenericMember.cs ├── GetConstructor.cs ├── GetMethod.cs ├── GetNestedType.cs ├── ImplicitAndExplicit.cs ├── Indexer.cs ├── Inheritance │ ├── BaseClass.cs │ └── SubClass.cs ├── MakeGenericMethod.cs ├── MakeGenericType.cs ├── MethodInfoInvoke.cs ├── NamedIndexer.cs ├── NotInSource.cs ├── NullCheck.cs ├── Operators.cs ├── OverloadedMethods.cs ├── Repros │ ├── Issue202.cs │ └── Issue217.cs ├── UnknownType.cs ├── UsingStatic.cs ├── ValidCode.csproj └── WhenTypeIsNotInSource.cs ├── appveyor.yml ├── azure-pipelines.yml └── documentation ├── REFL001.md ├── REFL002.md ├── REFL003.md ├── REFL004.md ├── REFL005.md ├── REFL006.md ├── REFL007.md ├── REFL008.md ├── REFL009.md ├── REFL010.md ├── REFL011.md ├── REFL012.md ├── REFL013.md ├── REFL014.md ├── REFL015.md ├── REFL016.md ├── REFL017.md ├── REFL018.md ├── REFL019.md ├── REFL020.md ├── REFL022.md ├── REFL023.md ├── REFL024.md ├── REFL025.md ├── REFL026.md ├── REFL027.md ├── REFL028.md ├── REFL029.md ├── REFL030.md ├── REFL031.md ├── REFL032.md ├── REFL033.md ├── REFL034.md ├── REFL035.md ├── REFL036.md ├── REFL037.md ├── REFL038.md ├── REFL039.md ├── REFL040.md ├── REFL041.md ├── REFL042.md ├── REFL043.md ├── REFL044.md ├── REFL045.md └── REFL046.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/.editorconfig -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/AllAnalyzersValid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/AllAnalyzersValid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [assembly: CLSCompliant(false)] 4 | -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/BinaryReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/BinaryReference.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/DocumentationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/DocumentationTests.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/Helpers/Filters/TypesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/Helpers/Filters/TypesTests.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/Helpers/Reflection/BindingFlagsExtTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/Helpers/Reflection/BindingFlagsExtTests.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/Helpers/Reflection/BindingFlagsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/Helpers/Reflection/BindingFlagsTests.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/Helpers/Reflection/GenericTypeArgumentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/Helpers/Reflection/GenericTypeArgumentTests.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/Helpers/Reflection/GenericTypeNameTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/Helpers/Reflection/GenericTypeNameTests.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/Helpers/Reflection/GetMethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/Helpers/Reflection/GetMethodTests.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/Helpers/Reflection/MethodInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/Helpers/Reflection/MethodInfoTests.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/Helpers/Reflection/ReflectedMemberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/Helpers/Reflection/ReflectedMemberTests.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/Helpers/Reflection/TypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/Helpers/Reflection/TypeTests.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/LibrarySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/LibrarySettings.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL001CastReturnValueTests/CodeFix.ActivatorCreateInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL001CastReturnValueTests/CodeFix.ActivatorCreateInstance.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL001CastReturnValueTests/CodeFix.ConstructorInfoInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL001CastReturnValueTests/CodeFix.ConstructorInfoInvoke.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL001CastReturnValueTests/CodeFix.DelegateCreateDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL001CastReturnValueTests/CodeFix.DelegateCreateDelegate.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL001CastReturnValueTests/CodeFix.MethodInfoInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL001CastReturnValueTests/CodeFix.MethodInfoInvoke.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL001CastReturnValueTests/Diagnostics.ConstructorInfoInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL001CastReturnValueTests/Diagnostics.ConstructorInfoInvoke.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL001CastReturnValueTests/Diagnostics.MethodInfoInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL001CastReturnValueTests/Diagnostics.MethodInfoInvoke.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL001CastReturnValueTests/Valid.ActivatorCreateInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL001CastReturnValueTests/Valid.ActivatorCreateInstance.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL001CastReturnValueTests/Valid.MethodInfoInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL001CastReturnValueTests/Valid.MethodInfoInvoke.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL002DiscardReturnValueTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL002DiscardReturnValueTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL002DiscardReturnValueTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL002DiscardReturnValueTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL003MemberDoesNotExistTests/Diagnostics.GetAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL003MemberDoesNotExistTests/Diagnostics.GetAccessor.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL003MemberDoesNotExistTests/Diagnostics.GetMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL003MemberDoesNotExistTests/Diagnostics.GetMethod.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL003MemberDoesNotExistTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL003MemberDoesNotExistTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL003MemberDoesNotExistTests/Valid.GetMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL003MemberDoesNotExistTests/Valid.GetMethod.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL003MemberDoesNotExistTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL003MemberDoesNotExistTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL004AmbiguousMatchTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL004AmbiguousMatchTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL004AmbiguousMatchTests/Diagnostics.GetMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL004AmbiguousMatchTests/Diagnostics.GetMethod.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL004AmbiguousMatchTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL004AmbiguousMatchTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL004AmbiguousMatchTests/Valid.OverloadResolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL004AmbiguousMatchTests/Valid.OverloadResolution.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL004AmbiguousMatchTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL004AmbiguousMatchTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL005WrongBindingFlagsTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL005WrongBindingFlagsTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL005WrongBindingFlagsTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL005WrongBindingFlagsTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL006RedundantBindingFlagsTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL006RedundantBindingFlagsTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL006RedundantBindingFlagsTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL006RedundantBindingFlagsTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL007BindingFlagsOrderTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL007BindingFlagsOrderTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL007BindingFlagsOrderTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL007BindingFlagsOrderTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL008MissingBindingFlagsTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL008MissingBindingFlagsTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL008MissingBindingFlagsTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL008MissingBindingFlagsTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL009MemberCantBeFoundTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL009MemberCantBeFoundTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL009MemberCantBeFoundTests/Valid.GetMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL009MemberCantBeFoundTests/Valid.GetMethod.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL009MemberCantBeFoundTests/Valid.Ignore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL009MemberCantBeFoundTests/Valid.Ignore.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL009MemberCantBeFoundTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL009MemberCantBeFoundTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL010PreferGenericGetCustomAttributeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL010PreferGenericGetCustomAttributeTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL010PreferGenericGetCustomAttributeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL010PreferGenericGetCustomAttributeTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL011DuplicateBindingFlagsTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL011DuplicateBindingFlagsTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL011DuplicateBindingFlagsTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL011DuplicateBindingFlagsTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL012PreferIsDefinedTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL012PreferIsDefinedTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL012PreferIsDefinedTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL012PreferIsDefinedTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL013MemberIsOfWrongTypeTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL013MemberIsOfWrongTypeTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL013MemberIsOfWrongTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL013MemberIsOfWrongTypeTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL014PreferGetMemberThenAccessorTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL014PreferGetMemberThenAccessorTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL014PreferGetMemberThenAccessorTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL014PreferGetMemberThenAccessorTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL015UseContainingTypeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL015UseContainingTypeTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL015UseContainingTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL015UseContainingTypeTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL016UseNameofTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL016UseNameofTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL016UseNameofTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL016UseNameofTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL017NameofWrongMemberTests/CodeFix.WhenWrongMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL017NameofWrongMemberTests/CodeFix.WhenWrongMember.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL017NameofWrongMemberTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL017NameofWrongMemberTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL017NameofWrongMemberTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL017NameofWrongMemberTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL018ExplicitImplementationTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL018ExplicitImplementationTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL018ExplicitImplementationTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL018ExplicitImplementationTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL019NoMemberMatchesTheTypesTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL019NoMemberMatchesTheTypesTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL019NoMemberMatchesTheTypesTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL019NoMemberMatchesTheTypesTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL020AmbiguousMatchInterfaceTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL020AmbiguousMatchInterfaceTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL020AmbiguousMatchInterfaceTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL020AmbiguousMatchInterfaceTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL022UseFullyQualifiedNameTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL022UseFullyQualifiedNameTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL022UseFullyQualifiedNameTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL022UseFullyQualifiedNameTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL023TypeDoesNotImplementInterfaceTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL023TypeDoesNotImplementInterfaceTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL023TypeDoesNotImplementInterfaceTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL023TypeDoesNotImplementInterfaceTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL024PreferNullOverEmptyArrayTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL024PreferNullOverEmptyArrayTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL025ArgumentsDoNotMatchParametersTests/Diagnostics.ConstructorInfoInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL025ArgumentsDoNotMatchParametersTests/Diagnostics.ConstructorInfoInvoke.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL025ArgumentsDoNotMatchParametersTests/Diagnostics.MethodInfoInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL025ArgumentsDoNotMatchParametersTests/Diagnostics.MethodInfoInvoke.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL025ArgumentsDoNotMatchParametersTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL025ArgumentsDoNotMatchParametersTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL025ArgumentsDoNotMatchParametersTests/Valid.ConstructorInfoInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL025ArgumentsDoNotMatchParametersTests/Valid.ConstructorInfoInvoke.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL025ArgumentsDoNotMatchParametersTests/Valid.MethodInfoInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL025ArgumentsDoNotMatchParametersTests/Valid.MethodInfoInvoke.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL025ArgumentsDoNotMatchParametersTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL025ArgumentsDoNotMatchParametersTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL026MissingDefaultConstructorTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL026MissingDefaultConstructorTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL026MissingDefaultConstructorTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL026MissingDefaultConstructorTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL027PreferEmptyTypesTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL027PreferEmptyTypesTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL028CastReturnValueToCorrectTypeTests/CodeFix.ConstructorInfoInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL028CastReturnValueToCorrectTypeTests/CodeFix.ConstructorInfoInvoke.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL028CastReturnValueToCorrectTypeTests/CodeFix.DelegateCreateDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL028CastReturnValueToCorrectTypeTests/CodeFix.DelegateCreateDelegate.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL028CastReturnValueToCorrectTypeTests/CodeFix.MethodInfoInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL028CastReturnValueToCorrectTypeTests/CodeFix.MethodInfoInvoke.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL028CastReturnValueToCorrectTypeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL028CastReturnValueToCorrectTypeTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL028CastReturnValueToCorrectTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL028CastReturnValueToCorrectTypeTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL029MissingTypesTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL029MissingTypesTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL029MissingTypesTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL029MissingTypesTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL030UseCorrectObjTests/Diagnostics.MethodInfoInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL030UseCorrectObjTests/Diagnostics.MethodInfoInvoke.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL030UseCorrectObjTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL030UseCorrectObjTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL030UseCorrectObjTests/Valid.MethodInfoInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL030UseCorrectObjTests/Valid.MethodInfoInvoke.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL030UseCorrectObjTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL030UseCorrectObjTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL031UseCorrectGenericArgumentsTests/Diagnostics.MakeGenericType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL031UseCorrectGenericArgumentsTests/Diagnostics.MakeGenericType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL031UseCorrectGenericArgumentsTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL031UseCorrectGenericArgumentsTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL031UseCorrectGenericArgumentsTests/NoDiagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL031UseCorrectGenericArgumentsTests/NoDiagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL031UseCorrectGenericArgumentsTests/Valid.MakeGenericType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL031UseCorrectGenericArgumentsTests/Valid.MakeGenericType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL031UseCorrectGenericArgumentsTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL031UseCorrectGenericArgumentsTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL032DependencyMustExistTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL032DependencyMustExistTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL032DependencyMustExistTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL032DependencyMustExistTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL033UseSameTypeAsParameterTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL033UseSameTypeAsParameterTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL033UseSameTypeAsParameterTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL033UseSameTypeAsParameterTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL034DontMakeGenericTests/Diagnostics.MakeGenericType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL034DontMakeGenericTests/Diagnostics.MakeGenericType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL034DontMakeGenericTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL034DontMakeGenericTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL034DontMakeGenericTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL034DontMakeGenericTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL035DontInvokeGenericDefinitionTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL035DontInvokeGenericDefinitionTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL036CheckNullTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL036CheckNullTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL036CheckNullTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL036CheckNullTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL036CheckNullTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL036CheckNullTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL037TypeDoesNotExitsTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL037TypeDoesNotExitsTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL037TypeDoesNotExitsTests/NoFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL037TypeDoesNotExitsTests/NoFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL037TypeDoesNotExitsTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL037TypeDoesNotExitsTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL038PreferRunClassConstructorTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL038PreferRunClassConstructorTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL039PreferTypeofTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL039PreferTypeofTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL039PreferTypeofTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL039PreferTypeofTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL040PreferIsInstanceOfTypeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL040PreferIsInstanceOfTypeTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL040PreferIsInstanceOfTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL040PreferIsInstanceOfTypeTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL041CreateDelegateTypeTests/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL041CreateDelegateTypeTests/CodeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL041CreateDelegateTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL041CreateDelegateTypeTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL042FirstArgumentMustBeReferenceTypeTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL042FirstArgumentMustBeReferenceTypeTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL042FirstArgumentMustBeReferenceTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL042FirstArgumentMustBeReferenceTypeTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL043FirstArgumentTypeTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL043FirstArgumentTypeTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL043FirstArgumentTypeTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL043FirstArgumentTypeTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL044ExpectedAttributeTypeTests/Diagnostics.IsDefined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL044ExpectedAttributeTypeTests/Diagnostics.IsDefined.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL044ExpectedAttributeTypeTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL044ExpectedAttributeTypeTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL044ExpectedAttributeTypeTests/Valid.GetCustomAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL044ExpectedAttributeTypeTests/Valid.GetCustomAttribute.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL044ExpectedAttributeTypeTests/Valid.IsDefined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL044ExpectedAttributeTypeTests/Valid.IsDefined.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL045InsufficientFlagsTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL045InsufficientFlagsTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL045InsufficientFlagsTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL045InsufficientFlagsTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL046DefaultMemberMustExistTests/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL046DefaultMemberMustExistTests/Diagnostics.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/REFL046DefaultMemberMustExistTests/Valid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/REFL046DefaultMemberMustExistTests/Valid.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/ReflectionAnalyzers.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/ReflectionAnalyzers.Tests.csproj -------------------------------------------------------------------------------- /ReflectionAnalyzers.Tests/Repro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Tests/Repro.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers.Vsix/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Vsix/Properties/launchSettings.json -------------------------------------------------------------------------------- /ReflectionAnalyzers.Vsix/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Vsix/Readme.txt -------------------------------------------------------------------------------- /ReflectionAnalyzers.Vsix/ReflectionAnalyzers.Vsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Vsix/ReflectionAnalyzers.Vsix.csproj -------------------------------------------------------------------------------- /ReflectionAnalyzers.Vsix/ReflectionAnalyzers.Vsix.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Vsix/ReflectionAnalyzers.Vsix.ruleset -------------------------------------------------------------------------------- /ReflectionAnalyzers.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /ReflectionAnalyzers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.sln -------------------------------------------------------------------------------- /ReflectionAnalyzers.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.sln.DotSettings -------------------------------------------------------------------------------- /ReflectionAnalyzers.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers.snk -------------------------------------------------------------------------------- /ReflectionAnalyzers/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/.editorconfig -------------------------------------------------------------------------------- /ReflectionAnalyzers/AnalyzerCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/AnalyzerCategory.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/AssemblyAttributes.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/AddTypesFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/AddTypesFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/BindingFlagsFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/BindingFlagsFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/CallMakeGenericMethodFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/CallMakeGenericMethodFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/CastReturnValueFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/CastReturnValueFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/DisambiguateFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/DisambiguateFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/NameofFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/NameofFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/PreferEmptyTypesFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/PreferEmptyTypesFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/PreferNullFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/PreferNullFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/SuggestTypeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/SuggestTypeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/ThrowOnErrorFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/ThrowOnErrorFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/UseContainingTypeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/UseContainingTypeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/UseFullyQualifiedFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/UseFullyQualifiedFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/UseGenericGetCustomAttributeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/UseGenericGetCustomAttributeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/UseGetMemberThenAccessorFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/UseGetMemberThenAccessorFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/UseIsDefinedFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/UseIsDefinedFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/UseIsInstanceOfTypeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/UseIsInstanceOfTypeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/UseParameterTypeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/UseParameterTypeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/UseRunClassConstructorFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/UseRunClassConstructorFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/UseTypeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/UseTypeFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Codefixes/UseTypeOfFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Codefixes/UseTypeOfFix.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Descriptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Descriptors.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Arguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Arguments.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/AssignedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/AssignedValue.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/CompilationExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/CompilationExt.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/INamedTypeSymbolExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/INamedTypeSymbolExt.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/InvocationExpressionExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/InvocationExpressionExt.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/ActivatorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/ActivatorType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/ArrayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/ArrayType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/AssemblyBuilderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/AssemblyBuilderType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/AssemblyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/AssemblyType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/AttributeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/AttributeType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/ConstructorInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/ConstructorInfoType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/CustomAttributeExtensionsType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/CustomAttributeExtensionsType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/DelegateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/DelegateType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/EventInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/EventInfoType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/FieldInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/FieldInfoType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/KnownSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/KnownSymbol.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/LocalVariableInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/LocalVariableInfoType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/ManifestResourceInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/ManifestResourceInfoType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/MemberInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/MemberInfoType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/MethodInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/MethodInfoType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/MissingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/MissingType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/NUnitAssertType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/NUnitAssertType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/ObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/ObjectType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/ParameterInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/ParameterInfoType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/PropertyInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/PropertyInfoType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/RuntimeConstructorInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/RuntimeConstructorInfoType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/RuntimeEventInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/RuntimeEventInfoType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/RuntimeFieldInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/RuntimeFieldInfoType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/RuntimeMethodInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/RuntimeMethodInfoType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/RuntimeParameterInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/RuntimeParameterInfoType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/RuntimePropertyInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/RuntimePropertyInfoType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/StringType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/StringType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/TypeInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/TypeInfoType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/KnownSymbols/TypeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/KnownSymbols/TypeType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/NameOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/NameOf.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/ArgumentAndValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/ArgumentAndValue.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/Array.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/Assembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/Assembly.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/BindingFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/BindingFlags.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/BindingFlagsExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/BindingFlagsExt.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/EventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/EventInfo.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/FieldInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/FieldInfo.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/Filters/FilterMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/Filters/FilterMatch.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/Filters/Flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/Filters/Flags.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/Filters/Name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/Filters/Name.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/Filters/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/Filters/Types.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/GenericTypeArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/GenericTypeArgument.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/GenericTypeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/GenericTypeName.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/GetConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/GetConstructor.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/GetEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/GetEvent.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/GetField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/GetField.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/GetMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/GetMethod.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/GetNestedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/GetNestedType.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/GetProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/GetProperty.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/GetX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/GetX.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/MethodInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/MethodInfo.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/PropertyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/PropertyInfo.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/ReflectedMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/ReflectedMember.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/ReturnValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/ReturnValue.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/Type.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/TypeArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/TypeArguments.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Reflection/TypeNameArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Reflection/TypeNameArgument.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/StringExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/StringExt.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/SymbolExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/SymbolExt.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/Helpers/Walkers/ReturnValueWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/Helpers/Walkers/ReturnValueWalker.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/NodeAnalzers/ActivatorAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/NodeAnalzers/ActivatorAnalyzer.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/NodeAnalzers/ArgumentAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/NodeAnalzers/ArgumentAnalyzer.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/NodeAnalzers/BindingFlagsAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/NodeAnalzers/BindingFlagsAnalyzer.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/NodeAnalzers/CreateDelegateAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/NodeAnalzers/CreateDelegateAnalyzer.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/NodeAnalzers/DefaultMemberAttributeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/NodeAnalzers/DefaultMemberAttributeAnalyzer.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/NodeAnalzers/DependencyAttributeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/NodeAnalzers/DependencyAttributeAnalyzer.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/NodeAnalzers/GetAccessorAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/NodeAnalzers/GetAccessorAnalyzer.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/NodeAnalzers/GetCustomAttributeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/NodeAnalzers/GetCustomAttributeAnalyzer.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/NodeAnalzers/GetInterfaceAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/NodeAnalzers/GetInterfaceAnalyzer.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/NodeAnalzers/GetTypeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/NodeAnalzers/GetTypeAnalyzer.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/NodeAnalzers/GetXAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/NodeAnalzers/GetXAnalyzer.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/NodeAnalzers/InvokeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/NodeAnalzers/InvokeAnalyzer.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/NodeAnalzers/IsAssignableFromAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/NodeAnalzers/IsAssignableFromAnalyzer.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/NodeAnalzers/IsDefinedAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/NodeAnalzers/IsDefinedAnalyzer.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/NodeAnalzers/MakeGenericAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/NodeAnalzers/MakeGenericAnalyzer.cs -------------------------------------------------------------------------------- /ReflectionAnalyzers/ReflectionAnalyzers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/ReflectionAnalyzers.csproj -------------------------------------------------------------------------------- /ReflectionAnalyzers/ReflectionAnalyzers.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/ReflectionAnalyzers.csproj.DotSettings -------------------------------------------------------------------------------- /ReflectionAnalyzers/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/tools/install.ps1 -------------------------------------------------------------------------------- /ReflectionAnalyzers/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ReflectionAnalyzers/tools/uninstall.ps1 -------------------------------------------------------------------------------- /ValidCode/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/.editorconfig -------------------------------------------------------------------------------- /ValidCode/Accessors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/Accessors.cs -------------------------------------------------------------------------------- /ValidCode/ActivatorCreateInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/ActivatorCreateInstance.cs -------------------------------------------------------------------------------- /ValidCode/AnonymousType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/AnonymousType.cs -------------------------------------------------------------------------------- /ValidCode/AssemblyLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/AssemblyLoad.cs -------------------------------------------------------------------------------- /ValidCode/ConstructorInfoInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/ConstructorInfoInvoke.cs -------------------------------------------------------------------------------- /ValidCode/DelegateCreateDelegate/CustomDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/DelegateCreateDelegate/CustomDelegate.cs -------------------------------------------------------------------------------- /ValidCode/DelegateCreateDelegate/Instance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/DelegateCreateDelegate/Instance.cs -------------------------------------------------------------------------------- /ValidCode/DelegateCreateDelegate/Static.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/DelegateCreateDelegate/Static.cs -------------------------------------------------------------------------------- /ValidCode/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/Delegates.cs -------------------------------------------------------------------------------- /ValidCode/Dynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/Dynamic.cs -------------------------------------------------------------------------------- /ValidCode/Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/Generic.cs -------------------------------------------------------------------------------- /ValidCode/GenericMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/GenericMember.cs -------------------------------------------------------------------------------- /ValidCode/GetConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/GetConstructor.cs -------------------------------------------------------------------------------- /ValidCode/GetMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/GetMethod.cs -------------------------------------------------------------------------------- /ValidCode/GetNestedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/GetNestedType.cs -------------------------------------------------------------------------------- /ValidCode/ImplicitAndExplicit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/ImplicitAndExplicit.cs -------------------------------------------------------------------------------- /ValidCode/Indexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/Indexer.cs -------------------------------------------------------------------------------- /ValidCode/Inheritance/BaseClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/Inheritance/BaseClass.cs -------------------------------------------------------------------------------- /ValidCode/Inheritance/SubClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/Inheritance/SubClass.cs -------------------------------------------------------------------------------- /ValidCode/MakeGenericMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/MakeGenericMethod.cs -------------------------------------------------------------------------------- /ValidCode/MakeGenericType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/MakeGenericType.cs -------------------------------------------------------------------------------- /ValidCode/MethodInfoInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/MethodInfoInvoke.cs -------------------------------------------------------------------------------- /ValidCode/NamedIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/NamedIndexer.cs -------------------------------------------------------------------------------- /ValidCode/NotInSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/NotInSource.cs -------------------------------------------------------------------------------- /ValidCode/NullCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/NullCheck.cs -------------------------------------------------------------------------------- /ValidCode/Operators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/Operators.cs -------------------------------------------------------------------------------- /ValidCode/OverloadedMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/OverloadedMethods.cs -------------------------------------------------------------------------------- /ValidCode/Repros/Issue202.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/Repros/Issue202.cs -------------------------------------------------------------------------------- /ValidCode/Repros/Issue217.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/Repros/Issue217.cs -------------------------------------------------------------------------------- /ValidCode/UnknownType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/UnknownType.cs -------------------------------------------------------------------------------- /ValidCode/UsingStatic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/UsingStatic.cs -------------------------------------------------------------------------------- /ValidCode/ValidCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/ValidCode.csproj -------------------------------------------------------------------------------- /ValidCode/WhenTypeIsNotInSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/ValidCode/WhenTypeIsNotInSource.cs -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/appveyor.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /documentation/REFL001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL001.md -------------------------------------------------------------------------------- /documentation/REFL002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL002.md -------------------------------------------------------------------------------- /documentation/REFL003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL003.md -------------------------------------------------------------------------------- /documentation/REFL004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL004.md -------------------------------------------------------------------------------- /documentation/REFL005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL005.md -------------------------------------------------------------------------------- /documentation/REFL006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL006.md -------------------------------------------------------------------------------- /documentation/REFL007.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL007.md -------------------------------------------------------------------------------- /documentation/REFL008.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL008.md -------------------------------------------------------------------------------- /documentation/REFL009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL009.md -------------------------------------------------------------------------------- /documentation/REFL010.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL010.md -------------------------------------------------------------------------------- /documentation/REFL011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL011.md -------------------------------------------------------------------------------- /documentation/REFL012.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL012.md -------------------------------------------------------------------------------- /documentation/REFL013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL013.md -------------------------------------------------------------------------------- /documentation/REFL014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL014.md -------------------------------------------------------------------------------- /documentation/REFL015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL015.md -------------------------------------------------------------------------------- /documentation/REFL016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL016.md -------------------------------------------------------------------------------- /documentation/REFL017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL017.md -------------------------------------------------------------------------------- /documentation/REFL018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL018.md -------------------------------------------------------------------------------- /documentation/REFL019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL019.md -------------------------------------------------------------------------------- /documentation/REFL020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL020.md -------------------------------------------------------------------------------- /documentation/REFL022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL022.md -------------------------------------------------------------------------------- /documentation/REFL023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL023.md -------------------------------------------------------------------------------- /documentation/REFL024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL024.md -------------------------------------------------------------------------------- /documentation/REFL025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL025.md -------------------------------------------------------------------------------- /documentation/REFL026.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL026.md -------------------------------------------------------------------------------- /documentation/REFL027.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL027.md -------------------------------------------------------------------------------- /documentation/REFL028.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL028.md -------------------------------------------------------------------------------- /documentation/REFL029.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL029.md -------------------------------------------------------------------------------- /documentation/REFL030.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL030.md -------------------------------------------------------------------------------- /documentation/REFL031.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL031.md -------------------------------------------------------------------------------- /documentation/REFL032.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL032.md -------------------------------------------------------------------------------- /documentation/REFL033.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL033.md -------------------------------------------------------------------------------- /documentation/REFL034.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL034.md -------------------------------------------------------------------------------- /documentation/REFL035.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL035.md -------------------------------------------------------------------------------- /documentation/REFL036.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL036.md -------------------------------------------------------------------------------- /documentation/REFL037.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL037.md -------------------------------------------------------------------------------- /documentation/REFL038.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL038.md -------------------------------------------------------------------------------- /documentation/REFL039.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL039.md -------------------------------------------------------------------------------- /documentation/REFL040.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL040.md -------------------------------------------------------------------------------- /documentation/REFL041.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL041.md -------------------------------------------------------------------------------- /documentation/REFL042.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL042.md -------------------------------------------------------------------------------- /documentation/REFL043.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL043.md -------------------------------------------------------------------------------- /documentation/REFL044.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL044.md -------------------------------------------------------------------------------- /documentation/REFL045.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL045.md -------------------------------------------------------------------------------- /documentation/REFL046.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetAnalyzers/ReflectionAnalyzers/HEAD/documentation/REFL046.md --------------------------------------------------------------------------------