ZKWeb web framework 3.0 officially released

3.0 updated contents

  • Update .NET Framework
    • Replacement project template netcoreapp2.2 to netcoreapp3.0
    • Currently supported .NET framework: net461, netcoreapp2.0, netcoreapp3.0
    • Note: efcore 3.0 only supports netcoreapp3.0, if you use net461 zkweb efcore 2.2 will be used in place
      if there are no special requirements are recommended nhibernate, because it is more stable and better compatibility for older versions
    • Note: If you update an existing ZKWeb (Asp.NET Core) project to netcoreapp3.0,
      please replace in Program.cs .UseKestrel()to.UseKestrel(options => options.AllowSynchronousIO = true)
  • Support hot plug loads (Hot Reload), requires .NET Core 3.0 above
    • Note: open plug-in thermal load will lead to lazy loading capabilities efcore unavailable (refer efcore warehouse # 18272)
      you can set App_Data / config.json of "Extra" "ZKWeb.DisableAutomaticPluginReloading" close to true plug-heat load.
    • ZKWeb heat load plugin does not support .NET Framework, because Microsoft has abandoned this framework
  • Updated dependent components
    • Microsoft.Extensions.DependencyInjection.Abstractions 3.0.0
    • Newtonsoft.Json 12.0.2
    • System.Drawing.Common 4.6.0
    • Microsoft.CodeAnalysis.CSharp 3.3.1
    • Microsoft.CSharp 4.6.0
    • Microsoft.Extensions.DependencyModel 3.0.0
    • Microsoft.Owin 4.0.1
    • Dapper 2.0.30
    • Dommel 1.11.0
    • Dapper.FluentMap 1.8.0
    • Dapper.FluentMap.Dommel 1.7.0
    • Microsoft.Data.Sqlite 3.0.0
    • Npgsql 4.1.0
    • MySqlConnector 0.59.1
    • Microsoft.EntityFrameworkCore 3.0.0
    • Microsoft.EntityFrameworkCore.Design 3.0.0
    • Microsoft.EntityFrameworkCore.InMemory 3.0.0
    • Microsoft.EntityFrameworkCore.Sqlite 3.0.0
    • Microsoft.EntityFrameworkCore.SqlServer 3.0.0
    • Microsoft.EntityFrameworkCore.Proxies 3.0.0
    • Npgsql.EntityFrameworkCore.PostgreSQL 3.0.0
    • Pomelo.EntityFrameworkCore.MySql 2.2.0
    • MongoDB.Driver 2.9.2
    • NHibernate 5.2.6
    • MySql.Data 6.10.9
    • System.Data.SQLite 1.0.111

Project Address:
https://github.com/zkweb-framework/ZKWeb

Guess you like

Origin www.cnblogs.com/zkweb/p/11730278.html