Esempio n. 1
0
 public CmakeBuildInformationService(CmakeExecuter cmakeExecuter, ISdkRepository sdkRepository,
                                     ICMakeConversation cMakeConversation, IFileSystem fileSystem)
 {
     this.cmakeExecuter     = cmakeExecuter;
     this.sdkRepository     = sdkRepository;
     this.cMakeConversation = cMakeConversation;
     this.fileSystem        = fileSystem;
 }
 public EngineeringLibraryBuilderExecuter(IProcessManager processManager, IFileSystem fileSystem,
                                          IGuidFactory guidFactory, IBinariesLocator binariesLocator,
                                          ICMakeConversation cmakeConversation, ExecutionContext executionContext)
 {
     this.processManager    = processManager;
     this.fileSystem        = fileSystem;
     this.guidFactory       = guidFactory;
     this.binariesLocator   = binariesLocator;
     this.cmakeConversation = cmakeConversation;
     this.executionContext  = executionContext;
 }
 public CMakeBuildContentProvider(IFileSystem fileSystem, ICMakeConversation cmakeConversation, ExecutionContext executionContext)
 {
     this.fileSystem        = fileSystem;
     this.cmakeConversation = cmakeConversation;
     this.executionContext  = executionContext;
 }