From 411b00518ba49b5775760366d85f78ec361543e7 Mon Sep 17 00:00:00 2001 From: Petrik van der Velde Date: Thu, 2 Mar 2017 20:23:13 +1300 Subject: [PATCH] Added NuGet as alternative installation. --- website/source/docs/installation.html.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/website/source/docs/installation.html.md b/website/source/docs/installation.html.md index ac5f03a6b..77eb20933 100644 --- a/website/source/docs/installation.html.md +++ b/website/source/docs/installation.html.md @@ -86,3 +86,24 @@ party, so it may not be the latest available version. ``` {.text} $ choco install packer ``` + +### NuGet + +If you want to use Packer on Windows in an automated build, you can use +Packer from a [nuget.org](https://nuget.org) package in either the +[64-bit](https://www.nuget.org/packages/Packer.Windows.x64/) or +[32-bit](https://www.nuget.org/packages/Packer.Windows.x86/) version. Remember +that this is updated by a 3rd party, so it may not be the latest available +version. + +Install the 64-bit version + +``` {.text} +$ nuget install packer.windows.x64 +``` + +Install the 32-bit version + +``` {.text} +$ nuget install packer.windows.x86 +```