You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
C#
31 lines
1.0 KiB
C#
using NewLife.Extensions.Hosting.AgentService;
|
|
using NewLife.Log;
|
|
using WorkerSynReport;
|
|
using WorkerSynReport.Plc;
|
|
|
|
XTrace.UseConsole();
|
|
|
|
IHost host = Host.CreateDefaultBuilder(args)
|
|
.ConfigureServices(services =>
|
|
{
|
|
services.AddScoped<IDbContextLocal>(a => new DbContextLocal("Data Source=172.18.4.130;Initial Catalog=CWSSHG;user=sa;password=123456;"));
|
|
|
|
services.AddScoped<IDbContextLocal>(a => new DbContextLocal("Data Source=172.18.4.130;Initial Catalog=CWSSHG;user=sa;password=123456;"));
|
|
|
|
services.AddScoped<IDbContextHttp>(a => new DbContextHttp("Data Source=192.168.202.22;Initial Catalog=CWSSHG;user=sa;password=Lanju@123;"));
|
|
// services.AddHostedService<Worker>();
|
|
|
|
services.AddScoped<ReportReadDb>();
|
|
|
|
services.AddHostedService<PclWorker>();
|
|
})
|
|
.UseAgentService(options =>
|
|
{
|
|
options.ServiceName = "报表数据";
|
|
options.DisplayName = "Worker服务测试";
|
|
options.Description = "Worker服务的应用";
|
|
})
|
|
.Build();
|
|
|
|
await host.RunAsync();
|