Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2010
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.74 KB | None | 0 0
  1. <AddIn
  2.     name="Refactory"
  3.     author="Eric Schäfer"
  4.     copyright="(C) 2010 Eric Schäfer, License: MIT/X11"
  5.     url="http://www.ericschaefer.org"
  6.     description="Erics Refactoring"
  7.     version="2.4">
  8.    
  9.     <Runtime>
  10.         <Import assembly="Refactory.dll" />
  11.     </Runtime>
  12.    
  13.     <Extension path="/MonoDevelop/Refactoring/Refactorings">
  14.         <Class id="Refactory.ReplaceEmptyStringRefactoring" class="Refactory.ReplaceEmptyStringRefactoring" />
  15.     </Extension>
  16.  
  17.     <Extension path = "/MonoDevelop/Ide/Commands">
  18.         <Category _name = "Refactoring" id = "Refactoring">
  19.             <Command id = "Refactory.ReplaceEmptyStringCommand"
  20.                 defaultHandler = "Refactory.ReplaceEmptyStringHandler"
  21.                 _label = "_Replace Empty String" />
  22.         </Category>
  23.     </Extension>   
  24.    
  25. </AddIn>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement