MiddleWare.StartUp
1.0.1.6
See the version list below for details.
dotnet add package MiddleWare.StartUp --version 1.0.1.6
NuGet\Install-Package MiddleWare.StartUp -Version 1.0.1.6
<PackageReference Include="MiddleWare.StartUp" Version="1.0.1.6" />
paket add MiddleWare.StartUp --version 1.0.1.6
#r "nuget: MiddleWare.StartUp, 1.0.1.6"
// Install MiddleWare.StartUp as a Cake Addin #addin nuget:?package=MiddleWare.StartUp&version=1.0.1.6 // Install MiddleWare.StartUp as a Cake Tool #tool nuget:?package=MiddleWare.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.4.5 | 729 | 1/13/2020 |
1.0.4.3 | 598 | 12/23/2019 |
1.0.4.2 | 589 | 12/20/2019 |
1.0.4.1 | 553 | 12/19/2019 |
1.0.3.9 | 586 | 12/19/2019 |
1.0.3.8 | 608 | 12/19/2019 |
1.0.3.7 | 625 | 12/19/2019 |
1.0.3.6 | 616 | 12/19/2019 |
1.0.3.4 | 566 | 12/19/2019 |
1.0.3.3 | 585 | 12/19/2019 |
1.0.3.2 | 614 | 12/19/2019 |
1.0.2.8 | 566 | 12/18/2019 |
1.0.2.6 | 1,282 | 11/6/2019 |
1.0.2.5 | 1,109 | 11/6/2019 |
1.0.2.2 | 1,196 | 10/10/2019 |
1.0.2.1 | 1,343 | 10/9/2019 |
1.0.1.6 | 1,248 | 7/16/2019 |
1.0.0.9 | 1,317 | 7/1/2019 |
1.0.0.8 | 1,305 | 7/1/2019 |
1.0.0.6 | 1,291 | 7/1/2019 |
1.0.0.5 | 1,288 | 7/1/2019 |
1.0.0.4 | 1,297 | 7/1/2019 |
1.0.0.3 | 1,399 | 4/12/2019 |
1.0.0.2 | 1,224 | 4/10/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);
}
}
}