Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@5894 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61pull/1/head
5 changed files with 79 additions and 4 deletions
@ -0,0 +1,22 @@
@@ -0,0 +1,22 @@
|
||||
<AddIn name = "CodeQualityAnalysis" |
||||
author = "Tomas Linhart" |
||||
copyright = "prj:///doc/copyright.txt" |
||||
description = "Provides code quality analysis with various metrics and dependencies." |
||||
addInManagerHidden = "preinstalled"> |
||||
|
||||
<Manifest> |
||||
<Identity name = "ICSharpCode.CodeQualityAnalysis"/> |
||||
</Manifest> |
||||
|
||||
<Runtime> |
||||
<Import assembly = "CodeQualityAnalysis.exe"/> |
||||
</Runtime> |
||||
|
||||
<Path name = "/SharpDevelop/Workbench/MainMenu/Analysis"> |
||||
<Condition name = "ProjectActive" activeproject="*"> |
||||
<MenuItem id = "GenerateDependencyGraph" |
||||
label = "Generate Dependency Graph" |
||||
class = "ICSharpCode.CodeQualityAnalysis.DependencyGraphCommand" /> |
||||
</Condition> |
||||
</Path> |
||||
</AddIn> |
@ -0,0 +1,14 @@
@@ -0,0 +1,14 @@
|
||||
using ICSharpCode.Core; |
||||
using ICSharpCode.SharpDevelop; |
||||
|
||||
namespace ICSharpCode.CodeQualityAnalysis |
||||
{ |
||||
public class DependencyGraphCommand : AbstractMenuCommand |
||||
{ |
||||
public override void Run() |
||||
{ |
||||
var window = new MainWindow(); |
||||
window.Show(); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue