X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=README.md;h=15e32dd886d074e63d6f8bb44d2871c34083325e;hb=919824ddd436a6b13f994c77e9910045fa729d16;hp=5aad9440a06112eb34bb89a82f8bd46fb2910640;hpb=196497780f01da0d275fafa1524bc2100459ee27;p=mono.git diff --git a/README.md b/README.md index 5aad9440a06..15e32dd886d 100644 --- a/README.md +++ b/README.md @@ -15,32 +15,43 @@ The Mono project is part of the [.NET Foundation](http://www.dotnetfoundation.or 6. [Configuration Options](#configuration-options) 7. [Working with Submodules](#working-with-submodules) -**Build Status** - -Officially supported architectures: - -| debian-amd64 | debian-i386 | debian-armel | debian-armhf | windows-amd64 | -|-------------------------|------------------------|-------------------------|-------------------------|---------------------------| -| [![debian-amd64][1]][2] | [![debian-i386][3]][4] | [![debian-armel][5]][6] | [![debian-armhf][7]][8] | [![windows-amd64][9]][10] | - -Community supported architectures: - -| centos-s390x | -|---------------------------| -| [![centos-s390x][11]][12] | - -[1]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-amd64/badge/icon -[2]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-amd64/ -[3]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-i386/badge/icon -[4]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-i386/ -[5]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-armel/badge/icon -[6]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-armel/ -[7]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-armhf/badge/icon -[8]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-armhf/ -[9]: https://ci.appveyor.com/api/projects/status/1e61ebdfpbiei58v/branch/master?svg=true -[10]: https://ci.appveyor.com/project/ajlennon/mono-817/branch/master -[11]: https://jenkins.mono-project.com/job/z/label=centos-s390x/badge/icon -[12]: https://jenkins.mono-project.com/job/z/label=centos-s390x +### Build Status + +| OS | Architecture | Status | +|--------------|--------------------|------------------------------| +| Ubuntu 14.04 | amd64 | [![ubuntu-1404-amd64][1]][2] | +| Ubuntu 14.04 | i386 | [![ubuntu-1404-i386][3]][4] | +| Debian 8 | armel | [![debian-8-armel][5]][6] | +| Debian 8 | armhf | [![debian-8-armhf][7]][8] | +| Debian 8 | arm64 | [![debian-8-arm64][9]][10] | +| OS X | amd64 | [![osx-amd64][11]][12] | +| OS X | i386 | [![osx-i386][13]][14] | +| Windows | amd64 | [![windows-amd64][15]][16] | +| Windows | i386 | [![windows-amd64][17]][18] | +| CentOS | s390x (cs) | [![centos-s390x][19]][20] | + +_(cs) = community supported architecture_ + +[1]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=ubuntu-1404-amd64/badge/icon +[2]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=ubuntu-1404-amd64 +[3]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=ubuntu-1404-i386/badge/icon +[4]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=ubuntu-1404-i386/ +[5]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=debian-8-armel/badge/icon +[6]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=debian-8-armel/ +[7]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=debian-8-armhf/badge/icon +[8]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=debian-8-armhf/ +[9]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=debian-8-arm64/badge/icon +[10]: https://jenkins.mono-project.com/job/test-mono-mainline-linux/label=debian-8-arm64/ +[11]: https://jenkins.mono-project.com/job/test-mono-mainline/label=osx-amd64/badge/icon +[12]: https://jenkins.mono-project.com/job/test-mono-mainline/label=osx-amd64/ +[13]: https://jenkins.mono-project.com/job/test-mono-mainline/label=osx-i386/badge/icon +[14]: https://jenkins.mono-project.com/job/test-mono-mainline/label=osx-i386/ +[15]: https://jenkins.mono-project.com/job/z/label=w64/badge/icon +[16]: https://jenkins.mono-project.com/job/z/label=w64/ +[17]: https://jenkins.mono-project.com/job/z/label=w32/badge/icon +[18]: https://jenkins.mono-project.com/job/z/label=w32/ +[19]: https://jenkins.mono-project.com/job/z/label=centos-s390x/badge/icon +[20]: https://jenkins.mono-project.com/job/z/label=centos-s390x Compilation and Installation ============================ @@ -517,7 +528,24 @@ See the LICENSE file for licensing information, and the PATENTS.TXT file for information about Microsoft's patent grant. Mono Trademark Use Policy -======= +========================= The use of trademarks and logos for Mono can be found [here] (http://www.dotnetfoundation.org/legal/mono-tm). +Maintaining the Class Library Solution Files +============================================ + +Mono now ships with a solution file that can be used to build the +assemblies from an IDE. Either by opening the topmost `net_4_x.sln` +file, or to by loading one of the individual `csproj` files located in +each directory. + +These are maintained by extracting the configuration information from +our Makefiles, which as of May 2016 remain the canonical location for +configuration information. + +When changes are made to the Makefiles, a user would need to run the +following command to re-generate the solution files at the top level: + + $ make update-solution-files +