Removed initial binder support which was replaced with more general approach.
[castle.git] / MonoRail / NewGenerator / Castle.NewGenerator.Core / GeneratorConfigurer.cs
blobb7e86f51583ed2859c286b562a628a3cd257e042
1 namespace Castle.NewGenerator.Core
3 using Mono.GetOptions;
5 public abstract class GeneratorConfigurer<T> : Options where T : IGenerator
7 [Option("path", 'p')]
8 public string targetPath;
10 public virtual void Configure(T generator, string[] args)
12 targetPath = generator.TargetPath;