Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-10-03Align eglib vcxproj with makefile.lateralusX
2017-10-03Added labels to eglib and libmonoutils.lateralusX
2017-10-03Restructure of mono.sln and build properties to better fix static/dynamic ↵lateralusX
library support.
2017-08-08[runtime] Move eglib into mono/eglib so it becomes a convenience library ↵Zoltan Varga
similar to utils/ etc. (#5297)
2017-04-24Separate the eglib source and build instructionsJosh Peterson
This change extracts the eglib source files from the build instuctions for builds via MSVC on Windows. It also separates the source files into platform-specific and common .targets files. This provides more flexibility for builds from MSVC in a few important ways: 1. We can do MSVC-based builds for platforms that will not be pushed to public repos by checking out the Mono code externally and importing the .targets files into a custom .vcxproj for the platform. 2. We can replace the platform specific .targets files with a custom set of source files to implement a different platform abstraction layer that will not be public without the need to merge changes to the .vcxproj from the public repo. This allows for ease of synchronizing changes to the public Mono repo with private forks, while _not_ changing the behavior of the code in the public repo.