Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH957 GH1010: Enhance docs for DotNetCore and GitReleaseManager aliases. #1056

Merged
merged 2 commits into from
Jul 14, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions src/Cake.Common/Tools/DotNetCore/DotNetCoreAliases.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,10 @@ public static void DotNetCoreRestore(this ICakeContext context, string root)
/// {
/// Sources = new[] {"https://www.example.com/nugetfeed", "https://www.example.com/nugetfeed2"},
/// FallbackSources = new[] {"https://www.example.com/fallbacknugetfeed"},
/// Packages = "./packages",
/// PackagesDirectory = "./packages",
/// Verbosity = Information,
/// DisableParallel = true,
/// Runtimes = new[] {"runtime1", "runtime2"}
/// InferRuntimes = new[] {"runtime1", "runtime2"}
/// };
///
/// DotNetCoreRestore(settings);
Expand All @@ -179,10 +179,10 @@ public static void DotNetCoreRestore(this ICakeContext context, DotNetCoreRestor
/// {
/// Sources = new[] {"https://www.example.com/nugetfeed", "https://www.example.com/nugetfeed2"},
/// FallbackSources = new[] {"https://www.example.com/fallbacknugetfeed"},
/// Packages = "./packages",
/// PackagesDirectory = "./packages",
/// Verbosity = Information,
/// DisableParallel = true,
/// Runtimes = new[] {"runtime1", "runtime2"}
/// InferRuntimes = new[] {"runtime1", "runtime2"}
/// };
///
/// DotNetCoreRestore("./src/*", settings);
Expand Down Expand Up @@ -235,7 +235,7 @@ public static void DotNetCoreBuild(this ICakeContext context, string project)
/// <code>
/// var settings = new DotNetCoreBuildSettings
/// {
/// Frameworks = new[] { "net451", "dnxcore50" },
/// Framework = "netcoreapp1.0",
/// Configuration = "Debug",
/// OutputDirectory = "./artifacts/"
/// };
Expand Down Expand Up @@ -290,8 +290,7 @@ public static void DotNetCorePack(this ICakeContext context, string project)
/// <code>
/// var settings = new DotNetCorePackSettings
/// {
/// Frameworks = new[] { "dnx451", "dnxcore50" },
/// Configurations = new[] { "Debug", "Release" },
/// Configuration = "Release",
/// OutputDirectory = "./artifacts/"
/// };
///
Expand Down Expand Up @@ -382,7 +381,7 @@ public static void DotNetCoreRun(this ICakeContext context, string project, Proc
/// <code>
/// var settings = new DotNetCoreRunSettings
/// {
/// Framework = "dnxcore50",
/// Framework = "netcoreapp1.0",
/// Configuration = "Release"
/// };
///
Expand Down Expand Up @@ -436,7 +435,7 @@ public static void DotNetCorePublish(this ICakeContext context, string project)
/// <code>
/// var settings = new DotNetCorePublishSettings
/// {
/// Framework = "dnxcore50",
/// Framework = "netcoreapp1.0",
/// Configuration = "Release",
/// OutputDirectory = "./artifacts/"
/// };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public GitReleaseManagerMilestoneCloser(
}

/// <summary>
/// Creates a Release using the specified and settings.
/// Creates a Release using the specified settings.
/// </summary>
/// <param name="userName">The user name.</param>
/// <param name="password">The password.</param>
Expand Down