예제 #1
0
파일: Program.cs 프로젝트: yisheng/indy-sdk
        static async Task ExecuteDemos()
        {
            await Pool.SetProtocolVersionAsync(2);

            await WalletDemo.Execute();

            await NonSecretsDemo.Execute();

            await AnonCredsDemo.Execute();

            await AnonCredsRevocationDemo.Execute();

            await LedgerDemo.Execute();

            await CryptoDemo.Execute();
        }
예제 #2
0
        public static async Task Main(string[] args)
        {
            await Pool.SetProtocolVersionAsync(2);

            await WalletDemo.Execute();

            await NonSecretsDemo.Execute();

            await AnonCredsDemo.Execute();

            await AnonCredsRevocationDemo.Execute();

            await CryptoDemo.Execute();

            await LedgerDemo.Execute();

            Console.WriteLine("Press any key to continue...");
            Console.ReadKey(true);
        }