shellpower.iisconfig 1.0.10

dotnet add package shellpower.iisconfig --version 1.0.10
                    
NuGet\Install-Package shellpower.iisconfig -Version 1.0.10
                    
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="shellpower.iisconfig" Version="1.0.10" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="shellpower.iisconfig" Version="1.0.10" />
                    
Directory.Packages.props
<PackageReference Include="shellpower.iisconfig" />
                    
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 shellpower.iisconfig --version 1.0.10
                    
#r "nuget: shellpower.iisconfig, 1.0.10"
                    
#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.
#:package shellpower.iisconfig@1.0.10
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=shellpower.iisconfig&version=1.0.10
                    
Install as a Cake Addin
#tool nuget:?package=shellpower.iisconfig&version=1.0.10
                    
Install as a Cake Tool

shellpower.iisconfig

Provides powershell cmdlets for setting up and configuring web applications in IIS. This package includes the powershell cmdlets, which can be referenced by your powershell scripts for performing common iis configuration operations in a repeatable manner, ideal for continuous integration/deployment scenarios.

Usage

  • Install nuget package

    nuget install shellpower.iisconfig -outputdirectory packages
    
  • Create new file getting-started.ps1 with the following content

    
    # dot source the script
    . packages\bin\iisconfig.ps1
    
    # add a web application to an existing website
    Add-WebApplicationToWebSite -siteName "Default Web Site" `
        -webappName "api" `
        -webappPath "C:\inetpub\api"
    
  • Run .\getting-started.ps1

Refer to the tests in the source code for more examples.

There are no supported framework assets in this 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
1.0.10 1,736 12/3/2019
1.0.9 1,726 8/9/2019
1.0.8 615 8/9/2019
1.0.7 693 8/2/2019
1.0.6-rc1 585 7/3/2019
1.0.5-rc3 505 7/3/2019
1.0.5-rc2 946 5/1/2019
1.0.5-rc1 1,799 1/21/2019
1.0.4-alpha 624 1/21/2019
1.0.3-alpha 681 11/19/2018
1.0.2-alpha 697 11/19/2018
1.0.1-alpha 654 11/18/2018
1.0.0-alpha 659 11/16/2018

This package includes the powershell cmdlets, which can be referenced by your powershell scripts for performing common iis configuration operations in a repeatable manner, ideal for continuous integration/deployment scenarios.