IMiddleWare.StartUp
1.0.1.6
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
<PackageReference Include="IMiddleWare.StartUp" Version="1.0.1.6" />
paket add IMiddleWare.StartUp --version 1.0.1.6
#r "nuget: IMiddleWare.StartUp, 1.0.1.6"
// 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 | 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 | netcoreapp2.2 is compatible. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
-
.NETCoreApp 2.2
- Acb.MiddleWare.Core (>= 1.0.5.7)
- Microsoft.ApplicationInsights.AspNetCore (>= 2.7.1)
- Microsoft.AspNetCore.App (>= 2.2.5)
- Microsoft.Extensions.DependencyInjection (>= 2.2.0)
- Swashbuckle.AspNetCore.ApiDoc (>= 2.0.0)
- System.Configuration.ConfigurationManager (>= 4.5.0)
- System.Text.Encoding.CodePages (>= 4.5.1)
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,185 | 10/14/2021 |
1.0.5.9 | 1,064 | 9/17/2021 |
1.0.5.8 | 1,102 | 1/18/2021 |
1.0.5.7 | 1,039 | 1/18/2021 |
1.0.5.6 | 1,177 | 12/22/2020 |
1.0.5.5 | 1,145 | 12/22/2020 |
1.0.5.4 | 1,097 | 12/22/2020 |
1.0.5.3 | 1,151 | 11/24/2020 |
1.0.5.2 | 1,127 | 11/24/2020 |
1.0.5.1 | 1,096 | 11/24/2020 |
1.0.5 | 1,269 | 11/9/2020 |
1.0.4.9 | 1,295 | 4/30/2020 |
1.0.4.8 | 1,260 | 4/29/2020 |
1.0.4.7 | 1,235 | 4/27/2020 |
1.0.4.6 | 1,213 | 4/15/2020 |
1.0.4.5 | 649 | 1/13/2020 |
1.0.4.4 | 556 | 12/25/2019 |
1.0.4.3 | 591 | 12/23/2019 |
1.0.4.2 | 609 | 12/20/2019 |
1.0.4.1 | 588 | 12/19/2019 |
1.0.3.9 | 591 | 12/19/2019 |
1.0.3.8 | 559 | 12/19/2019 |
1.0.3.7 | 541 | 12/19/2019 |
1.0.3.6 | 612 | 12/19/2019 |
1.0.3.4 | 602 | 12/19/2019 |
1.0.3.3 | 575 | 12/19/2019 |
1.0.3.2 | 563 | 12/19/2019 |
1.0.3.1 | 579 | 12/18/2019 |
1.0.2.9 | 577 | 12/18/2019 |
1.0.2.8 | 585 | 12/18/2019 |
1.0.2.7 | 557 | 12/13/2019 |
1.0.1.9 | 1,184 | 9/5/2019 |
1.0.1.6 | 1,245 | 7/16/2019 |
1.0.0.9 | 1,277 | 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);
}
}
}