Exemple #1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
        {
            loggerFactory.AddConsole(Configuration.GetSection("Logging"));
            loggerFactory.AddDebug();

            MySampleConsole console    = new MySampleConsole();
            MyLibClass      myLibClass = new MyLibClass();

            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                app.UseDatabaseErrorPage();
                app.UseBrowserLink();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
            }

            app.UseStaticFiles();

            app.UseIdentity();

            // Add external authentication middleware below. To configure them please see http://go.microsoft.com/fwlink/?LinkID=532715

            app.UseMvc(routes =>
            {
                routes.MapRoute(
                    name: "default",
                    template: "{controller=Home}/{action=Index}/{id?}");
            });
        }
        static void Main(string[] args)
        {
            // if we have declared the namespace at the top, we can do:
            MyLibClass cls = new MyLibClass();

            // or if you don't want to add the namespace at the top we have to do:
            MyLib.MyLibClass cls = new MyLib.MyLibClass();
        }
Exemple #3
0
 public static void Main(string[] args)
 {
     var myClass = new MyLibClass();
 }
Exemple #4
0
 public void MainTest()
 {
     var myClass = new MyLibClass();
 }