|
@@ -4,6 +4,7 @@ using GxPress.Common.Middleware;
|
|
|
using GxPress.Common.Tools;
|
|
|
using Microsoft.AspNetCore.Builder;
|
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
+using Microsoft.AspNetCore.Http;
|
|
|
using Microsoft.AspNetCore.Http.Features;
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
using Microsoft.Extensions.Configuration;
|
|
@@ -28,6 +29,7 @@ namespace GxPress.Api
|
|
|
// For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
|
|
|
public void ConfigureServices(IServiceCollection services)
|
|
|
{
|
|
|
+ services.AddSingleton<IHttpContextAccessor,HttpContextAccessor>();
|
|
|
services.AddSingleton<ISchedulerFactory, StdSchedulerFactory>();
|
|
|
services.AddControllers().AddNewtonsoftJson(options =>
|
|
|
{
|