Updated README instructions
authorvaron <varon@users.noreply.github.com>
Sun, 17 Jul 2016 23:42:48 +0000 (01:42 +0200)
committervaron <varon@users.noreply.github.com>
Sat, 13 Aug 2016 22:18:13 +0000 (00:18 +0200)
README.md

index 4a8d87b..a309192 100644 (file)
--- a/README.md
+++ b/README.md
@@ -28,26 +28,20 @@ OpenTK is available for Windows, Linux, Mac OS X, *BSD, SteamOS, Android and iOS
 Instructions
 ============
 
-The simplest way to use OpenTK in your project is to install the [NuGet package](http://www.nuget.org/packages/OpenTK/). 
+The simplest way to use OpenTK in your project is to install the [NuGet package](http://www.nuget.org/packages/OpenTK/).
 
 Note what installing NuGet package will add reference to OpenTK.dll, but OpenTK.dll.config 
 will not be copied to the project output directory automatically, so you need to add it to your project 
 and then enable the "Copy to Output Directory" option (as in step 3 below).
 
-Alternatively, download the [OpenTK binaries](http://www.opentk.com) and:
-
-1. Copy OpenTK.dll and OpenTK.dll.config to your project directory
-2. Use "Add reference" to add OpenTK.dll as a project reference
-3. Use "Add files" to add OpenTK.dll.config to your project, and enable the "Copy to Output Directory" option.
-
 To build OpenTK from source, simply double-click OpenTK.sln and build through your IDE.
 
 Alternatively, open a command prompt and type:
 ```
 git clone https://github.com/opentk/opentk   # Download source code from git
 cd opentk                                    # Enter the source directory
-msbuild /p:Configuration=Release OpenTK.sln  # Build on .Net (Windows)
-xbuild  /p:Configuration=Release OpenTK.sln  # Build on Mono (Linux / Mac OS X)
+./build.cmd                                  # Build on .Net (Windows)
+./build.sh                                   # Build on Mono (Linux / Mac OS X)
 ```