我试图使用Autorest自己的例子来生成一个客户端。
https://github.com/Azure/autorest/blob/main/docs/generate/readme.md
当我跑的时候
autorest --input-file=pets.json --csharp
我得到一个客户端类和一个选项类。但是它不会为我生成Dog或Kitten类,尽管我可以看到它们是定义为pets.json文件的。
我在这里错过了什么?
发布于 2022-10-21 05:52:03
autorest --input-file=pets.json --csharp --generation1-convenience-client
似乎是答案:)
https://stackoverflow.com/questions/74135576
复制相似问题