diff --git a/README.md b/README.md index 20b58cb..42b3527 100644 --- a/README.md +++ b/README.md @@ -15,3 +15,33 @@ Watch a video demonstration of P. F. Harrison's algorithm on YouTube: [https://w

+ +

Building

+ +1. Download this repository and extract it in a folder named "SynTex-master" (the instructions below depends on that name). +2. Download and install `Microsoft .NET Framework`, once you have it installed, check if `dotnet` command can be called from a terminal (console) before continuing. + +3. From the command line, access the extracted project folder, create the project file and require System.Drawing like this: + +````batch +cd SynTex-master +dotnet new console +dotnet add package System.Drawing.Common --version 4.5.0-preview1-25718-03 +del Program.cs +```` +Note: Removing Program.cs is necessary to avoid multiple entry-points, which would return an error on build. + +4. Open SynTex-Master.csproj file and disable the generation of assembly configuration inside the directive: + +````batch + + false + +```` + +Note: The `PropertyGroup` Directive is inside the Directive + +5. Build and run the project with the `dotnet` command line tool: +````batch +dotnet run +````