Browse Source

Disable RedundantTypeCastIssue (too many false positives)

addin-manager-package-subdirectories
Daniel Grunwald 12 years ago
parent
commit
a9a6d4fc35
  1. 1
      doc/technotes/Release Process.txt
  2. 1
      src/AddIns/BackendBindings/CSharpBinding/Project/CSharpBinding.addin
  3. 1
      src/AddIns/BackendBindings/CSharpBinding/Tests/RegistrationTests.cs

1
doc/technotes/Release Process.txt

@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
SharpDevelop release process:
[Christoph]:
* Ensure GlobalAssemblyInfo.template has the correct version number and no 'beta' marker
* Update /doc/readme.rtf if necessary
* Upload files from build server to SourceForge
* For non-beta releases: Set new release as default on SourceForge

1
src/AddIns/BackendBindings/CSharpBinding/Project/CSharpBinding.addin

@ -219,7 +219,6 @@ @@ -219,7 +219,6 @@
<Class class = "ICSharpCode.NRefactory.CSharp.Refactoring.RedundantPrivateIssue" />
<Class class = "ICSharpCode.NRefactory.CSharp.Refactoring.RedundantThisIssue" />
<Class class = "ICSharpCode.NRefactory.CSharp.Refactoring.RedundantToStringIssue" />
<Class class = "ICSharpCode.NRefactory.CSharp.Refactoring.RedundantTypeCastIssue" />
<Class class = "ICSharpCode.NRefactory.CSharp.Refactoring.RedundantWhereWithPredicateIssue" />
<Class class = "ICSharpCode.NRefactory.CSharp.Refactoring.ReferenceEqualsCalledWithValueTypeIssue" />
<Class class = "ICSharpCode.NRefactory.CSharp.Refactoring.ReferenceToStaticMemberViaDerivedTypeIssue" />

1
src/AddIns/BackendBindings/CSharpBinding/Tests/RegistrationTests.cs

@ -23,6 +23,7 @@ namespace CSharpBinding.Tests @@ -23,6 +23,7 @@ namespace CSharpBinding.Tests
Type[] exceptions = {
typeof(MultipleEnumerationIssue), // disabled due to https://github.com/icsharpcode/NRefactory/issues/123
typeof(RedundantAssignmentIssue), // disabled due to https://github.com/icsharpcode/NRefactory/issues/123
typeof(RedundantTypeCastIssue), // disabled due to plenty of false positives (e.g. when cast is necessary for overload resolution)
};
Assembly NRCSharp = typeof(ICodeIssueProvider).Assembly;

Loading…
Cancel
Save