コード例 #1
0
        /// <summary>
        /// Where the magic happens
        /// </summary>
        /// <param name="args">Command line args</param>
        public static void Main(string[] args)
        {
            IdentityBaseWebHost
            .Run <Startup>(args, Directory.GetCurrentDirectory());

            // In case you want to generate a password hash
            // var password = new IdentityBase.Crypto.DefaultCrypto()
            //     .HashPassword("UweMachtsMöglich14", 0);
            // System.Console.WriteLine(password);
        }
コード例 #2
0
 public static void Main(string[] args)
 {
     IdentityBaseWebHost.Run <Startup>(args);
 }