-
Notifications
You must be signed in to change notification settings - Fork 83
Compiling for .NET 2.0
UnknownShadow200 edited this page Jun 15, 2023
·
3 revisions
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)
TODO
TODO
-
In
MCGalaxy/MCGalaxy_.csproj
,CLI/MCGalaxyCLI.csproj
andGUI/MCGalaxyGUI.csproj
:Change
TargetFrameworkVersion
from4.0
to2.0
-
In
MCGalaxy/MCGalaxy_.csproj
:Underneath
<Reference Include="System.Drawing" />
, add<Reference Include="System.Core" />
-
In
MCGalaxy/MCGalaxy_.csproj
:Change
DefineConstants
fromDEBUG;TRACE
toDEBUG;TRACE;NET_20