示例#1
0
        static void Main(string[] args)
        {
            // var coreobj = new dotnetcorecls();
            //coreobj.test();

            var framwrkobj = new dotnetframeworklib.dotnetframeworklibcls();

            var standobj = new dotnetstandardlib.dotnetstandardcls();

            Console.WriteLine("Hello World!");
        }
示例#2
0
        // Please set the following connection strings in app.config for this WebJob to run:
        // AzureWebJobsDashboard and AzureWebJobsStorage
        static void Main()
        {
            var standobj = new dotnetstandardlib.dotnetstandardcls();

            var config = new JobHostConfiguration();

            if (config.IsDevelopment)
            {
                config.UseDevelopmentSettings();
            }

            var host = new JobHost();

            // The following code ensures that the WebJob will be running continuously
            host.RunAndBlock();
        }