We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Along with work from #2510
Currently, the generation of the kiota classes based on the openapi json/yml spec needs to be done manually before building the project.
See: https://learn.microsoft.com/en-us/openapi/kiota/using#client-generation
We need to find a way to incorporate this into the build process when using the Kiota Uno Extension.
I am imagining something like an IHostBuilder extension method called .UseKiota("PATH_TO_API_SPEC.json") or perhaps on a per client basis like:
IHostBuilder
.UseKiota("PATH_TO_API_SPEC.json")
hostBuilder.UseHttp((context, services) => services .AddKiotaClient("PATH_TO_API_SPEC.json") .AddKiotaClient("PATH_TO_A_DIFFERENT_API_SPEC.yml") );
The text was updated successfully, but these errors were encountered:
Kunal22shah
No branches or pull requests
Along with work from #2510
Currently, the generation of the kiota classes based on the openapi json/yml spec needs to be done manually before building the project.
See: https://learn.microsoft.com/en-us/openapi/kiota/using#client-generation
We need to find a way to incorporate this into the build process when using the Kiota Uno Extension.
Proposed API
I am imagining something like an
IHostBuilder
extension method called.UseKiota("PATH_TO_API_SPEC.json")
or perhaps on a per client basis like:The text was updated successfully, but these errors were encountered: