2 implementations of GetProjectByLanguageId
aspire (1)
Projects\AppHostProjectFactory.cs (1)
38
public IAppHostProject?
GetProjectByLanguageId
(string languageId)
Aspire.Cli.Tests (1)
TestServices\TestAppHostProjectFactory.cs (1)
52
public IAppHostProject?
GetProjectByLanguageId
(string languageId)
3 references to GetProjectByLanguageId
aspire (3)
Commands\NewCommand.cs (1)
167
var project = _projectFactory.
GetProjectByLanguageId
(explicitLanguage);
Projects\LanguageService.cs (2)
40
return _projectFactory.
GetProjectByLanguageId
(languageId);
93
var project = _projectFactory.
GetProjectByLanguageId
(explicitLanguageId);