1 instantiation of DenoCommandLineAnnotation
Aspire.Hosting.JavaScript (1)
DenoHostingExtensions.cs (1)
32annotation = new DenoCommandLineAnnotation();
42 references to DenoCommandLineAnnotation
Aspire.Hosting.JavaScript (42)
DenoHostingExtensions.cs (37)
21/// <see cref="DenoCommandLineAnnotation"/>; flags compose regardless of call order and are emitted in valid Deno 28private static DenoCommandLineAnnotation GetOrAddDenoAnnotation(IResourceBuilder<DenoAppResource> builder) 30if (!builder.Resource.TryGetLastAnnotation<DenoCommandLineAnnotation>(out var annotation)) 86var annotation = GetOrAddDenoAnnotation(builder); 189var annotation = GetOrAddDenoAnnotation(builder); 204var annotation = GetOrAddDenoAnnotation(builder); 233var annotation = GetOrAddDenoAnnotation(builder); 254var annotation = GetOrAddDenoAnnotation(builder); 286var annotation = GetOrAddDenoAnnotation(builder); 321var annotation = GetOrAddDenoAnnotation(builder); 338var annotation = GetOrAddDenoAnnotation(builder); 360var annotation = GetOrAddDenoAnnotation(builder); 378private static void RemoveDenoServeEndpoint(IResourceBuilder<DenoAppResource> builder, DenoCommandLineAnnotation annotation) 413var annotation = GetOrAddDenoAnnotation(builder); 480var annotation = GetOrAddDenoAnnotation(builder); 499var annotation = GetOrAddDenoAnnotation(builder); 511DenoCommandLineAnnotation deno, 599private static void AppendPermissionFlags(List<object> args, DenoCommandLineAnnotation deno, bool usePublishDefaultPermissions) 651private static void AppendResolutionFlags(List<object> args, DenoCommandLineAnnotation deno) 656private static void AppendTaskResolutionFlags(List<object> args, DenoCommandLineAnnotation deno) 661private static IEnumerable<string> GetResolutionFlags(DenoCommandLineAnnotation deno) 664private static IEnumerable<string> GetResolutionFlags(DenoCommandLineAnnotation deno, bool includeImportMap) 704private static void AppendUnstableFlags(List<object> args, DenoCommandLineAnnotation deno) 729DenoCommandLineAnnotation deno, 756DenoCommandLineAnnotation deno, 855private static void AppendWatchFlags(List<object> args, DenoCommandLineAnnotation deno) 869private static void AppendInspectFlags(List<object> args, DenoCommandLineAnnotation deno) 907var deno = resource.TryGetLastAnnotation<DenoCommandLineAnnotation>(out var denoAnnotation) ? denoAnnotation : null; 963if (resource.TryGetLastAnnotation<DenoCommandLineAnnotation>(out var deno) && 1061if (resource.TryGetLastAnnotation<DenoCommandLineAnnotation>(out _) && 1196if (resource.TryGetLastAnnotation<DenoCommandLineAnnotation>(out var deno)) 1397private static bool ShouldUseFrozenLock(DenoCommandLineAnnotation deno, string workingDirectory)
JavaScriptHostingExtensions.cs (5)
837if (c.Resource.TryGetLastAnnotation<DenoCommandLineAnnotation>(out var denoCommandLine)) 2823var denoCommandLine = launchConfigType == "deno" && 2824resource.TryGetLastAnnotation<DenoCommandLineAnnotation>(out var deno)