Convert all CLI build targets to MSBuild Tasks. (#3690)

This commit is contained in:
Eric Erhardt 2016-06-24 13:06:13 -05:00 committed by Piotr Puszkiewicz
parent 0c9617559e
commit 15b2a9d9db
17 changed files with 687 additions and 565 deletions

View file

@ -7,7 +7,7 @@ namespace Microsoft.DotNet.Cli.Build
{
public static readonly bool Verbose = GetBool("DOTNET_BUILD_VERBOSE");
private static bool GetBool(string name, bool defaultValue = false)
public static bool GetBool(string name, bool defaultValue = false)
{
var str = Environment.GetEnvironmentVariable(name);
if (string.IsNullOrEmpty(str))