Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ryanrousseau
Created April 15, 2014 02:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanrousseau/10696418 to your computer and use it in GitHub Desktop.
Save ryanrousseau/10696418 to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
using System.Linq;
using Common.Logging;
using ScriptCs.Contracts;
namespace ScriptCs.Exec
{
public class PrintFilePreprocessor : FilePreProcessor
{
public PrintFilePreprocessor(IFileSystem fileSystem, ILog logger, IEnumerable<ILineProcessor> lineProcessors)
: base(fileSystem, logger, lineProcessors.Union(new ILineProcessor[] { new PrintLinePreprocessor() }))
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment