1 implementation of ITemplateCreationResult
Microsoft.TemplateEngine.Edge (1)
Template\TemplateCreationResult.cs (1)
8
internal class TemplateCreationResult :
ITemplateCreationResult
15 references to ITemplateCreationResult
Microsoft.TemplateEngine.Cli (4)
PostActionDispatcher.cs (1)
69
internal PostActionExecutionStatus Process(
ITemplateCreationResult
creationResult, bool isDryRun, AllowRunScripts canRunScripts)
TemplateInvoker.cs (3)
15
using ITemplateCreationResult = Microsoft.TemplateEngine.Edge.Template.
ITemplateCreationResult
;
160
ITemplateCreationResult
instantiateResult;
311
private NewCommandStatus HandlePostActions(
ITemplateCreationResult
creationResult, TemplateCommandArgs args)
Microsoft.TemplateEngine.Edge (2)
Template\TemplateCreator.cs (2)
39
public Task<
ITemplateCreationResult
> InstantiateAsync(
76
public async Task<
ITemplateCreationResult
> InstantiateAsync(
Microsoft.TemplateEngine.IDE (9)
Bootstrapper.cs (9)
14
using ITemplateCreationResult = Microsoft.TemplateEngine.Edge.Template.
ITemplateCreationResult
;
142
/// <returns><see cref="
ITemplateCreationResult
"/> containing information on created template or error occurred.</returns>
144
public Task<
ITemplateCreationResult
> CreateAsync(
174
/// <returns><see cref="
ITemplateCreationResult
"/> containing information on created template or error occurred.</returns>
177
public Task<
ITemplateCreationResult
> CreateAsync(
208
/// <returns><see cref="
ITemplateCreationResult
"/> containing information on template that would be created or error occurred.</returns>
209
public Task<
ITemplateCreationResult
> GetCreationEffectsAsync(
454
ITemplateCreationResult
instantiateResult = await _templateCreator.InstantiateAsync(info, name, name, outputPath, parameters, false, baselineName).ConfigureAwait(false);
461
ITemplateCreationResult
instantiateResult = await _templateCreator.InstantiateAsync(info, name, name, outputPath, parameters, false, baselineName, true).ConfigureAwait(false);