File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,8 @@ private IList<string> GetListed(string args, string artifact)
104104 public bool Exec ( string execArgs )
105105 {
106106 var args = $ "exec { execArgs } ";
107- return RunCommandSilently ( args ) ;
107+ //return RunCommandSilently(args);
108+ return RunCommand ( args ) ;
108109 }
109110 }
110111}
Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ public IEnumerable<string> GenerateFiles(IEnumerable<string> cshtmls, IEnumerabl
6262 {
6363 GenerateAnalyzerConfig ( cshtmls , analyzerConfig ) ;
6464
65+ progressMonitor . LogInfo ( $ "Analyzer config content: { File . ReadAllText ( analyzerConfig ) } ") ;
66+
6567 var args = new StringBuilder ( ) ;
6668 args . Append ( $ "/target:exe /generatedfilesout:\" { outputFolder } \" /out:\" { dllPath } \" /analyzerconfig:\" { analyzerConfig } \" ") ;
6769
You can’t perform that action at this time.
0 commit comments