6 implementations of DisplayName
aspire (2)
Projects\DotNetAppHostProject.cs (1)
128public string DisplayName => "C# (.NET)";
Projects\GuestAppHostProject.cs (1)
122public string DisplayName => _resolvedLanguage.DisplayName;
Aspire.Cli.Tests (4)
Commands\SecretCommandTests.cs (1)
118public string DisplayName => "Test";
Projects\ProjectLocatorTests.cs (1)
2195public string DisplayName => "TypeScript";
TestServices\TestAppHostProjectFactory.cs (1)
156public string DisplayName => _factory.DisplayName;
TestServices\TestTypeScriptStarterProjectFactory.cs (1)
54public string DisplayName => "TypeScript (Node.js)";
4 references to DisplayName
aspire (4)
Commands\AppHostLauncher.cs (1)
277return string.Format(CultureInfo.CurrentCulture, SharedCommandStrings.LaunchProfileNotSupported, project.DisplayName);
Projects\LanguageService.cs (1)
149_interactionService.DisplayMessage(KnownEmojis.CheckMarkButton, $"Language preference saved to local configuration: {selectedProject.DisplayName}");
Projects\ProjectLocator.cs (2)
390logger.LogDebug("Found {Language} apphost {CandidateFile}", handler.DisplayName, candidateFile.FullName); 1028logger.LogDebug("Using {Language} apphost {ProjectFile}", handler.DisplayName, projectFile.FullName);