TeamCity.CSharpInteractive/WarningLevel.cs (10 lines of code) (raw):
// ReSharper disable UnusedMember.Global
namespace TeamCity.CSharpInteractive;
// https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/errors-warnings
internal enum WarningLevel
{
L0 = 0,
L1 = 1,
L2 = 2,
L3 = 3,
L4 = 4,
L5 = 5
}