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