File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
ql/test/library-tests/compilations Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -86,9 +86,9 @@ public static ExitCode Run(string[] args)
86
86
var stopwatch = new Stopwatch ( ) ;
87
87
stopwatch . Start ( ) ;
88
88
89
- Entities . Compilation . Settings = ( Directory . GetCurrentDirectory ( ) , args ) ;
89
+ var options = Options . CreateWithEnvironment ( args ) ;
90
+ Entities . Compilation . Settings = ( Directory . GetCurrentDirectory ( ) , options . CompilerArguments . ToArray ( ) ) ;
90
91
91
- var options = Options . CreateWithEnvironment ( Entities . Compilation . Settings . Args ) ;
92
92
var fileLogger = new FileLogger ( options . Verbosity , GetCSharpLogPath ( ) ) ;
93
93
using var logger = options . Console
94
94
? new CombinedLogger ( new ConsoleLogger ( options . Verbosity ) , fileLogger )
Original file line number Diff line number Diff line change @@ -13,10 +13,7 @@ compilationArguments
13
13
| compilation | 5 | /r:System.Core.dll |
14
14
| compilation | 6 | /r:System.Runtime.dll |
15
15
| compilation | 7 | /r:System.Console.dll |
16
- | compilation | 8 | --console |
17
- | compilation | 9 | --verbosity |
18
- | compilation | 10 | 2 |
19
- | compilation | 11 | Program.cs |
16
+ | compilation | 8 | Program.cs |
20
17
compilationFiles
21
18
| compilation | 0 | Program.cs:0:0:0:0 | Program.cs |
22
19
compilationFolder
You can’t perform that action at this time.
0 commit comments