Ignore:
Timestamp:
8/4/2010 9:23:35 AM (22 months ago)
Author:
lowjoel
Message:

Make the generation of help text for addtask parameters done by the plugins, since the arguments are passed to them, they should document their own CLIs. To do this, the ICliConfigurer interface was modified.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/eraser/Eraser.DefaultPlugins/ErasureTargets/FileErasureTargetConfigurer.cs

    r2228 r2232  
    7878        #region ICliConfigurer<ErasureTarget> Members 
    7979 
    80         public void Help() 
     80        public string Help() 
    8181        { 
    82             throw new NotImplementedException(); 
     82            return S._(@"file                Erases the specified file 
     83  argument: file=<path>"); 
    8384        } 
    8485 
Note: See TracChangeset for help on using the changeset viewer.