/
EvilBeaver
/
OneScript
Обзор
Документация
Войти
/
EvilBeaver
/
OneScript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
v2.0.0-RC3
src/OneScript.DebugProtocol/DebuggerSettings.cs
20 строк
657 B
Dmitriy Korolev
#1318 fix: Использовать UTF-8 при запуске дебаггера
24 июл 2023, 13:52
24 июл 2023, 13:52
17cb478
Код
Авторство
О чём код?
/*---------------------------------------------------------- This Source Code Form is subject to the terms of the Mozilla Public License, v.2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. ----------------------------------------------------------*/ using System.Text; namespace OneScript.DebugProtocol { public static class DebuggerSettings { public const int MAX_BUFFER_SIZE = 5000000; public const int MAX_PRESENTATION_LENGTH = (int)(MAX_BUFFER_SIZE / 2.5); public static readonly Encoding DebugModeEncoding = Encoding.UTF8; } }