コード例 #1
0
        public EnvironmentService(IFileExecutionService fileExecutionService, IFileSystemAdapter fileSystemAdapter, IConvention convention)
        {
            if(fileExecutionService == null) throw new ArgumentNullException("fileExecutionService");
            if(convention == null) throw new ArgumentNullException("convention");

            this.FileExecution = fileExecutionService;
            this.FileSystemAdapter = fileSystemAdapter;
            this.Convention = convention;
        }
コード例 #2
0
        public MsBuildService(IFileExecutionService fileExecutionService, IConvention convention, ISettings settings)
        {
            if(convention == null) throw new ArgumentNullException("convention");
            if(settings == null) throw new ArgumentNullException("settings");

            this.FileExecution = fileExecutionService;
            this.Convention = convention;
            this.Settings = settings;
        }
コード例 #3
0
        public AdeNetService(IFileExecutionService fileExecutionService, IConvention convention, ISettings settings, ITextOutputService textOutputService)
        {
            if(convention == null) throw new ArgumentNullException("convention");
            if(settings == null) throw new ArgumentNullException("settings");

            this.FileExecution = fileExecutionService;
            this.Convention = convention;
            this.Settings = settings;
            this.TextOutput = textOutputService;
        }
コード例 #4
0
 public AdeNetExeAdapter(IFileExecutionService fileExecutionService, IConvention convention, ISettings settings)
 {
     this.FileExecution = fileExecutionService;
     this.Convention = convention;
     this.Settings = settings;
 }