#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 650d2fe644 Code actions now have a start/end location instead of an ast node. 13 years ago
..
AccessToClosureIssues Code actions can now be bound to an ast node. 13 years ago
CompilerErrors Code actions can now be bound to an ast node. 13 years ago
FormatStringIssues Add fast check to discard most invocations early in FormatStringIssue. 13 years ago
InconsistentNamingIssue Code actions can now be bound to an ast node. 13 years ago
ParameterCanBeDemotedIssue Code actions can now be bound to an ast node. 13 years ago
VariableHidesMemberIssue [CodeIssues] Add accessibility checking to VariableHidesMemberIssue. 13 years ago
VariableNotUsedIssues Fixed some false positives in parameter not used issue. 13 years ago
VariableOnlyAssignedIssues [CodeIssues] Removed LocalVariableOnlyAssignedIssue - it's redundant 13 years ago
AssignmentMadeToSameVariableIssue.cs Code actions can now be bound to an ast node. 13 years ago
BitwiseOperationOnNonFlagsEnumIssue.cs [CodeIssue] Added BitwiseOperationOnNonFlagsEnumIssue 13 years ago
CallToObjectEqualsViaBaseIssue.cs Code actions can now be bound to an ast node. 13 years ago
CallToVirtualFunctionFromConstructorIssue.cs CallToVirtualFunctionFromConstructorIssue: avoid false positive when the call appears in an anonymous method 13 years ago
CastExpressionOfIncompatibleTypeIssue.cs CastExpressionOfIncompatibleTypeIssue: don't produce an issue when the source or target type is unknown. 13 years ago
CompareBooleanWithTrueOrFalseIssue.cs [CodeIssues] CompareBooleanWithTrueOrFalseIssue: check if the expression being compared is of boolean type 13 years ago
CompareFloatWithEqualityOperatorIssue.cs CompareFloatWithEqualityOperatorIssue: don't show warning when comparing with infinities. 13 years ago
ConditionalToNullCoalescingIssue.cs Fixed some compiler warnings. 13 years ago
ConstantConditionIssue.cs Code actions can now be bound to an ast node. 13 years ago
DoubleNegationIssue.cs [CodeIssue] Added DoubleNegationIssue 13 years ago
ExceptionRethrowIssue.cs Code actions can now be bound to an ast node. 13 years ago
ExplicitConversionInForEachIssue.cs Code actions can now be bound to an ast node. 13 years ago
ExpressionIsAlwaysOfProvidedTypeIssue.cs Code actions can now be bound to an ast node. 13 years ago
ExpressionIsNeverOfProvidedTypeIssue.cs Fixed some compiler warnings. 13 years ago
ForControlVariableNotModifiedIssue.cs [CodeIssues] Add helper FindReferences(AstNode, IVariable) to BaseRefactoringContext. 13 years ago
GatherVisitorBase.cs Code actions now have a start/end location instead of an ast node. 13 years ago
IdenticalConditionalBranchIssue.cs Code actions can now be bound to an ast node. 13 years ago
IncorrectCallToObjectGetHashCodeIssue.cs [CodeIssues] Check method names before concluding there is a problem. 13 years ago
IncorrectExceptionParameterOrderingIssue.cs Code actions can now be bound to an ast node. 13 years ago
IssueCategories.cs Added compiler warnings & errors issue categories. 14 years ago
MethodNeverReturnsIssue.cs Don't show 'method never returns' for iterators containing 'yield break;' 13 years ago
MethodOverloadHidesOptionalParameterIssue.cs Don't show 'Method with optional parameter is hidden by overload' issue if the overloads have different type parameters. 13 years ago
MissingStringComparisonIssue.cs Code actions can now be bound to an ast node. 13 years ago
MultipleEnumerationIssue.cs [CodeIssues] Fixed concurrency issue in variable reference graph. 13 years ago
NegativeRelationalExpressionIssue.cs Don't produce NegativeRelationalExpressionIssue inside operator declarations 13 years ago
NotImplementedExceptionIssue.cs Fixed some compiler warnings. 13 years ago
OptionalParameterCouldBeSkippedIssue.cs Code actions can now be bound to an ast node. 13 years ago
RedundantArrayInitializerCommaIssue.cs [CodeIssues] RedundantArrayInitializerCommaIssue: show appropriate description for different types of initializers 13 years ago
RedundantAssignmentIssue.cs RedundantAssignment issue is now more careful when removing 13 years ago
RedundantAttributeParenthesesIssue.cs [CodeIssue] Added RedundantAttributeParenthesesIssue 13 years ago
RedundantCaseLabelIssue.cs [CodeIssues] Removed some unused usings 13 years ago
RedundantCatchIssue.cs Code actions can now be bound to an ast node. 13 years ago
RedundantElseIssue.cs [CodeIssues] Fixed case in redundant else issue. 13 years ago
RedundantFieldInitializerIssue.cs Fixed bug in redundant field initializer issue. 13 years ago
RedundantInternalIssue.cs Fixed some compiler warnings. 13 years ago
RedundantNamespaceUsageIssue.cs Fixed some compiler warnings. 13 years ago
RedundantObjectCreationArgumentListIssue.cs Remove redundant empty argument list is now much less intrusive. 13 years ago
RedundantObjectOrCollectionInitializerIssue.cs [CodeIssue] Added RedundantObjectOrCollectionInitializerIssue 13 years ago
RedundantPrivateIssue.cs Fixed some compiler warnings. 13 years ago
RedundantThisIssue.cs [CodeIssues] Converted IgnoreConstructors to a property. 13 years ago
RedundantToStringIssue.cs [CodeIssues] Did some performance optimizations of the 13 years ago
RedundantTypeCastIssue.cs [CodeIssue] Fixed bug in redundant type cast issue. 13 years ago
RedundantUsingIssue.cs Made it easier to get the issues out of the gather visitor. 14 years ago
RedundantWhereWithPredicateIssue.cs Fixed failing unit test. 13 years ago
ReferenceEqualsCalledWithValueTypeIssue.cs Code actions can now be bound to an ast node. 13 years ago
ReferenceToStaticMemberViaDerivedTypeIssue.cs Code actions can now be bound to an ast node. 13 years ago
ResultOfAsyncCallShouldNotBeIgnoredIssue.cs Add year to license headers. 13 years ago
SimplifyAnonymousMethodToDelegateIssue.cs SimplifyAnonymousMethodToDelegateIssues now doesn't touch too complex 13 years ago
StaticFieldInGenericTypeIssue.cs Copy over some fixes from SD5. 13 years ago
StringIsNullOrEmptyIssue.cs [CodeIssues] Added type checking to string is null or empty issue. 13 years ago
ThreadStaticOnInstanceFieldIssue.cs Code actions can now be bound to an ast node. 13 years ago
TypeParameterNotUsedIssue.cs [Refactoring] track renaming of ParsedFile to UnresolvedFile 13 years ago
UnreachableCodeIssue.cs Code actions now have a start/end location instead of an ast node. 13 years ago
UseVarKeywordIssue.cs Fixed some compiler warnings. 13 years ago
ValueParameterUnusedIssue.cs Fix NullReferenceException in SpecializedMethod.AccessorOwner 13 years ago
VariableDeclaredInWideScopeIssue.cs Code actions can now be bound to an ast node. 13 years ago