5 implementations of DisplayName
aspire (2)
Projects\DotNetAppHostProject.cs (1)
76public string DisplayName => "C# (.NET)";
Projects\GuestAppHostProject.cs (1)
96public string DisplayName => _resolvedLanguage.DisplayName;
Aspire.Cli.Tests (3)
Commands\NewCommandTests.cs (1)
1707public string DisplayName => "TypeScript (Node.js)";
Commands\SecretCommandTests.cs (1)
108public string DisplayName => "Test";
TestServices\TestAppHostProjectFactory.cs (1)
118public string DisplayName => "C# (.NET)";
3 references to DisplayName
aspire (3)
Projects\LanguageService.cs (1)
138_interactionService.DisplayMessage(KnownEmojis.CheckMark, $"Language preference saved to local configuration: {selectedProject.DisplayName}");
Projects\ProjectLocator.cs (2)
124logger.LogDebug("Found {Language} apphost {CandidateFile}", handler.DisplayName, candidateFile.FullName); 329logger.LogDebug("Using {Language} apphost {ProjectFile}", handler.DisplayName, projectFile.FullName);