public ConsultingAnalysisResult(string solutionPath, string appName)
     : base(solutionPath, appName)
 {
     cpuAsyncResults = new CPUAsyncResults();
     ioAsyncResults = new IOAsyncResults();
     asyncAwaitResults = new AsyncAwaitResults();
 }
        public AsyncAnalysisResult(string solutionPath, string appName)
            : base(solutionPath, appName)
        {
            generalAsyncResults = new GeneralAsyncResults();
            asyncAwaitResults = new AsyncAwaitResults();
            apmDiagnosisResults = new APMDiagnosisResults();
            syncUsageResults = new SyncUsageResults();
            asyncUsageResults_WP7 = new AsyncUsageResults();
            asyncUsageResults_WP8 = new AsyncUsageResults();
            var tmp = File.ReadLines(@"C:\Users\Semih\Desktop\commitMap.txt").Where(line => line.Contains(appName.Replace('+', '/')));
            if(tmp.Any())
                commit = tmp.First().Split(',')[1];


        }