Skip to content

Commit

Permalink
Fix Xamarin bug 7594.
Browse files Browse the repository at this point in the history
@(DocFileItem) is an output of CoreCompile, not an input.  (This bug still
exists in the current sources in the mono git repository.)
  • Loading branch information
StephenMcConnel authored and jonpryor committed Feb 23, 2013
1 parent 24810d5 commit f6dfc59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mcs/tools/xbuild/xbuild/Microsoft.CSharp.targets
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@

<Target
Name="CoreCompile"
Inputs="$(MSBuildAllProjects);@(Compile);@(ManifestResourceWithNoCulture);@(ManifestNonResxWithNoCultureOnDisk);@(CompiledLicenseFile);@(DocFileItem);
Inputs="$(MSBuildAllProjects);@(Compile);@(ManifestResourceWithNoCulture);@(ManifestNonResxWithNoCultureOnDisk);@(CompiledLicenseFile);
$(KeyOriginatorFile);@(ReferencePath);$(Win32Icon);$(Win32Resource)"
Outputs="@(IntermediateAssembly)"
Outputs="@(DocFileItem);@(IntermediateAssembly)"
DependsOnTargets="$(CoreCompileDependsOn)"
>
<Csc
Expand Down

0 comments on commit f6dfc59

Please sign in to comment.