10 instantiations of RunPlan
dotnet-aot (10)
parent\dotnet\Commands\Run\FileBasedAppRunPlan.cs (10)
76BuildLevel.None => new RunPlan(RunTier.CachedLaunch, RunDecisionReason.CacheValid, cache), 77BuildLevel.Csc => new RunPlan(RunTier.DirectCompile, RunDecisionReason.DirectCompilationRequired, cache), 78BuildLevel.All => new RunPlan(RunTier.MSBuildBuild, RunDecisionReason.FullBuildRequired, cache), 97return new RunPlan(RunTier.ManagedFallback, RunDecisionReason.NoBuildNotEligible, Cache: null); 110return new RunPlan(RunTier.ManagedFallback, RunDecisionReason.NoBuildNotEligible, Cache: null); 116return new RunPlan(RunTier.ManagedFallback, RunDecisionReason.NoBuildNotEligible, Cache: null); 119return new RunPlan( 148return new RunPlan(RunTier.ManagedFallback, RunDecisionReason.CachedLaunchNotEligible, Cache: null); 165return new RunPlan( 194return new RunPlan(
7 references to RunPlan
dotnet-aot (7)
parent\dotnet\Commands\Run\AotRunCommand.cs (3)
81RunPlan? plan = null; 85RunPlan noBuildPlan = FileBasedAppRunPlan.AnalyzeAotNoBuildSynthetic( 106RunPlan cachedPlan = FileBasedAppRunPlan.AnalyzeCachedLaunch(
parent\dotnet\Commands\Run\FileBasedAppRunPlan.cs (4)
71internal static RunPlan Analyze(FileBasedAppRunPlanInputs inputs) 89internal static RunPlan AnalyzeAotNoBuildSynthetic( 137internal static RunPlan AnalyzeCachedLaunch( 161RunPlan analyzedPlan = Analyze(inputs);