Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -264,11 +264,12 @@ int MonoScriptRuntime::HandlesFile(char* filename, IScriptHostWithResourceData*
}

// last supported date for this pilot of mono_rt2, in UTC
constexpr int maxYear = 2025, maxMonth = 12, maxDay = 31;
constexpr int maxYear = 2026, maxMonth = 6, maxDay = 30;

// Allowed values for mono_rt2
constexpr std::string_view allowedValues[] = {
// put latest on top, right here ↓
"Prerelease expiring 2026-06-30. See https://aka.cfx.re/mono-rt2-preview for info."sv,
"Prerelease expiring 2025-12-31. See https://aka.cfx.re/mono-rt2-preview for info."sv,
"Prerelease expiring 2025-06-30. See https://aka.cfx.re/mono-rt2-preview for info."sv,
"Prerelease expiring 2024-12-31. See https://aka.cfx.re/mono-rt2-preview for info."sv,
Expand Down
Loading