diff --git a/build/Compile.targets b/build/Compile.targets index d48bc1ff6..a016835f7 100644 --- a/build/Compile.targets +++ b/build/Compile.targets @@ -11,6 +11,7 @@ diff --git a/build/DependencyVersions.props b/build/DependencyVersions.props index ee631dd4f..6b9a25fe7 100644 --- a/build/DependencyVersions.props +++ b/build/DependencyVersions.props @@ -1,7 +1,7 @@ - 2.0.0-beta-001697-00 + 2.0.0-beta-001728-00 15.2.0-preview-000047-02 2.0.0-rc4-61325-08 1.1.0-alpha-20170306-2 diff --git a/build_projects/dotnet-cli-build/DotNetMSBuildTool.cs b/build_projects/dotnet-cli-build/DotNetMSBuildTool.cs index d70103a46..18cca3ab3 100644 --- a/build_projects/dotnet-cli-build/DotNetMSBuildTool.cs +++ b/build_projects/dotnet-cli-build/DotNetMSBuildTool.cs @@ -9,14 +9,16 @@ namespace Microsoft.DotNet.Cli.Build { public abstract class DotNetMSBuildTool : DotNetTool { - public int MaxCpuCount {get; set;} = 0; + public int MaxCpuCount { get; set; } = 0; - protected override string Args - { + public string Verbosity { get; set; } + + protected override string Args + { get { - return $"{GetMaxCpuCountArg()}"; - } + return $"{GetVerbosityArg()} {GetMaxCpuCountArg()}"; + } } private string GetMaxCpuCountArg() @@ -28,5 +30,15 @@ namespace Microsoft.DotNet.Cli.Build return null; } + + private string GetVerbosityArg() + { + if (!string.IsNullOrEmpty(Verbosity)) + { + return $"--verbosity:{Verbosity}"; + } + + return null; + } } } diff --git a/src/Microsoft.DotNet.ProjectJsonMigration/Microsoft.DotNet.ProjectJsonMigration.csproj b/src/Microsoft.DotNet.ProjectJsonMigration/Microsoft.DotNet.ProjectJsonMigration.csproj index 3c0c013f2..91aad23fc 100644 --- a/src/Microsoft.DotNet.ProjectJsonMigration/Microsoft.DotNet.ProjectJsonMigration.csproj +++ b/src/Microsoft.DotNet.ProjectJsonMigration/Microsoft.DotNet.ProjectJsonMigration.csproj @@ -24,6 +24,6 @@ - + \ No newline at end of file