7 references to AppConfigPath
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCompiler.cs (1)
126
var appConfigPath = this.Arguments.
AppConfigPath
;
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (4)
CommandLineTests.cs (4)
4309
Assert.Null(parsedArgs.
AppConfigPath
);
4315
Assert.Null(parsedArgs.
AppConfigPath
);
4321
Assert.Null(parsedArgs.
AppConfigPath
);
4325
Assert.Equal(@"C:\abc\def\baz\a.exe.config", parsedArgs.
AppConfigPath
);
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\CommandLineProject.cs (2)
86
if (commandLineArguments.
AppConfigPath
!= null)
90
using var appConfigStream = new FileStream(commandLineArguments.
AppConfigPath
, FileMode.Open, FileAccess.Read);