5 implementations of DisplayName
aspire (2)
Projects\DotNetAppHostProject.cs (1)
76
public string
DisplayName
=> "C# (.NET)";
Projects\GuestAppHostProject.cs (1)
96
public string
DisplayName
=> _resolvedLanguage.DisplayName;
Aspire.Cli.Tests (3)
Commands\NewCommandTests.cs (1)
1707
public string
DisplayName
=> "TypeScript (Node.js)";
Commands\SecretCommandTests.cs (1)
108
public string
DisplayName
=> "Test";
TestServices\TestAppHostProjectFactory.cs (1)
118
public 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)
124
logger.LogDebug("Found {Language} apphost {CandidateFile}", handler.
DisplayName
, candidateFile.FullName);
329
logger.LogDebug("Using {Language} apphost {ProjectFile}", handler.
DisplayName
, projectFile.FullName);