3 instantiations of ScriptSourceResolver
Microsoft.CodeAnalysis.Scripting (3)
ScriptSourceResolver.cs (3)
17public static new ScriptSourceResolver Default { get; } = new ScriptSourceResolver(ImmutableArray<string>.Empty, null); 37return new ScriptSourceResolver(ToImmutableArrayChecked(searchPaths, nameof(searchPaths)), BaseDirectory); 49return new ScriptSourceResolver(SearchPaths, baseDirectory);
7 references to ScriptSourceResolver
Microsoft.CodeAnalysis.Scripting (7)
ScriptSourceResolver.cs (7)
15public sealed class ScriptSourceResolver : SourceFileResolver, IEquatable<ScriptSourceResolver> 17public static new ScriptSourceResolver Default { get; } = new ScriptSourceResolver(ImmutableArray<string>.Empty, null); 24public ScriptSourceResolver WithSearchPaths(params string[] searchPaths) 27public ScriptSourceResolver WithSearchPaths(IEnumerable<string> searchPaths) 30public ScriptSourceResolver WithSearchPaths(ImmutableArray<string> searchPaths) 40public ScriptSourceResolver WithBaseDirectory(string baseDirectory) 52public bool Equals(ScriptSourceResolver other) => base.Equals(other);