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