This commit is contained in:
Wojtek Figat
2023-04-12 11:21:55 +02:00
parent 1a604e24a0
commit 99566a0f0f
3 changed files with 9 additions and 9 deletions

View File

@@ -32,9 +32,9 @@ namespace Flax.Build
public enum HostType
{
/// <summary>
/// Core CRL runtime.
/// Core CLR runtime.
/// </summary>
CoreCRL,
CoreCLR,
/// <summary>
/// Old-school Mono runtime.
@@ -73,7 +73,7 @@ namespace Flax.Build
case TargetPlatform.Windows:
case TargetPlatform.Linux:
case TargetPlatform.Mac:
Type = HostType.CoreCRL;
Type = HostType.CoreCLR;
break;
default:
Type = HostType.Mono;