home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Software / Freeware / Programare / Sharp / SharpDevelop_1.0.3.1761_Setup.exe / ICSharpCode.NUnitPad.addin < prev    next >
Text File  |  2004-11-30  |  2KB  |  52 lines

  1. <AddIn
  2.     name        = "NUnit-Addin"
  3.     author      = "Mike Krueger"
  4.     copyright   = "GPL"
  5.     url         = "http://www.icsharpcode.net"
  6.     description = "Integrated NUnit test runner for #Develop"
  7.     version     = "1.0.0"
  8. >
  9.     <Runtime>
  10.         <Import assembly="ICSharpCode.NUnitPad.dll"/>
  11.     </Runtime>
  12.     
  13.     <Extension path = "/SharpDevelop/Workbench/Views">
  14.         <Pad id       = "NUnitPad"
  15.              shortcut = "Control|Alt|N"
  16.              class    = "ICSharpCode.NUnitPad.NUnitPadContent"/>
  17.     </Extension>
  18.     
  19.     <Extension path = "/SharpDevelop/Views/ProjectBrowser/ContextMenu/ProjectBrowserNode">
  20.         <MenuItem id = "RunTests"
  21.                   insertafter ="RemoveRenameSeparator"
  22.                   insertbefore ="Deploy"
  23.                   label = "${res:ProjectComponent.ContextMenu.RunTests}"
  24.                   class = "ICSharpCode.NUnitPad.RunTestsInProject"/>
  25.     </Extension>
  26.     
  27.     <Extension path = "/SharpDevelop/Workbench/MainMenu/Project">
  28.         <Conditional activeproject="*" action="Disable">
  29.             <MenuItem id = "RunTests"
  30.                       insertbefore ="Deploy"
  31.                       label = "${res:XML.MainMenu.ProjectMenu.RunTests}" 
  32.                       description = "${res:XML.MainMenu.ProjectMenu.RunTests.Description}"
  33.                       class = "ICSharpCode.NUnitPad.RunTestsInProject"/>
  34.         </Conditional>
  35.     </Extension>
  36.     
  37.     
  38.     <Extension path = "/NUnitPad/TestTreeView/ContextMenu">
  39.         <Conditional ownerstate="TestItemSelected">
  40.             <MenuItem id = "Run"
  41.                       label = "${res:NUnitPad.NUnitPadContent.RunTestsContextMenuLabel}"
  42.                       class = "ICSharpCode.NUnitPad.RunTestsCommand"/>
  43.         </Conditional>
  44.         <Conditional ownerstate="SourceCodeItemSelected">
  45.             <MenuItem id = "GotoDefinition"
  46.                       label = "${res:NUnitPad.NUnitPadContent.GotoDefinitionContextMenuLabel}"
  47.                       class = "ICSharpCode.NUnitPad.GotoDefinitionCommand"/>
  48.         </Conditional>
  49.     </Extension>
  50.     
  51. </AddIn>
  52.