Merge remote-tracking branch 'upstream/rel/1.0.0' into rel101

This commit is contained in:
Eric Erhardt 2017-02-25 14:30:53 -06:00
commit ab887ec024
31 changed files with 1349 additions and 323 deletions

View file

@ -18,6 +18,9 @@ namespace Microsoft.DotNet.Cli.Build
{
}
[Required]
public string SDKVersion { get; set; }
[Required]
public string ToolPath { get; set; }
@ -70,6 +73,8 @@ namespace Microsoft.DotNet.Cli.Build
Directory.Delete(targetDir, true);
}
dataToHash += SDKVersion;
Log.LogMessage($"NuGet Packages Archive Data To Hash: '{dataToHash}'");
var sha256 = SHA256.Create();