Hi all
When we defined operation one in main.cadl, and reference in client.cadl as following:
main.cadl
namespace Azure.ClientAndOperationGroupService;
@autoRoute
namespace Alpha {
#suppress "@azure-tools/cadl-azure-core/use-standard-operations" "This is test code."
@action
op one(): string;
}
client.cadl
@client({
name: "NewOperationGroupService",
service: Azure.ClientAndOperationGroupService
})
interface NewOperationGroupService{
oneFun is Azure.ClientAndOperationGroupService.Alpha.one;
}
The @autoRoute decorator will not pass-down to the operation oneFun. Is it the expected behavior?