Merge pull request #3287 from jtkech/patch-1

minor change to a comment in IncrementalManager.cs
This commit is contained in:
Eric Erhardt 2016-05-31 09:58:44 -05:00
commit e83b0b374a

View file

@ -201,7 +201,7 @@ namespace Microsoft.DotNet.Tools.Build
}
}
// find inputs that are older than the earliest output
// find inputs that are newer than the earliest output
var newInputs = compilerIO.Inputs.Where(p => File.GetLastWriteTimeUtc(p) >= minDateUtc);
return newInputs.Any()