diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-08-24 13:05:23 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-08-24 14:56:40 -0500 |
commit | 09551c3d2b40272b3b8a82f20e81a8bd66307e3e (patch) | |
tree | 07b7fe3e86c73e2713f97199a95ac495c72f508f /modules/mono/config.py | |
parent | d0a2a4c98195eb8a43713286b5b865dfbed05163 (diff) | |
download | redot-engine-09551c3d2b40272b3b8a82f20e81a8bd66307e3e.tar.gz |
Remove mentions of the Server platform from the Mono module
Diffstat (limited to 'modules/mono/config.py')
-rw-r--r-- | modules/mono/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/config.py b/modules/mono/config.py index d156877929..b599414a2c 100644 --- a/modules/mono/config.py +++ b/modules/mono/config.py @@ -1,6 +1,6 @@ -# Prior to .NET Core, we supported these: ["windows", "macos", "linuxbsd", "server", "android", "haiku", "javascript", "ios"] +# Prior to .NET Core, we supported these: ["windows", "macos", "linuxbsd", "android", "haiku", "javascript", "ios"] # Eventually support for each them should be added back (except Haiku if not supported by .NET Core) -supported_platforms = ["windows", "macos", "linuxbsd", "server"] +supported_platforms = ["windows", "macos", "linuxbsd"] def can_build(env, platform): |