|
|
@ -1,31 +1,34 @@ |
|
|
|
<AddIn name="ComponentInspectorAddIn" |
|
|
|
<AddIn name="ComponentInspectorAddIn" |
|
|
|
author="Matt Ward" |
|
|
|
author="Matt Ward" |
|
|
|
url="http://oaklandsoftware.com/" |
|
|
|
url="http://oaklandsoftware.com/" |
|
|
|
copyright="prj:///doc/copyright.txt" |
|
|
|
copyright="prj:///doc/copyright.txt" |
|
|
|
description="Component Inspector AddIn for SharpDevelop"> |
|
|
|
description="Component Inspector AddIn for SharpDevelop"> |
|
|
|
|
|
|
|
|
|
|
|
<Manifest> |
|
|
|
<Manifest> |
|
|
|
<Identity name="ICSharpCode.ComponentInspector"/> |
|
|
|
<Identity name="ICSharpCode.ComponentInspector"/> |
|
|
|
</Manifest> |
|
|
|
</Manifest> |
|
|
|
|
|
|
|
|
|
|
|
<Runtime> |
|
|
|
<Runtime> |
|
|
|
|
|
|
|
<Condition name = "Compare" string = "${Platform}" equals = "Win64"> |
|
|
|
|
|
|
|
<DisableAddIn message = "This AddIn does not work when SharpDevelop runs as 64-bit process."/> |
|
|
|
|
|
|
|
</Condition> |
|
|
|
<Import assembly="ComponentInspector.AddIn.dll"/> |
|
|
|
<Import assembly="ComponentInspector.AddIn.dll"/> |
|
|
|
</Runtime> |
|
|
|
</Runtime> |
|
|
|
|
|
|
|
|
|
|
|
<Path name="/Workspace/Tools"> |
|
|
|
<Path name="/Workspace/Tools"> |
|
|
|
<MenuItem id="ShowComponentInspector" |
|
|
|
<MenuItem id="ShowComponentInspector" |
|
|
|
insertafter="ShowAddInScout" |
|
|
|
insertafter="ShowAddInScout" |
|
|
|
label="${res:ComponentInspector.ToolsMenu.ShowComponentInspectorMenuItem}" |
|
|
|
label="${res:ComponentInspector.ToolsMenu.ShowComponentInspectorMenuItem}" |
|
|
|
class="ICSharpCode.ComponentInspector.AddIn.ShowComponentInspectorCommand"/> |
|
|
|
class="ICSharpCode.ComponentInspector.AddIn.ShowComponentInspectorCommand"/> |
|
|
|
</Path> |
|
|
|
</Path> |
|
|
|
|
|
|
|
|
|
|
|
<Path name="/SharpDevelop/Workbench/MainMenu"> |
|
|
|
<Path name="/SharpDevelop/Workbench/MainMenu"> |
|
|
|
<Condition name="WindowActive" activewindow="ICSharpCode.ComponentInspector.AddIn.ComponentInspectorView"> |
|
|
|
<Condition name="WindowActive" activewindow="ICSharpCode.ComponentInspector.AddIn.ComponentInspectorView"> |
|
|
|
<MenuItem id="ComponentInspector" |
|
|
|
<MenuItem id="ComponentInspector" |
|
|
|
insertafter="Tools" |
|
|
|
insertafter="Tools" |
|
|
|
insertbefore="Window" |
|
|
|
insertbefore="Window" |
|
|
|
label="${res:ComponentInspector.MainMenu.InspectorMenu}" |
|
|
|
label="${res:ComponentInspector.MainMenu.InspectorMenu}" |
|
|
|
type="Menu"> |
|
|
|
type="Menu"> |
|
|
|
<MenuItem id="OpenAssembly" |
|
|
|
<MenuItem id="OpenAssembly" |
|
|
|
label="${res:ComponentInspector.InspectorMenu.OpenAssembly}" |
|
|
|
label="${res:ComponentInspector.InspectorMenu.OpenAssembly}" |
|
|
|
class="ICSharpCode.ComponentInspector.AddIn.OpenAssemblyCommand"/> |
|
|
|
class="ICSharpCode.ComponentInspector.AddIn.OpenAssemblyCommand"/> |
|
|
@ -39,7 +42,7 @@ |
|
|
|
</MenuItem> |
|
|
|
</MenuItem> |
|
|
|
</Condition> |
|
|
|
</Condition> |
|
|
|
</Path> |
|
|
|
</Path> |
|
|
|
|
|
|
|
|
|
|
|
<Path name = "/SharpDevelop/Dialogs/OptionsDialog"> |
|
|
|
<Path name = "/SharpDevelop/Dialogs/OptionsDialog"> |
|
|
|
<DialogPanel id="ComponentInspectorOptions" |
|
|
|
<DialogPanel id="ComponentInspectorOptions" |
|
|
|
label="${res:ComponentInspector.ToolsMenu.ShowComponentInspectorMenuItem}" |
|
|
|
label="${res:ComponentInspector.ToolsMenu.ShowComponentInspectorMenuItem}" |
|
|
|