Exemplo n.º 1
0
 private void DoBehaviourSet(string behaviour, Action <ISet> actionDelegate)
 {
     Log(() =>
     {
         _loggers.Write(behaviour + Loggers.MidAlignSeparator);
         Type rememberedPersona = CurrentPersonaType;
         actionDelegate(this);
         CurrentPersonaType = rememberedPersona;
     });
 }
Exemplo n.º 2
0
 static void Main(string[] args)
 {
     if (args == null || args.Length < 1)
     {
         Loggers.WriteError("You need to specify a folder where I can find the .csproj.user file... dumb ass...");
     }
     else
     {
         Loggers.Write(GetConfiguration(args[0]));
     }
 }