shellpower.iisconfig 1.0.8

There is a newer version of this package available.
See the version list below for details.
dotnet add package shellpower.iisconfig --version 1.0.8
NuGet\Install-Package shellpower.iisconfig -Version 1.0.8
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.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add shellpower.iisconfig --version 1.0.8
#r "nuget: shellpower.iisconfig, 1.0.8"
#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 shellpower.iisconfig as a Cake Addin
#addin nuget:?package=shellpower.iisconfig&version=1.0.8

// Install shellpower.iisconfig as a Cake Tool
#tool nuget:?package=shellpower.iisconfig&version=1.0.8

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,604 12/3/2019
1.0.9 1,571 8/9/2019
1.0.8 503 8/9/2019
1.0.7 572 8/2/2019
1.0.6-rc1 463 7/3/2019
1.0.5-rc3 395 7/3/2019
1.0.5-rc2 838 5/1/2019
1.0.5-rc1 1,696 1/21/2019
1.0.4-alpha 510 1/21/2019
1.0.3-alpha 550 11/19/2018
1.0.2-alpha 564 11/19/2018
1.0.1-alpha 527 11/18/2018
1.0.0-alpha 524 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.