From 651d1e5f286f16e5e6d022aae97613c49ab31978 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Mon, 17 Oct 2022 10:17:24 -0400 Subject: [PATCH] - fixes #1898 adds a message for successful generation Signed-off-by: Vincent Biret --- src/kiota/Handlers/KiotaGenerationCommandHandler.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/kiota/Handlers/KiotaGenerationCommandHandler.cs b/src/kiota/Handlers/KiotaGenerationCommandHandler.cs index 0460a28e18..4bbb053067 100644 --- a/src/kiota/Handlers/KiotaGenerationCommandHandler.cs +++ b/src/kiota/Handlers/KiotaGenerationCommandHandler.cs @@ -76,6 +76,7 @@ public override async Task InvokeAsync(InvocationContext context) try { await new KiotaBuilder(logger, Configuration.Generation).GenerateClientAsync(cancellationToken); + Console.WriteLine("Generation completed successfully"); DisplayInfoHint(language, Configuration.Generation.OpenAPIFilePath); DisplayGenerateAdvancedHint(includePatterns, excludePatterns, Configuration.Generation.OpenAPIFilePath); return 0;