Merge pull request #1333 from dotnet/pakrym/fix-incremental
Fix incremental build
This commit is contained in:
commit
9e84d560a0
1 changed files with 1 additions and 1 deletions
|
@ -462,7 +462,7 @@ namespace Microsoft.DotNet.Tools.Build
|
||||||
AddDependencies(dependencies, compilerIO);
|
AddDependencies(dependencies, compilerIO);
|
||||||
|
|
||||||
var allOutputPath = new List<string>(calculator.CompilationFiles.All());
|
var allOutputPath = new List<string>(calculator.CompilationFiles.All());
|
||||||
if (!string.IsNullOrEmpty(project.RuntimeIdentifier))
|
if (project.ProjectFile.HasRuntimeOutput(buildConfiguration))
|
||||||
{
|
{
|
||||||
allOutputPath.AddRange(calculator.RuntimeFiles.All());
|
allOutputPath.AddRange(calculator.RuntimeFiles.All());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue