public async Task Run_react_lite_lib() { CreateHostProject(); Directory.SetCurrentDirectory("wip\\MyProject"); await Startup.CreateWebHost("web", new[] { "+react-lite-lib", "TheProject" }); }
public async Task Run_creating_new_init() { CreateHostProject(); Directory.SetCurrentDirectory("wip\\MyProject"); await Startup.CreateWebHost("web", new[] { "+init+bootstrap-sharp+validation-contacts+auth-sqlite", "TheProject" }); }
public async Task Run_web_run_script_ss() { //web run script.html -id 10643 > 10643.html && start 10643.html SetProjectCurrentDirectory(); await Startup.CreateWebHost("web", new[] { "run", "script.ss", "-id", "10643" }); }
public async Task Run_creating_new_project_with_validation_contacts() { Directory.SetCurrentDirectory("wip"); await Startup.CreateWebHost("web", new[] { "new", "web+bootstrap-sharp+auth-memory+validation-contacts", "TheProject" }); }
public async Task Mix_help() { await Startup.Mix("mix", new string[0]); }
public async Task Mix_search_db() { await Startup.Mix("mix", new [] { "#db" }); }
public async Task Run_init() { Directory.CreateDirectory("wip\\spirals"); Directory.SetCurrentDirectory("wip\\spirals"); await Startup.CreateWebHost("web", new[] { "init" }); }
public async Task Run_creating_new_react_lite() { CreateHostProject(); Directory.SetCurrentDirectory("wip"); await Startup.CreateWebHost("web", new[] { "new", "react-lite", "rl" }); }
public async Task Run_plus() { await Startup.CreateWebHost("web", new[] { "+" }); }
public async Task Run_plus_tag_project_sharp() { await Startup.CreateWebHost("web", new[] { "+", "#project,sharp" }); }
public async Task Run_web_help() { await Startup.CreateWebHost("web", new[] { "/h" }); }
public async Task Run_web_run_path_appsettings() { await Startup.CreateWebHost("web", new[] { "run", "path/app.settings" }); }
public async Task Run_web_run_script_azure() { SetProjectCurrentDirectory(); await Startup.CreateWebHost("web", new[] { "run", "script-azure.ss" }); }
public async Task Run_creating_new_sqlite() { CreateHostProject(); Directory.SetCurrentDirectory("wip\\MyProject"); await Startup.CreateWebHost("web", new[] { "+init+sqlite", "TheProject" }); }
public async Task Run_plus_nginx() { CreateHostProject(); Directory.SetCurrentDirectory("wip"); await Startup.CreateWebHost("web", new[] { "+nginx" }); }
public async Task Run_clean() { CreateHostProject(); Directory.SetCurrentDirectory("wip"); await Startup.CreateWebHost("web", new[] { "/clean" }); }
public async Task Run_plus_validation_contacts() { CreateHostProject(); Directory.SetCurrentDirectory("wip"); await Startup.CreateWebHost("web", new[] { "+validation-contacts" }); }
public async Task Run_apply_init_authsqlserver_sqlite_default_project_rename() { DeleteCreateAndSetDirectory("wip\\test-sqlite"); await Startup.CreateWebHost("web", new[] { "+init+bootstrap-sharp+auth-sqlserver+sqlite" }); }
public async Task Run_plus_auth_memory_plus_validation_contacts_with_project() { CreateHostProject(); Directory.SetCurrentDirectory("wip"); await Startup.CreateWebHost("web", new[] { "+auth-memory+validation-contacts", "TheProject" }); }
public async Task WebMix_help() { await Startup.CreateWebHost("web mix", new[] { "mix" }); }
public async Task Run_from_scratch_lts_bootstrap_validation_contacts_with_project() { Directory.CreateDirectory("wip\\FromScratch"); Directory.SetCurrentDirectory("wip\\FromScratch"); await Startup.CreateWebHost("web", new[] { "+init-lts+bootstrap-sharp+validation-contacts", "TheProject" }); }
public async Task Mix_search_project_db() { await Startup.Mix("mix", new [] { "#project,db" }); }
public async Task Run_web_run() { await Startup.CreateWebHost("web", new[] { "run" }); }