13 references to RunDecisionReason
dotnet-aot (13)
parent\dotnet\Commands\Run\AotRunCommand.cs (2)
80RunDecisionReason decisionReason; 137decisionReason = RunDecisionReason.ExecutableLaunchProfile;
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); 121RunDecisionReason.NoBuildSyntheticCache, 148return new RunPlan(RunTier.ManagedFallback, RunDecisionReason.CachedLaunchNotEligible, Cache: null); 167RunDecisionReason.CachedLaunchNotEligible, 196RunDecisionReason.CachedLaunchNotEligible,
parent\dotnet\Commands\Run\RunPlan.cs (1)
15RunDecisionReason Reason,