2 instantiations of ScaffoldContext
aspire (2)
Commands\InitCommand.cs (1)
572
var context = new
ScaffoldContext
(language, workingDirectory, ProjectName: null);
Commands\NewCommand.cs (1)
225
var context = new
ScaffoldContext
(language, directory, projectName);
5 references to ScaffoldContext
aspire (5)
Commands\InitCommand.cs (1)
572
var
context = new ScaffoldContext(language, workingDirectory, ProjectName: null);
Commands\NewCommand.cs (1)
225
var
context = new ScaffoldContext(language, directory, projectName);
Scaffolding\IScaffoldingService.cs (1)
29
Task ScaffoldAsync(
ScaffoldContext
context, CancellationToken cancellationToken);
Scaffolding\ScaffoldingService.cs (2)
44
public async Task ScaffoldAsync(
ScaffoldContext
context, CancellationToken cancellationToken)
54
private async Task ScaffoldGuestLanguageAsync(
ScaffoldContext
context, CancellationToken cancellationToken)