AvalonStudio.Projects.OmniSharp.OmniSharpSolution.Create C# (CSharp) Method

Create() public static method

public static Create ( string path ) : Task
path string
return Task
        public static async Task<OmniSharpSolution> Create (string path)
        {
            OmniSharpSolution result = new OmniSharpSolution();

            await result.LoadSolution(path);

            return result;            
        }

Usage Example

Ejemplo n.º 1
0
 public async Task <ISolution> LoadAsync(string path)
 {
     return(await OmniSharpSolution.Create(path));
 }