Are there static analysis tools for Asp.Net that measure the DRY-ness (“Don’t Repeat Yourself”) of code?
I would like to get a report of where code is being duplicated within a Asp.Net project.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Our CloneDR tool can detect duplicated code across VB.net and C# code, which form a substantial part of an ASP.net application. CloneDR handles detection across very large systems.
We can build clone detectors (using the same foundations) trivially for HTML; we have all the pieces but literally haven’t assembled them.
We don’t have something specically for ASP.net files with interwoven ASP code (it looks like HTML but isnt quite) with intermixed .net code; we could build such without much effort. You can see something like this in our CloneDR for JavaScript, which will process HTML pages containing javascript elements.