Mdl.HostedConsoleApplication 1.0.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Mdl.HostedConsoleApplication --version 1.0.1
NuGet\Install-Package Mdl.HostedConsoleApplication -Version 1.0.1
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="Mdl.HostedConsoleApplication" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Mdl.HostedConsoleApplication --version 1.0.1
#r "nuget: Mdl.HostedConsoleApplication, 1.0.1"
#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 Mdl.HostedConsoleApplication as a Cake Addin
#addin nuget:?package=Mdl.HostedConsoleApplication&version=1.0.1

// Install Mdl.HostedConsoleApplication as a Cake Tool
#tool nuget:?package=Mdl.HostedConsoleApplication&version=1.0.1

HostedConsoleApplication

This is a simple extension method to build console applications the same way we build web apps.

How to use

Bellow there is a basic example. More samples can be found under the dedicated folder.

using Mdl.HostedConsoleApplication;

namespace Examples
{
    public class Program
    {
        public static async Task Main(string[] args)
        {
            var builder = new HostBuilder();
            // configurations goes here

            await builder.RunConsoleApplicationAsync<Application>();
        }
    }
    
    public class Application : IHostedConsoleApplication
    {
        public async Task RunAsync(CancellationToken cancellationToken)
        {
            // inject your dependecies and code your best console app :) 
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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. 
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.1 346 6/11/2021