6 implementations of DisplayName
aspire (2)
Projects\DotNetAppHostProject.cs (1)
128
public string
DisplayName
=> "C# (.NET)";
Projects\GuestAppHostProject.cs (1)
122
public string
DisplayName
=> _resolvedLanguage.DisplayName;
Aspire.Cli.Tests (4)
Commands\SecretCommandTests.cs (1)
118
public string
DisplayName
=> "Test";
Projects\ProjectLocatorTests.cs (1)
2195
public string
DisplayName
=> "TypeScript";
TestServices\TestAppHostProjectFactory.cs (1)
156
public string
DisplayName
=> _factory.DisplayName;
TestServices\TestTypeScriptStarterProjectFactory.cs (1)
54
public string
DisplayName
=> "TypeScript (Node.js)";
4 references to DisplayName
aspire (4)
Commands\AppHostLauncher.cs (1)
277
return 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)
390
logger.LogDebug("Found {Language} apphost {CandidateFile}", handler.
DisplayName
, candidateFile.FullName);
1028
logger.LogDebug("Using {Language} apphost {ProjectFile}", handler.
DisplayName
, projectFile.FullName);