From e908b9a675ec48794398ba81a3b736ca64dfe777 Mon Sep 17 00:00:00 2001 From: Dongbo Wang Date: Thu, 15 Sep 2016 21:37:18 -0700 Subject: [PATCH] update nuget package version number in FAQ.md --- docs/FAQ.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index 8a9e966c0..f139bec2a 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -46,7 +46,7 @@ Where do I get the PowerShell Core SDK package? ============================================================= The SDK NuGet package `Microsoft.PowerShell.SDK` is provided for developers to write .NET Core C# code targeting PowerShell Core. -PowerShell NuGet packages for releases starting from v6.0.0-alpha.10 will be published to the [powershell-core][] myget feed. +PowerShell NuGet packages for releases starting from v6.0.0-alpha.9 will be published to the [powershell-core][] myget feed. To use the `Microsoft.PowerShell.SDK` NuGet package, declare the `frameworks` section in your `project.json` file as follows: @@ -55,7 +55,7 @@ To use the `Microsoft.PowerShell.SDK` NuGet package, declare the `frameworks` se "netstandard1.6": { "imports": [ "dnxcore50", "portable-net45+win8" ], "dependencies": { - "Microsoft.PowerShell.SDK": "1.0.0-alpha9" + "Microsoft.PowerShell.SDK": "1.0.0-alpha10" } } }