Tamp.MsDeploy 0.1.0

Prefix Reserved
dotnet add package Tamp.MsDeploy --version 0.1.0
                    
NuGet\Install-Package Tamp.MsDeploy -Version 0.1.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="Tamp.MsDeploy" Version="0.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Tamp.MsDeploy" Version="0.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Tamp.MsDeploy" />
                    
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 Tamp.MsDeploy --version 0.1.0
                    
#r "nuget: Tamp.MsDeploy, 0.1.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.
#:package Tamp.MsDeploy@0.1.0
                    
#: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=Tamp.MsDeploy&version=0.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Tamp.MsDeploy&version=0.1.0
                    
Install as a Cake Tool

Tamp.MsDeploy

Typed wrappers for Web Deploy (msdeploy.exe) — payload synchronization to IIS targets. Sync and Dump verbs with typed source/destination providers (contentPath, iisApp, package, archiveDir) and typed skip rules.

Package Status
Tamp.MsDeploy 0.1.0 (initial)

Install

dotnet add package Tamp.MsDeploy

Multi-targets net8 / net9 / net10. The wrapper assembly runs on any supported runtime — but msdeploy.exe itself is Windows-only, so build agents that invoke it must be Windows.

Scope: payload sync only

This package wraps msdeploy.exe for payload synchronization. Site lifecycle (start/stop/recycle, app-pool management, binding configuration) is a separate concern handled by Tamp.IisOnPrem. A typical end-to-end deploy composes both:

Target Deploy => _ => _
    .DependsOn(Build, Test, PublishWebDeploy)
    .Executes(() =>
    {
        IisOnPrem.PrepForDeploy("MySite");
        MsDeploy.Sync(MsDeploy, s => s
            .SetSource(MsDeployProvider.ContentPath(PublishDir))
            .SetDestination(MsDeployProvider.IisApp("MySite")));
        IisOnPrem.RestartFromDeploy("MySite");
    });

Quick start

Local copy

using Tamp;
using Tamp.MsDeploy;

class Build : TampBuild
{
    public static int Main(string[] args) => Execute<Build>(args);

    [FromPath("msdeploy")] readonly Tool MsDeploy = null!;

    Target Deploy => _ => _.Executes(() => MsDeploy.Sync(MsDeploy, s => s
        .SetSource(MsDeployProvider.ContentPath("artifacts/publish"))
        .SetDestination(MsDeployProvider.ContentPath(@"C:\inetpub\wwwroot\MySite"))));
}

Remote IIS via Web Management Service

[Parameter] readonly Secret AgentPassword = null!;

Target DeployRemote => _ => _.Executes(() => MsDeploy.Sync(MsDeploy, s => s
    .SetSource(MsDeployProvider.ContentPath("artifacts/publish"))
    .SetDestination(MsDeployProvider.IisApp("MySite")
        .WithComputerName("https://web1.example.com:8172/msdeploy.axd?site=MySite")
        .WithCredentials("deploy-bot", AgentPassword))
    .AddSkipRule(MsDeploySkipRule.FilePath(@".*\\web\.config$"))
    .AddSkipRule(MsDeploySkipRule.DirPath(@".*\\App_Data$"))
    .AddDisableLink("AppPoolExtension")
    .SetAllowUntrusted()
    .SetRetryAttempts(3)));

Verb surface (v1)

Verb Wraps Required
Sync -verb:sync Source + Destination providers
Dump -verb:dump Source provider (discovery only)

Providers — typed, not stringly

Source and destination are MsDeployProvider records. Static factories cover the providers adopters reach for in CI; an escape hatch is provided for the rest:

MsDeployProvider.ContentPath("artifacts/publish")
MsDeployProvider.IisApp("MySite")
MsDeployProvider.Package("artifacts/app.zip")
MsDeployProvider.ArchiveDir("artifacts/archive")
MsDeployProvider.Custom("dbDacFx", "artifacts/db.dacpac")  // escape hatch

Each provider can be enriched fluently:

MsDeployProvider.IisApp("MySite")
    .WithComputerName("https://web1.example.com:8172/msdeploy.axd?site=MySite")
    .WithCredentials("deploy-bot", agentPassword, MsDeployAuthType.Basic)
    .WithExtraSetting("includeAcls=false")

Passwords are always Secret — they're embedded in the rendered token (msdeploy requires inline credentials) but tracked separately on CommandPlan.Secrets so the runner can redact them from logs and plan output.

Skip rules — typed

MsDeploySkipRule.FilePath(@".*\\web\.config$")
MsDeploySkipRule.DirPath(@".*\\App_Data$")
new MsDeploySkipRule { ObjectName = "setAcl" }

No raw -skip: string passthrough at the public surface — the typed shape catches typos at compile time and renders the comma-separated payload for you.

Cross-cutting flags

Flag Setter Notes
-allowUntrusted SetAllowUntrusted() Required for self-signed agent certs on internal hosts.
-verbose SetVerbose()
-whatif SetWhatIf() Dry-run inside msdeploy itself.
-retryAttempts:N SetRetryAttempts(n)
-retryInterval:MS SetRetryIntervalMs(ms)
-disableLink:NAME AddDisableLink(name) Repeatable. Common: AppPoolExtension, ContentExtension.
-enableLink:NAME AddEnableLink(name) Repeatable.
-useCheckSum SetUseChecksum() (Sync only) Checksum diff instead of timestamp.

Settings authoring — fluent or object-init

Both styles produce identical CommandPlans. Fluent is canonical in docs / templates.

License

MIT — see LICENSE.

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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
0.1.0 93 5/22/2026