使用Autorest从Swagger生成领域模型类

ux6nzvsh  于 2022-11-06  发布在  其他
关注(0)|答案(1)|浏览(112)

我试图使用Autorest自己的例子来生成一个客户端。
https://github.com/Azure/autorest/blob/main/docs/generate/readme.md
当我奔跑的时候
autorest --input-file=pets.json --csharp
我得到了一个Client类和一个Options类,但它没有为我生成Dog或Kitten类,尽管我可以看到它们是在pets.json文件中定义的。
我错过了什么?

y53ybaqx

y53ybaqx1#

autorest --input-file=pets.json --csharp --generation1-convenience-client
似乎是答案:)

相关问题