17 references to GetManagedPath
aspire (10)
Commands\DashboardRunCommand.cs (1)
111var managedPath = layout.GetManagedPath();
Layout\LayoutDiscovery.cs (1)
336var managedPath = layout.GetManagedPath();
NuGet\BundleNuGetPackageCache.cs (1)
147var managedPath = layout.GetManagedPath();
NuGet\BundleNuGetService.cs (1)
90var managedPath = layout.GetManagedPath();
Profiling\ProfileCaptureService.cs (1)
68managedPath = layout?.GetManagedPath();
Projects\AppHostServerProject.cs (1)
62if (layout is not null && layout.GetManagedPath() is string serverPath && File.Exists(serverPath))
Projects\DotNetAppHostProject.cs (2)
2573layout.GetManagedPath() is { } layoutManagedPath && 2602var terminalHostPath = TryGetRepoLocalManagedPath() ?? layout?.GetManagedPath();
Projects\PrebuiltAppHostServer.cs (2)
134var managedPath = _layout.GetManagedPath(); 1499var managedPath = _layout.GetManagedPath();
Aspire.Cli.Tests (7)
BundleServiceIntegrationTests.cs (2)
274var managedPath = layoutLease.Layout.GetManagedPath(); 460var managedPath = layoutLease.Layout.GetManagedPath();
NuGet\BundleNuGetPackageCacheTests.cs (3)
29var managedPath = layout.GetManagedPath(); 84var managedPath = layout.GetManagedPath(); 133var managedPath = layout.GetManagedPath();
Projects\DotNetAppHostProjectTests.cs (2)
631Assert.Equal(layout.GetManagedPath(), env[BundleDiscovery.DashboardPathEnvVar]); 699File.Delete(layout.GetManagedPath()!);