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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-08-12[Build] Add ReportAnalyzer property to output code analyzer impact on buildtherzok
2019-08-09Revert "Use minimal verbosity for msbuild builds"therzok
This reverts commit 2842fa9ae48db9afc5c5f0a934d03bc8a77a81b3.
2019-05-20Use minimal verbosity for msbuild buildstherzok
2019-01-16Remove redundant build infrastructureMikayla Hutchinson
The old autotools build infrastructure is largely redundant, as projects are now built with msbuild. Remove as much as can be done easily, along with some other obsolete stuff.
2018-04-24[Build] Paket is already restored by the makefile, avoid doing it multiple timestherzok
2018-02-16Make dist2 (#3879)Marius Ungureanu
* Fix `make dist` (cherry picked from commit 7732445e89434e17ff1e0217a640d841b29d5fc9) * Don't strip assemblies from tarballs. It'll make distro packagers cry, but the tarballs will actually work. (cherry picked from commit b1820981f8acced4d4b721ce44ed5860ce8fb758) * Include case-sensitivity fix from NRefactory * Ensure BuildVariables.cs is up to date and in `make dist` tarballs
2017-10-06Publish a .binlog file from the main MonoDevelop build. (#3155)Kirill Osenkov
2017-01-14[build] Build using msbuildMikayla Hutchinson
2016-11-21[build] Allow XBUILD_VERBOSITY to be overriddenAlan McGovern
2016-01-06Add *.props and AspNet template files to tarballAlexander Köplinger
2015-09-19[Build] Add release switch to configure.Marius Ungureanu
2015-09-02fix weird exclusions in "make dist"Jo Shields
2014-07-18Default to DebugGnome configuration on GnomeMichael Hutchinson
2013-11-19[build] Normal verbosity by defaultAlan McGovern
2012-11-08Revert "Diagnostic output ftw"Jérémie Laval
This reverts commit c11d3021cbf7c09cd19a5bff217d5d8ce3db625e.
2012-11-07Diagnostic output ftwAlan McGovern
2012-08-16[build] Print out the exact commandline used to invoke xbuildAlan McGovern
It's nice information to have.
2012-07-03[Build] the XBUILD_VERBOSITY env var is now passed to xbuild when compilingAlan McGovern
Now you can trivially change the verbosity. Hurrah!
2012-06-27[Build] Change the build system to use xbuild instead of makefiles (again)Alan McGovern
The build 'regression' was a problem in some makefiles. It was fixed in aea26c16d94490c95f4e61329c137b82a4abfe77
2012-06-26Revert "[Build] Change the build system to use xbuild instead of makefiles"""Alan McGovern
Back it out for now. There are some reported build issues.
2012-06-26[Build] Change the build system to use xbuild instead of makefiles""Alan McGovern
2012-04-02Revert "[Build] Change the build system to use xbuild instead of makefiles"Alan McGovern
This reverts commit 6535b911aa4b81c8fab4b22a6822fa9778f723cf.
2012-04-02[Build] Change the build system to use xbuild instead of makefilesAlan McGovern
The actual compilation process now happens with xbuild. The root makefile just issues an "xbuild Main.sln" call. If you type 'make' in a subdirectory you will issue an 'xbuild foo.csproj' for that dir and every subdir. This is slightly slower than building Main.sln directly if many subdirs are being built. 'make dist' is now implemented with a call to 'git archive' which means our tarball really does contain everything we need to build monodevelop (yay!). Makefile integration is now disabled (it's unnecessary). We now put test assemblies in build/test too to avoid polluting build/bin and build/Addins