3
Compiling for .NET 2.0
UnknownShadow200 edited this page 2023-06-15 18:46:17 +10:00

Although MCGalaxy is compiled for .NET 4.0 normally, it can also be compiled for .NET 2.0

(This is usually not useful, except for old operating systems such as Windows 98)

Visual Studio

TODO

SharpDevelop

TODO

Mono

  1. In MCGalaxy/MCGalaxy_.csproj, CLI/MCGalaxyCLI.csproj and GUI/MCGalaxyGUI.csproj:

    Change TargetFrameworkVersion from 4.0 to 2.0

  2. In MCGalaxy/MCGalaxy_.csproj:

    Underneath <Reference Include="System.Drawing" />, add <Reference Include="System.Core" />

  3. In MCGalaxy/MCGalaxy_.csproj:

    Change DefineConstants from DEBUG;TRACE to DEBUG;TRACE;NET_20