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,184 | 10/14/2021 |
1.0.5.9 | 1,063 | 9/17/2021 |
1.0.5.8 | 1,101 | 1/18/2021 |
1.0.5.7 | 1,038 | 1/18/2021 |
1.0.5.6 | 1,176 | 12/22/2020 |
1.0.5.5 | 1,144 | 12/22/2020 |
1.0.5.4 | 1,096 | 12/22/2020 |
1.0.5.3 | 1,150 | 11/24/2020 |
1.0.5.2 | 1,126 | 11/24/2020 |
1.0.5.1 | 1,095 | 11/24/2020 |
1.0.5 | 1,268 | 11/9/2020 |
1.0.4.9 | 1,294 | 4/30/2020 |
1.0.4.8 | 1,259 | 4/29/2020 |
1.0.4.7 | 1,234 | 4/27/2020 |
1.0.4.6 | 1,212 | 4/15/2020 |
1.0.4.5 | 648 | 1/13/2020 |
1.0.4.4 | 555 | 12/25/2019 |
1.0.4.3 | 588 | 12/23/2019 |
1.0.4.2 | 608 | 12/20/2019 |
1.0.4.1 | 587 | 12/19/2019 |
1.0.3.9 | 590 | 12/19/2019 |
1.0.3.8 | 556 | 12/19/2019 |
1.0.3.7 | 540 | 12/19/2019 |
1.0.3.6 | 611 | 12/19/2019 |
1.0.3.4 | 601 | 12/19/2019 |
1.0.3.3 | 574 | 12/19/2019 |
1.0.3.2 | 562 | 12/19/2019 |
1.0.3.1 | 578 | 12/18/2019 |
1.0.2.9 | 576 | 12/18/2019 |
1.0.2.8 | 584 | 12/18/2019 |
1.0.2.7 | 556 | 12/13/2019 |
1.0.1.9 | 1,183 | 9/5/2019 |
1.0.1.6 | 1,244 | 7/16/2019 |
1.0.0.9 | 1,276 | 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);
}
}
}