ZStack.AspNetCore.Hangfire.Schedule.Dashboard 1.0.0

dotnet add package ZStack.AspNetCore.Hangfire.Schedule.Dashboard --version 1.0.0                
NuGet\Install-Package ZStack.AspNetCore.Hangfire.Schedule.Dashboard -Version 1.0.0                
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="ZStack.AspNetCore.Hangfire.Schedule.Dashboard" Version="1.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ZStack.AspNetCore.Hangfire.Schedule.Dashboard --version 1.0.0                
#r "nuget: ZStack.AspNetCore.Hangfire.Schedule.Dashboard, 1.0.0"                
#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 ZStack.AspNetCore.Hangfire.Schedule.Dashboard as a Cake Addin
#addin nuget:?package=ZStack.AspNetCore.Hangfire.Schedule.Dashboard&version=1.0.0

// Install ZStack.AspNetCore.Hangfire.Schedule.Dashboard as a Cake Tool
#tool nuget:?package=ZStack.AspNetCore.Hangfire.Schedule.Dashboard&version=1.0.0                

ZStack快速开发框架

开始使用

使用脚手架创建项目

手动创建项目

控制台程序
  1. 添加NuGet程序包 ZStack.Extensions

  2. Program.cs

global using Microsoft.Extensions.DependencyInjection;
global using Serilog;
global using ZStack.Core;

var sp = DependencyInjection.CreateConsoleAppServiceProvider(configure => { });

var logger = sp.GetRequiredService<ILogger>()
    .ForContext<Program>();

logger.Information("Hello, World!");
ASP .NET Core
  1. 添加NuGet程序包 ZStack.AspNetCore

  2. GlobalUsings.cs

global using Furion;
global using ZStack.AspNetCore;
global using App = ZStack.AspNetCore.App;
  1. Program.cs
var builder = WebApplication.CreateBuilder(args).InjectZStack();

var app = builder.Build();

app.Run();
  1. Startup.cs
/// <summary>
/// 应用启动配置
/// </summary>
public class Startup : AppStartup
{
    /// <summary>
    /// 服务配置
    /// </summary>
    /// <param name="services"></param>
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddControllersWithViews().AddInject();
    }

    /// <summary>
    /// 中间件配置
    /// </summary>
    /// <param name="app"></param>
    /// <param name="env"></param>
    public void Configure(IApplicationBuilder app, IHostEnvironment env)
    {
        ...
        app.UseRouting();
        ...

        app.UseZStackInject();
    }
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
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.0 174 11/21/2023