diff --git a/Paket.sln b/Paket.sln index a494ed78af..662523c521 100644 --- a/Paket.sln +++ b/Paket.sln @@ -33,6 +33,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "content", "content", "{8E6D docs\content\dependencies-file.md = docs\content\dependencies-file.md docs\content\editor-support.md = docs\content\editor-support.md docs\content\faq.md = docs\content\faq.md + docs\content\commands\generate-include-scripts.md = docs\content\commands\generate-include-scripts.md docs\content\getting-started.md = docs\content\getting-started.md docs\content\git-dependencies.md = docs\content\git-dependencies.md docs\content\github-dependencies.md = docs\content\github-dependencies.md diff --git a/docs/content/commands/generate-include-scripts.md b/docs/content/commands/generate-include-scripts.md index 5895440535..395f73395a 100644 --- a/docs/content/commands/generate-include-scripts.md +++ b/docs/content/commands/generate-include-scripts.md @@ -1,9 +1,5 @@ ## Generating include scripts for all NuGet packages - -
This feature is only available in Paket 3.0 prereleases.
- - It is possible to generate include scripts for all registered NuGet packages defined in the [`paket.dependencies` file](dependencies-file.html). [lang=batchfile] diff --git a/docs/content/paket-push.md b/docs/content/paket-push.md index f668aa5722..6fccb2fdb9 100644 --- a/docs/content/paket-push.md +++ b/docs/content/paket-push.md @@ -5,7 +5,7 @@ Pushes the given `.nupkg` file. [lang=msh] paket push [--help] url file [apikey ] [endpoint ] -### Options:USAGE: paket push [--help] url file [apikey ] [endpoint ] +USAGE: paket push [--help] url file [apikey ] [endpoint ] OPTIONS: @@ -17,7 +17,6 @@ OPTIONS: --log-file Specify a log file for the paket process. --silent, -s Suppress console output for the paket process. --help display this list of options. - If you add the `-v` flag, then Paket will run in verbose mode and show detailed information. With `--log-file [FileName]` you can trace the logged information into a file. diff --git a/src/Paket/Commands.fs b/src/Paket/Commands.fs index a9bbbb60fd..dea249c2e4 100644 --- a/src/Paket/Commands.fs +++ b/src/Paket/Commands.fs @@ -306,8 +306,8 @@ with interface IArgParserTemplate with member this.Usage = match this with - | Framework _ -> "Framework identifier to generate scripts for, such as net4 or netcore. Can be provided multiple times." - | ScriptType _ -> "Language to generate scripts for, must be one of 'fsx' or 'csx'. Can be provided multiple times." + | Framework _ -> "Framework identifier to generate scripts for, such as net4 or netcore." + | ScriptType _ -> "Language to generate scripts for, must be one of 'fsx' or 'csx'." [] type Command = @@ -359,7 +359,7 @@ with | ShowGroups _ -> "Shows all groups." | Pack _ -> "Packs all paket.template files within this repository." | Push _ -> "Pushes the given `.nupkg` file." - | GenerateIncludeScripts _ -> "Generate include scripts for installed packages." + | GenerateIncludeScripts _ -> "Allows to generate C# and F# include scripts which references installed packages in a interactive environment like F# Interactive oder ScriptCS." | Log_File _ -> "Specify a log file for the paket process." | Silent -> "Suppress console output for the paket process." | Verbose -> "Enable verbose console output for the paket process." @@ -408,8 +408,7 @@ let markdown (subParser : ArgumentParser) (additionalText : string) = .AppendLine(syntax) .AppendLine() .Append(afterCommandText) - .Append("### Options:") - .AppendLine(options) + .Append(options) .Append(afterOptionsText) .ToString() |> replaceLinks