Composite.PackageInstaller 0.1.7.1

dotnet add package Composite.PackageInstaller --version 0.1.7.1
                    
NuGet\Install-Package Composite.PackageInstaller -Version 0.1.7.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="Composite.PackageInstaller" Version="0.1.7.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Composite.PackageInstaller" Version="0.1.7.1" />
                    
Directory.Packages.props
<PackageReference Include="Composite.PackageInstaller" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Composite.PackageInstaller --version 0.1.7.1
                    
#r "nuget: Composite.PackageInstaller, 0.1.7.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.
#addin nuget:?package=Composite.PackageInstaller&version=0.1.7.1
                    
Install Composite.PackageInstaller as a Cake Addin
#tool nuget:?package=Composite.PackageInstaller&version=0.1.7.1
                    
Install Composite.PackageInstaller as a Cake Tool

Compatibility

PackageInstaller's environment does not have all features as full IIS. For compatibility with running the package on this environment, we recommend disabling running custom code in StartupHandler in this case.

public static class StartupHandler
{
    public static void OnBeforeInitialize()
    {
        if (!HostingEnvironment.IsHosted) return;

        // code
    }

    public static void OnInitialized()
    {
        if (!HostingEnvironment.IsHosted) return;

        // code
    }

    public static void ConfigureServices(IServiceCollection collection)
    {
        if (!HostingEnvironment.IsHosted) return;

        // code
    }
}

Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

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
0.1.7.1 10,464 10/6/2020
0.1.6 7,368 6/15/2020
0.1.4 668 4/21/2020
0.1.3 537 4/16/2020