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)
104
104
public bool Exec ( string execArgs )
105
105
{
106
106
var args = $ "exec { execArgs } ";
107
- return RunCommandSilently ( args ) ;
107
+ //return RunCommandSilently(args);
108
+ return RunCommand ( args ) ;
108
109
}
109
110
}
110
111
}
Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ public IEnumerable<string> GenerateFiles(IEnumerable<string> cshtmls, IEnumerabl
62
62
{
63
63
GenerateAnalyzerConfig ( cshtmls , analyzerConfig ) ;
64
64
65
+ progressMonitor . LogInfo ( $ "Analyzer config content: { File . ReadAllText ( analyzerConfig ) } ") ;
66
+
65
67
var args = new StringBuilder ( ) ;
66
68
args . Append ( $ "/target:exe /generatedfilesout:\" { outputFolder } \" /out:\" { dllPath } \" /analyzerconfig:\" { analyzerConfig } \" ") ;
67
69
You can’t perform that action at this time.
0 commit comments