コード例 #1
0
 public ProjectLogger(BackEndBuildTableDataSource dataSource, bool isDesignTime) :
     base(dataSource)
 {
     _logPath      = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.binlog");
     _binaryLogger = new BinaryLogger
     {
         Parameters            = _logPath,
         Verbosity             = LoggerVerbosity.Diagnostic,
         CollectProjectImports = BinaryLogger.ProjectImportsCollectionMode.None
     };
     _isDesignTime = isDesignTime;
 }
コード例 #2
0
 public RoslynLogger(BackEndBuildTableDataSource dataSource)
 {
     _dataSource = dataSource;
 }
コード例 #3
0
 public EvaluationLogger(BackEndBuildTableDataSource dataSource) :
     base(dataSource)
 {
 }