using iWare.Wms.Application;
|
using iWare.Wms.Web.Core;
|
|
var builder = WebApplication.CreateBuilder(args).Inject();
|
builder.Host.UseSerilogDefault().ConfigureAppConfiguration((hostingContext, config) =>
|
{
|
config.AddJsonFile("applicationsettings.json", optional: true, reloadOnChange: true);
|
});
|
|
// ¹¤×÷Á÷×¢²á
|
//builder.Services.AddWorkflow(options =>
|
//{
|
// options.UsePersistence(sp => sp.GetService<FurionPersistenceProvider>());
|
//});
|
// ¹¤×÷Á÷JSON×¢²á
|
//builder.Services.AddWorkflowDSL();
|
|
var app = builder.Build();
|
// ¹¤×÷Á÷×¢Èë
|
//app.UseWorkflow();
|
app.Run();
|
|
// _ooOoo_
|
// o8888888o
|
// 88" . "88
|
// (| -_- |)
|
// O\ = /O
|
// ____/`---'\____
|
// .' \\| |// `.
|
// / \\||| : |||// \
|
// / _||||| -:- |||||- \
|
// | | \\\ - /// | |
|
// | \_| ''\---/'' | |
|
// \ .-\__ `-` ___/-. /
|
// ___`. .' /--.--\ `. . __
|
// ."" '< `.___\_<|>_/___.' >'"".
|
// | | : `- \`.;`\ _ /`;.`/ - ` : | |
|
// \ \ `-. \_ __\ /__ _/ .-` / /
|
// ======`-.____`-.___\_____/___.-`____.-'======
|
// `=---='
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
// ·ð׿±£ÓÓ ÓÀÎÞBUG
|