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