9 references to RestartCommand
Aspire.Hosting (2)
ApplicationModel\CommandsConfigurationExtensions.cs (1)
98name: KnownResourceCommands.RestartCommand,
ApplicationModel\ResourceCommandService.cs (1)
25[KnownResourceCommands.LegacyRestartCommand] = KnownResourceCommands.RestartCommand,
Aspire.Hosting.Dotnet.Tests (2)
DotnetProjectResourceTests.cs (2)
534var restartCommand = resource.Annotations.OfType<ResourceCommandAnnotation>().Single(a => a.Name == KnownResourceCommands.RestartCommand); 562var restartCommand = resource.Annotations.OfType<ResourceCommandAnnotation>().Single(a => a.Name == KnownResourceCommands.RestartCommand);
Aspire.Hosting.Tests (5)
Dcp\DcpExecutorTests.cs (2)
9715a => Assert.Equal(KnownResourceCommands.RestartCommand, a.Name)); 9724a => Assert.Equal(KnownResourceCommands.RestartCommand, a.Name),
ResourceCommandAnnotationTests.cs (3)
83var restartCommand = resourceBuilder.Resource.Annotations.OfType<ResourceCommandAnnotation>().Single(a => a.Name == KnownResourceCommands.RestartCommand); 98var restartCommand = projectResource.Annotations.OfType<ResourceCommandAnnotation>().Single(a => a.Name == KnownResourceCommands.RestartCommand); 113var restartCommand = csharpAppResource.Annotations.OfType<ResourceCommandAnnotation>().Single(a => a.Name == KnownResourceCommands.RestartCommand);