ICommandLineParserService.cs 452 字节
Newer Older
1
// Copyright (c) Microsoft.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information.
P
Pilchie 已提交
2 3 4

using System.Collections.Generic;

5
namespace Microsoft.CodeAnalysis.Host
P
Pilchie 已提交
6
{
7
    internal interface ICommandLineParserService : ILanguageService
P
Pilchie 已提交
8
    {
9
        CommandLineArguments Parse(IEnumerable<string> arguments, string baseDirectory, bool isInteractive, string sdkDirectory);
P
Pilchie 已提交
10
    }
11
}