8 implementations of DisplayVersionUpdateNotification
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
751
public void
DisplayVersionUpdateNotification
(string newerVersion, string? updateCommand = null)
Interaction\ExtensionInteractionService.cs (1)
517
public void
DisplayVersionUpdateNotification
(string newerVersion, string? updateCommand = null)
Aspire.Cli.Tests (6)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
1253
public void
DisplayVersionUpdateNotification
(string newerVersion, string? updateCommand = null) { }
Commands\UpdateCommandTests.cs (1)
3547
public void
DisplayVersionUpdateNotification
(string newerVersion, string? updateCommand = null)
Projects\ExtensionGuestLauncherTests.cs (1)
184
public void
DisplayVersionUpdateNotification
(string newerVersion, string? updateCommand = null) => throw new NotImplementedException();
Templating\DotNetTemplateFactoryTests.cs (1)
415
public void
DisplayVersionUpdateNotification
(string message, string? updateCommand = null) { }
TestServices\TestExtensionInteractionService.cs (1)
198
public void
DisplayVersionUpdateNotification
(string newerVersion, string? updateCommand = null)
TestServices\TestInteractionService.cs (1)
363
public void
DisplayVersionUpdateNotification
(string newerVersion, string? updateCommand = null)
3 references to DisplayVersionUpdateNotification
aspire (1)
Utils\CliUpdateNotifier.cs (1)
65
interactionService.
DisplayVersionUpdateNotification
(status.LatestVersion, status.UpdateCommand);
Aspire.Cli.Tests (2)
Commands\DoctorCommandTests.cs (1)
141
interactionService.
DisplayVersionUpdateNotification
("13.99.0", "aspire update");
Commands\UpdateCommandTests.cs (1)
3548
=> _innerService.
DisplayVersionUpdateNotification
(newerVersion, updateCommand);