From 4a8501eec1f9009b83ced6e1b430b60caf1de0bd Mon Sep 17 00:00:00 2001 From: jtkech Date: Mon, 30 May 2016 05:57:17 +0200 Subject: [PATCH] Update IncrementalManager.cs --- src/dotnet/commands/dotnet-build/IncrementalManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dotnet/commands/dotnet-build/IncrementalManager.cs b/src/dotnet/commands/dotnet-build/IncrementalManager.cs index 251147752..a3a8d8eaa 100644 --- a/src/dotnet/commands/dotnet-build/IncrementalManager.cs +++ b/src/dotnet/commands/dotnet-build/IncrementalManager.cs @@ -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()