Skip to content

Commit

Permalink
Fix upercase System.XML reference to enable mono builds
Browse files Browse the repository at this point in the history
For some reason, the JsonFx.csproj uses a reference to System.XML
instead of System.Xml. The uppercase .XML is not understood by mono's
xbuild implementation and will result in a build failure. This fix
changes that and now build succeeds using latest mono and xbuild tool.
  • Loading branch information
Dynalon committed Sep 3, 2012
1 parent 05b5812 commit d593863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JsonFx/JsonFx.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.XML" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFrameworkVersion)' != 'v2.0' And '$(TargetFrameworkVersion)' != 'v3.0' ">
<Reference Include="System.Core" />
Expand Down

0 comments on commit d593863

Please sign in to comment.