WWW-www.enlightenment.org pushed a commit to branch master. http://git.enlightenment.org/website/www-content.git/commit/?id=590538f92e797aa8a2d956bab9f9d9d392ece02f
commit 590538f92e797aa8a2d956bab9f9d9d392ece02f Author: Vitor Sousa da Silva <vitorsousasi...@gmail.com> Date: Fri Feb 2 05:40:23 2018 -0800 Wiki page csharp_tutorial changed with summary [] by Vitor Sousa da Silva --- pages/develop/legacy/tutorial/csharp_tutorial.txt | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/pages/develop/legacy/tutorial/csharp_tutorial.txt b/pages/develop/legacy/tutorial/csharp_tutorial.txt index 66a5341e5..1738692cf 100644 --- a/pages/develop/legacy/tutorial/csharp_tutorial.txt +++ b/pages/develop/legacy/tutorial/csharp_tutorial.txt @@ -1,5 +1,8 @@ +--- ~~Title: C# Tutorial~~ -===== C# Tutorial ===== +--- + +# C# Tutorial # <note important> The C# bindings are currently in BETA state. @@ -35,6 +38,11 @@ export PATH="$PATH:/c/Program Files/Mono/bin" </code> If you used another installation path to Mono just adjust the paths used. +<note warning> +It is advisable to add the Mono path at the *end* of the ''PATH'' environment variable, like in the example above. +Mono has its own version of some applications (like ''pkg-config'') which can take priority over the ones from MSYS2 and cause things to fail. +</note> + Now you can use the MSYS2 console to compile, install and run EFL and your applications. Once all conditions are met proceed to [[#Compilation]]. @@ -136,7 +144,7 @@ export LD_LIBRARY_PATH=/opt/my_install_prefix/lib == Explaining the code == -First we start with s basic class structure to define our ''Main'' entry point: +First we start with a basic class structure to define our ''Main'' entry point: <code csharp> using System; @@ -199,5 +207,4 @@ It will start the event loop and display the application main window. After the event loop is finished (when closing the last window or by calling ''efl.ui.Config.Exit()'') we shutdown the EFL components and let the application end: <code csharp> efl.All.Shutdown(); -</code> - +</code> \ No newline at end of file --