LoadAsync() public static method

ソリューション読み込み。
public static LoadAsync ( string path ) : Task
path string ソリューションのパス。
return Task
コード例 #1
0
ファイル: Program.cs プロジェクト: tppApe/UfcppSample
        private static async Task ReadCsharpSourceCodes(string path)
        {
            Console.WriteLine("Build started");

            var s = await SolutionLoader.LoadAsync(path);

            FindGetOnlyPropertyWhichHasSingleStatement(s);
            FindMethodWhichHasSingleStatement(s);
        }