IMiddleWare.StartUp 1.0.1.6

There is a newer version of this package available.
See the version list below for details.
dotnet add package IMiddleWare.StartUp --version 1.0.1.6                
NuGet\Install-Package IMiddleWare.StartUp -Version 1.0.1.6                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="IMiddleWare.StartUp" Version="1.0.1.6" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add IMiddleWare.StartUp --version 1.0.1.6                
#r "nuget: IMiddleWare.StartUp, 1.0.1.6"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install IMiddleWare.StartUp as a Cake Addin
#addin nuget:?package=IMiddleWare.StartUp&version=1.0.1.6

// Install IMiddleWare.StartUp as a Cake Tool
#tool nuget:?package=IMiddleWare.StartUp&version=1.0.1.6                

Package Description

Product 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 netcoreapp2.2 is compatible.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.6 1,168 10/14/2021
1.0.5.9 1,061 9/17/2021
1.0.5.8 1,096 1/18/2021
1.0.5.7 1,035 1/18/2021
1.0.5.6 1,174 12/22/2020
1.0.5.5 1,141 12/22/2020
1.0.5.4 1,094 12/22/2020
1.0.5.3 1,147 11/24/2020
1.0.5.2 1,121 11/24/2020
1.0.5.1 1,091 11/24/2020
1.0.5 1,266 11/9/2020
1.0.4.9 1,291 4/30/2020
1.0.4.8 1,256 4/29/2020
1.0.4.7 1,231 4/27/2020
1.0.4.6 1,207 4/15/2020
1.0.4.5 644 1/13/2020
1.0.4.4 553 12/25/2019
1.0.4.3 586 12/23/2019
1.0.4.2 604 12/20/2019
1.0.4.1 585 12/19/2019
1.0.3.9 586 12/19/2019
1.0.3.8 555 12/19/2019
1.0.3.7 538 12/19/2019
1.0.3.6 607 12/19/2019
1.0.3.4 599 12/19/2019
1.0.3.3 568 12/19/2019
1.0.3.2 558 12/19/2019
1.0.3.1 575 12/18/2019
1.0.2.9 574 12/18/2019
1.0.2.8 582 12/18/2019
1.0.2.7 552 12/13/2019
1.0.1.9 1,179 9/5/2019
1.0.1.6 1,240 7/16/2019
1.0.0.9 1,274 7/1/2019

#新增下发类,实现调试模式
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);
       }
   }
}