home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Software / Freeware / Programare / Sharp / SharpDevelop_1.0.3.1761_Setup.exe / SimpleCommand.xft < prev    next >
Extensible Markup Language  |  2004-07-05  |  953b  |  42 lines

  1. <?xml version="1.0"?>
  2. <Template author="Mike Krueger" version="1.0">
  3.     
  4.     <Config
  5.           name        = "${res:Templates.File.#Develop.SimpleCommand.Name}"
  6.           icon        = "C#.File.FullFile"
  7.           category    = "#Develop"
  8.           defaultname = "SimpleCommand${Number}.cs"
  9.           language    = "C#"/>
  10.      
  11.     <Description>${res:Templates.File.#Develop.SimpleCommand.Description}</Description>
  12.     
  13.     <Files>
  14.         <File name="${FullName}" language="C#"><![CDATA[${StandardHeader.C#}
  15. using System;
  16. using System.Windows.Forms;
  17.  
  18. using ICSharpCode.Core.AddIns.Codons;
  19.  
  20. namespace ${StandardNamespace}
  21. {
  22.     /// <summary>
  23.     /// Description of  ${FileNameWithoutExtension}
  24.     /// </summary>
  25.     public class  ${FileNameWithoutExtension} : AbstractCommand
  26.     {
  27.         /// <summary>
  28.         /// Starts the command
  29.         /// </summary>
  30.         public override void Run()
  31.         {
  32.             // TODO: Add your code here !!!
  33.         }
  34.     }
  35. }]]>
  36.         </File>
  37.     </Files>
  38.     
  39.     <AdditionalOptions/>
  40.     
  41. </Template>
  42.