#develop (short for SharpDevelop) is a free IDE for .NET programming languages.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Mike Krüger 06ad4c8218 Added unit test for CS0029InvalidConversionIssue. 12 years ago
..
FormatStringIssues Fix false positives in FormatStringIssue when params-parameter is used in unexpanded form. 12 years ago
ParameterCanBeDemotedIssue Disabled 'ParameterCanBeIEnumerableIssue'. 12 years ago
AccessToDisposedClosureTests.cs [CodeIssue] Added AccessToModifiedClosureIssue and AccessToDisposedClosureIssue 13 years ago
AccessToModifiedClosureTests.cs [Refactoring] Script now corrects the formatting of inserted & 13 years ago
AssignmentMadeToSameVariableIssueTests.cs AssignmentMadeToSameVariableIssue: don't warn on "a += a;" 13 years ago
BitwiseOperationOnNonFlagsEnumIssueTests.cs [CodeIssue] Added BitwiseOperationOnNonFlagsEnumIssue 13 years ago
CS0029InvalidConversionIssueTests.cs Added unit test for CS0029InvalidConversionIssue. 12 years ago
CS0127ReturnMustNotBeFollowedByAnyExpressionTests.cs Fix crash when 'return 1;' occurs within a constructor declaration. 13 years ago
CallToObjectEqualsViaBaseTests.cs [CodeIssues] CallToObjectViaBaseIssue: Ignore calls which do not target members of 'base'. 13 years ago
CallToVirtualFunctionFromConstructorTests.cs CallToVirtualFunctionFromConstructorIssue: avoid false positive when the call appears in an anonymous method 13 years ago
CastExpressionOfIncompatibleTypeIssueTests.cs CastExpressionOfIncompatibleTypeIssue: don't produce an issue when the source or target type is unknown. 13 years ago
CompareBooleanWithTrueOrFalseIssueTests.cs [CodeIssues] CompareBooleanWithTrueOrFalseIssue: check if the expression being compared is of boolean type 13 years ago
CompareFloatWithEqualityOperatorIssueTests.cs CompareFloatWithEqualityOperatorIssue: don't show warning when comparing with infinities. 13 years ago
ConditionalToNullCoalescingInspectorTests.cs Improved code issue tests - renamed some issues and actions. 14 years ago
ConstantConditionIssueTests.cs [Refactoring] Script now corrects the formatting of inserted & 13 years ago
ConvertToStaticMethodIssueTests.cs Disabled convert to static method issue. 12 years ago
DoubleNegationIssueTests.cs [CodeIssue] Added DoubleNegationIssue 13 years ago
DuplicateBodyMethodIssueTests.cs Ignore duplicate body method issue. 12 years ago
DuplicateExpressionsInConditionsIssueTests.cs Remove duplicate ifs, in if/else chains in case that the expression is duplicated. It can happen in copy/paste cases. 12 years ago
DuplicateIfInIfChainIssueTests.cs Fixed duplicate if chain issue tests. 12 years ago
ExceptionRethrowTests.cs [CodeIssues] Add ExceptionRethrowIssue 13 years ago
ExplicitConversionInForEachIssueTests.cs Add year to license headers. 13 years ago
ExpressionIsAlwaysOfProvidedTypeIssueTests.cs Fixed false positive that caused a 'is operator always returns true' warning even though it returns false. (e.g. 'intVar is double') 13 years ago
ExpressionIsNeverOfProvidedTypeIssueTests.cs Don't show "expression is never of the provided type" warning if the type could not be resolved. 13 years ago
ForControlVariableNotModifiedIssueTests.cs [CodeIssue] Added ForControlVariableNotModifiedIssue 13 years ago
IdenticalConditionalBranchIssueTests.cs [CodeIssue] Added IdenticalConditionalBranchIssue 13 years ago
InconsistentNamingTests.cs Implemented code issue message suppression. 12 years ago
IncorrectCallToGetHashCodeTests.cs [CodeIssues] Check method names before concluding there is a problem. 13 years ago
IncorrectExceptionParameterOrderingTests.cs Fix NullReferenceException in IncorrectExceptionParameterOrderingIssue. 13 years ago
InspectionActionTestBase.cs Code updates 12 years ago
LocalVariableHidesMemberIssueTests.cs [CodeIssues] Add accessibility checking to VariableHidesMemberIssue. 13 years ago
LocalVariableNotUsedIssueTests.cs [CodeIssue] LocalVariableNotUsedIssue: Find unused foreach variable 13 years ago
MethodNeverReturnsIssueTests.cs Don't show 'method never returns' for iterators containing 'yield break;' 13 years ago
MethodOverloadHidesOptionalParameterIssueTests.cs Don't show 'Method with optional parameter is hidden by overload' issue if the overloads have different type parameters. 13 years ago
MissingStringComparisonIssueTests.cs Add issue provider for missing StringComparison argument to string.StartsWith/EndsWith/IndexOf/LastIndexOf calls. 13 years ago
MultipleEnumerationIssueTests.cs [CodeIssue] Added MultipleEnumerationIssue 13 years ago
NegativeRelationalExpressionIssueTests.cs Don't produce NegativeRelationalExpressionIssue inside operator declarations 13 years ago
NoDefaultConstructorIssueTests.cs [CodeIssues] Removed the baseType field from the NoDefaultConstructorIssue since it can be overwritten if there is a nested type that has an issue. The code now resolves the base type when visiting the constructor to make sure it is correct. 13 years ago
NotImplementedExceptionInspectorTests.cs Improved code issue tests - renamed some issues and actions. 14 years ago
OptionalParameterCouldBeSkippedTests.cs [CodeActions] Greatly improved OptionalParameterCouldBeSkippedIssue. 13 years ago
ParameterHidesMemberIssueTests.cs [CodeIssues] Add accessibility checking to VariableHidesMemberIssue. 13 years ago
ParameterNotUsedIssueTests.cs Fixed some false positives in parameter not used issue. 13 years ago
ParameterOnlyAssignedIssueTests.cs [CodeIssues] Do not report unused parameter if it is out or ref. 13 years ago
PublicConstructorInAbstractClassIssueTest.cs [CodeIssue] Modified PublicConstructorInAbstractClass issue to support Resharper disable comment 12 years ago
RedundantArrayInitializerCommaIssueTests.cs [CodeIssues] RedundantArrayInitializerCommaIssue: show appropriate description for different types of initializers 13 years ago
RedundantAssignmentIssueTests.cs Fixed bug in redundant assignment issue. 12 years ago
RedundantAttributeParenthesesIssueTests.cs [CodeIssue] Added RedundantAttributeParenthesesIssue 13 years ago
RedundantBaseConstructorIssueTests.cs Add the capability to remove base call if is not needed. It exposes some classes so maybe I'm not using the proper APIs. But it works good for practical the test case I wrote. 12 years ago
RedundantCaseLabelIssueTests.cs [CodeIssue] Added RedundantCaseLabelIssue 13 years ago
RedundantCatchTests.cs Fixed some issues in redundant catch issue. 12 years ago
RedundantConstructorTests.cs [CodeIssue] Redundant Constructor issue 12 years ago
RedundantElseIssueTests.cs [CodeIssues] Fixed case in redundant else issue. 13 years ago
RedundantFieldInitializerIssueTests.cs Fixed bug in redundant field initializer issue. 13 years ago
RedundantInternalInspectorTests.cs Improved code issue tests - renamed some issues and actions. 14 years ago
RedundantNamespaceUsageInspectorTests.cs Fix #120: RedundantNamespaceUsageIssue bad handling of using aliases 13 years ago
RedundantNullCheckTests.cs Fix false positives in SimplifyAnonymousMethodToDelegateIssue: the simplification is not possible when the lambda involves non-reference conversions. 12 years ago
RedundantObjectCreationArgumentListIssueTests.cs Remove redundant empty argument list is now much less intrusive. 13 years ago
RedundantObjectOrCollectionInitializerIssueTests.cs [CodeIssue] RedundantObjectOrCollectionInitializerIssue: added some tests 13 years ago
RedundantPrivateInspectorTests.cs Improved code issue tests - renamed some issues and actions. 14 years ago
RedundantThisInspectorTests.cs Implemented code issue message suppression. 12 years ago
RedundantToStringTests.cs Fixed unit test. 13 years ago
RedundantTypeCastIssueTests.cs [CodeIssue] Fixed bug in redundant type cast issue. 13 years ago
RedundantUsingInspectorTests.cs Implemented resharper disableing for redundant using directive. 12 years ago
RedundantWhereWithPredicateIssueTests.cs RedundantWhereWithPredicateIssue: in addition to Any(), handle Count(),First(),FirstOrDefault(),Last(),LastOrDefault(),LongCount(),Single() and SingleOrDefault(). 13 years ago
ReferenceEqualsCalledWithValueTypeIssueTest.cs [CodeIssue] Added ReferenceEqualsCalledWithValueTypeIssue 13 years ago
ReferenceToStaticMemberViaDerivedTypeTests.cs Implemented new line ast node insertion. 12 years ago
SimplifyAnonymousMethodToDelegateIssueTests.cs Fix false positives in SimplifyAnonymousMethodToDelegateIssue: the simplification is not possible when the lambda involves non-reference conversions. 12 years ago
StaticConstructorAccessModifierTest.cs Fixed static constructor access modifier issue tests. 12 years ago
StaticFieldInGenericTypeTests.cs Implemented code issue message suppression. 12 years ago
StringIsNullOrEmptyInspectorTests.cs string.IsNullOrEmpty issue: detect 'str != null && str.Length > 0' pattern 12 years ago
ThreadStaticOnInstanceFieldTests.cs Implemented code issue message suppression. 12 years ago
TypeParameterNotUsedIssueTests.cs [CodeIssue] TypeParameterNotUsedIssue: removed the fix because it may introduce errors. 13 years ago
UnreachableCodeIssueTests.cs Implemented new line ast node insertion. 12 years ago
UseBlockInsteadColonIssueTests.cs Fix unit test failure due to mix of tabs and spaces. 12 years ago
UseVarKeywordInspectorTests.cs Improved code issue tests - renamed some issues and actions. 14 years ago
ValueParameterUnusedTests.cs Don't warn on empty custom events. 13 years ago
VariableDeclaredInWideScopeTests.cs VariableDeclaredInWideScopeIssue no longer suggests moving method call 13 years ago