mirror of
https://github.com/ClassiCube/MCGalaxy.git
synced 2025-09-07 22:28:28 -04:00
Page:
Compiling for .NET 2.0
Pages
API breakages
API changes
BlockDB format
Bots
Brushes
Chat
Command Template
Commands
Compiling for .NET 2.0
Copy and paste
Creating levels
Custom blocks
Custom textures
Data and configuration files overview
Discord relay bot
Drawing
Home
Level format
Level permissions
Message blocks
Moderation
New release
Physics blocks
Portals
Public Custom Commands
Public Custom Plugins
Scripting
Standalone builds using mkbundle
World appearance
Clone
3
Compiling for .NET 2.0
UnknownShadow200 edited this page 2023-06-15 18:46:17 +10:00
Table of Contents
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
-
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