2 instantiations of ScaffoldContext
aspire (2)
Commands\InitCommand.cs (1)
587var context = new ScaffoldContext(language, workingDirectory, ProjectName: null);
Templating\CliTemplateFactory.EmptyTemplate.cs (1)
77var context = new ScaffoldContext(language, new DirectoryInfo(outputPath), projectName);
7 references to ScaffoldContext
aspire (5)
Commands\InitCommand.cs (1)
587var context = new ScaffoldContext(language, workingDirectory, ProjectName: null);
Scaffolding\IScaffoldingService.cs (1)
30Task<bool> ScaffoldAsync(ScaffoldContext context, CancellationToken cancellationToken);
Scaffolding\ScaffoldingService.cs (2)
36public async Task<bool> ScaffoldAsync(ScaffoldContext context, CancellationToken cancellationToken) 46private async Task<bool> ScaffoldGuestLanguageAsync(ScaffoldContext context, CancellationToken cancellationToken)
Templating\CliTemplateFactory.EmptyTemplate.cs (1)
77var context = new ScaffoldContext(language, new DirectoryInfo(outputPath), projectName);
Aspire.Cli.Tests (2)
Commands\NewCommandTests.cs (2)
1649public Func<ScaffoldContext, CancellationToken, Task<bool>>? ScaffoldAsyncCallback { get; set; } 1651public Task<bool> ScaffoldAsync(ScaffoldContext context, CancellationToken cancellationToken)