Build issues

This commit is contained in:
Piotr Puszkiewicz 2017-03-09 16:17:15 -08:00
parent 1c25a17e03
commit cb19d357d6
2 changed files with 3 additions and 4 deletions

View file

@ -3,7 +3,7 @@
using System.Linq;
using Microsoft.DotNet.Cli.CommandLine;
using Microsoft.DotNet.Tools.Cache;
using LocalizableStrings = Microsoft.DotNet.Tools.Cache.LocalizableStrings;
namespace Microsoft.DotNet.Cli
{

View file

@ -9,6 +9,7 @@ using Microsoft.DotNet.Cli;
using System.Diagnostics;
using System;
using System.IO;
using Parser = Microsoft.DotNet.Cli.Parser;
namespace Microsoft.DotNet.Tools.Cache
{
@ -39,9 +40,7 @@ namespace Microsoft.DotNet.Tools.Cache
{
throw new InvalidOperationException(LocalizableStrings.SpecifyEntries);
}
var msbuildArgs = msbuildArgs = new List<string>();
msbuildArgs.Add("/t:ComposeCache");
msbuildArgs.AddRange(appliedBuildOptions.OptionValuesToBeForwarded());