使用静态分析测量 Asp.Net 代码的 DRY-ness

发布于 2024-10-12 13:30:40 字数 93 浏览 2 评论 0原文

是否有用于 Asp.Net 的静态分析工具来测量代码的 DRY-ness(“不要重复自己”)?

我想获得一份有关 Asp.Net 项目中代码重复位置的报告。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

a√萤火虫的光℡ 2024-10-19 13:30:40

我们的 CloneDR 工具可以检测 VB.net 和 C# 代码中的重复代码,这些代码构成了一个 ASP.net 应用程序。 CloneDR 处理非常大的系统中的检测。

我们可以轻松地为 HTML 构建克隆检测器(使用相同的基础);我们拥有所有部件,但实际上还没有组装它们。

我们没有专门针对 ASP.net 文件与 ASP 代码(它看起来像 HTML,但不完全一样)与混合的 .net 代码;我们可以毫不费力地建造这样的东西。您可以在我们的 CloneDR for JavaScript 中看到类似的内容,它将处理包含 javascript 元素的 HTML 页面。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文