assemblies\WindowsGL\ into the colorsquare\ sources directory. Note: mpack files are zip archives.Total size: < 5 MB
Or install MonoGame for Visual Studio, and copy the DLLs from Program Files\MonoGame\v3.0\Assemblies\WindowsGL\ to the sources directory.
Copy just the following DLLs into the sources directory:
Total size: < 600 KB
cd into the sources directory on the command line
      cd colorsquare
    
    
      
        C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe /r:MonoGame.Framework.dll /target:winexe /out:colorsquare.exe *.cs
      
    
    csc.exe on the %PATH% first, and then compile the C# sources:
      
        set PATH=%PATH%;C:\Windows\Microsoft.NET\Framework\v4.0.30319\
        csc /r:MonoGame.Framework.dll /target:winexe /out:colorsquare.exe *.cs
      
    
    
      colorsquare
    
    Installed size: < 270 MB
      
        "C:\Program Files\Mono-2.10.9\bin\mcs.bat" -sdk:4 -r:MonoGame.Framework.dll -target:winexe -out:colorsquare.exe *.cs
      
    
    
      "C:\Program Files\Mono-2.10.9\bin\mono" colorsquare.exe
    
    Submit a comment or correction
| 10 Feb 2019 | Update some of the links | 
| 23 Apr 2013 | Posted |