public async Task RunAsync()

in Notation.Plugin.AzureKeyVault/Command/GetPluginMetadata.cs [13:23]


        public async Task<IPluginResponse> RunAsync()
        {
            return await Task.FromResult<IPluginResponse>(new GetMetadataResponse(
                name: "azure-kv",
                description: "Notation Azure Key Vault plugin",
                version: Version,
                url: "https://github.com/Azure/notation-azure-kv",
                supportedContractVersions: new[] { Protocol.Protocol.ContractVersion },
                capabilities: new[] { "SIGNATURE_GENERATOR.RAW" }
            ));
        }