35 references to BuildLevel
dotnet-aot (35)
Generated\361d1da7f942c932\RunFileBuildCacheJsonSerializerContext.BuildLevel.g.cs (9)
13
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.DotNet.Cli.Commands.Run.
BuildLevel
>? _BuildLevel;
19
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.DotNet.Cli.Commands.Run.
BuildLevel
> BuildLevel
22
get => _BuildLevel ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.DotNet.Cli.Commands.Run.
BuildLevel
>)Options.GetTypeInfo(typeof(global::Microsoft.DotNet.Cli.Commands.Run.
BuildLevel
));
25
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.DotNet.Cli.Commands.Run.
BuildLevel
> Create_BuildLevel(global::System.Text.Json.JsonSerializerOptions options)
27
if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.DotNet.Cli.Commands.Run.
BuildLevel
>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.DotNet.Cli.Commands.Run.
BuildLevel
> jsonTypeInfo))
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::Microsoft.DotNet.Cli.Commands.Run.
BuildLevel
>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.GetEnumConverter<global::Microsoft.DotNet.Cli.Commands.Run.
BuildLevel
>(options));
Generated\361d1da7f942c932\RunFileBuildCacheJsonSerializerContext.GetJsonTypeInfo.g.cs (1)
22
if (type == typeof(global::Microsoft.DotNet.Cli.Commands.Run.
BuildLevel
))
Generated\361d1da7f942c932\RunFileBuildCacheJsonSerializerContext.RunFileBuildCacheEntry.g.cs (3)
139
var info4 = new global::System.Text.Json.Serialization.Metadata.JsonPropertyInfoValues<global::Microsoft.DotNet.Cli.Commands.Run.
BuildLevel
>
154
AttributeProviderFactory = static () => typeof(global::Microsoft.DotNet.Cli.Commands.Run.RunFileBuildCacheEntry).GetProperty("BuildLevel", InstanceMemberBindingFlags, null, typeof(global::Microsoft.DotNet.Cli.Commands.Run.
BuildLevel
), global::System.Array.Empty<global::System.Type>(), null),
157
properties[4] = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreatePropertyInfo<global::Microsoft.DotNet.Cli.Commands.Run.
BuildLevel
>(options, info4);
parent\dotnet\Commands\Run\FileBasedAppCacheInfo.cs (1)
63
if (PreviousEntry?.BuildLevel !=
BuildLevel
.Csc)
parent\dotnet\Commands\Run\FileBasedAppRunPlan.cs (16)
73
BuildLevel
buildLevel = AnalyzeBuildLevel(inputs, out FileBasedAppCacheInfo? cache);
76
BuildLevel
.None => new RunPlan(RunTier.CachedLaunch, RunDecisionReason.CacheValid, cache),
77
BuildLevel
.Csc => new RunPlan(RunTier.DirectCompile, RunDecisionReason.DirectCompilationRequired, cache),
78
BuildLevel
.All => new RunPlan(RunTier.MSBuildBuild, RunDecisionReason.FullBuildRequired, cache),
103
BuildLevel:
BuildLevel
.Csc,
181
BuildLevel:
BuildLevel
.Csc,
200
private static
BuildLevel
AnalyzeBuildLevel(
208
return
BuildLevel
.All;
214
return
BuildLevel
.None;
219
return
BuildLevel
.All;
231
return
BuildLevel
.Csc;
239
return
BuildLevel
.All;
247
return
BuildLevel
.All;
254
return
BuildLevel
.All;
262
return
BuildLevel
.All;
283
return
BuildLevel
.Csc;
parent\dotnet\Commands\Run\RunFileBuildCacheEntry.cs (1)
45
public
BuildLevel
BuildLevel { get; set; }
parent\dotnet\Commands\Run\RunPlan.cs (4)
24
internal
BuildLevel
ToBuildLevel()
27
RunTier.CachedLaunch =>
BuildLevel
.None,
28
RunTier.DirectCompile =>
BuildLevel
.Csc,
29
RunTier.MSBuildBuild =>
BuildLevel
.All,