CDMiddleWare.StartUp
1.0.2.8
dotnet add package CDMiddleWare.StartUp --version 1.0.2.8
NuGet\Install-Package CDMiddleWare.StartUp -Version 1.0.2.8
<PackageReference Include="CDMiddleWare.StartUp" Version="1.0.2.8" />
paket add CDMiddleWare.StartUp --version 1.0.2.8
#r "nuget: CDMiddleWare.StartUp, 1.0.2.8"
// Install CDMiddleWare.StartUp as a Cake Addin #addin nuget:?package=CDMiddleWare.StartUp&version=1.0.2.8 // Install CDMiddleWare.StartUp as a Cake Tool #tool nuget:?package=CDMiddleWare.StartUp&version=1.0.2.8
在线文档加入开关功能,保障线上安全,开启兼容模式
集成appsesion验证
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- CEye.MiddleWare.Core (>= 1.0.6.9)
- 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);
}
}
}