exportasyncfunctionaddCommandAzureSetupOAuth(program) {
program
.command("azure-setup-oauth")
.description('Set up "Login with Microsoft" (Azure AD OAuth) for the given project')
.action(() => {
console.log("Azure AD OAuth setup functionality coming soon!");
});
}