in Notation.Plugin.AzureKeyVault/Protocol/PluginIO.cs [39:47]
public static string ReadInput()
{
string? inputJson = Console.ReadLine();
if (inputJson == null)
{
throw new ValidationException("Standard input is empty");
}
return inputJson;
}