CDMiddleWare.StartUp
1.0.2.6
See the version list below for details.
Install-Package CDMiddleWare.StartUp -Version 1.0.2.6
dotnet add package CDMiddleWare.StartUp --version 1.0.2.6
<PackageReference Include="CDMiddleWare.StartUp" Version="1.0.2.6" />
paket add CDMiddleWare.StartUp --version 1.0.2.6
#r "nuget: CDMiddleWare.StartUp, 1.0.2.6"
// Install CDMiddleWare.StartUp as a Cake Addin
#addin nuget:?package=CDMiddleWare.StartUp&version=1.0.2.6
// Install CDMiddleWare.StartUp as a Cake Tool
#tool nuget:?package=CDMiddleWare.StartUp&version=1.0.2.6
在线文档加入开关功能,保障线上安全,开启兼容模式
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp3.1 |
-
.NETCoreApp 3.1
- CEye.MiddleWare.Core (>= 1.0.6.7)
- Microsoft.ApplicationInsights.AspNetCore (>= 2.12.0)
- Microsoft.AspNetCore.Mvc.NewtonsoftJson (>= 3.1.0)
- Swashbuckle.AspNetCore.ApiDoc (>= 3.2.2)
- System.Configuration.ConfigurationManager (>= 4.7.0)
- System.Text.Encoding.CodePages (>= 4.7.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
#新增下发类,实现调试模式
using Acb.Core.MiddleWare;
using Acb.MiddleWare.Core.Plugin;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.Text;
using System.Linq;
using Acb.MiddleWare.Core.Extions;
using DynamicWeb.MiddleWare.Aop;
namespace WXManager.MiddleWare.TestIn1
{
public class AopStartupDebug : AopStartup
{
static AopStartupDebug()
{
AopStartup.OpenDebug();
}
public AopStartupDebug(IHostingEnvironment env) : base(env)
{
}
public override void InitWebApiPlug(IServiceCollection services, IMvcBuilder plugBuilder, string pluginPath)
{
base.InitWebApiPlug(services,plugBuilder,pluginPath);
}
}
}