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)
4295
Assert.Null(parsedArgs.
AppConfigPath
);
4301
Assert.Null(parsedArgs.
AppConfigPath
);
4307
Assert.Null(parsedArgs.
AppConfigPath
);
4311
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);