From ade5e132ca27841b09f93392a6a660589c67627f Mon Sep 17 00:00:00 2001 From: Bruce Forstall Date: Tue, 25 Apr 2017 15:58:33 -0700 Subject: [PATCH] Clarify casing requirement for useLegacyJit fallback name --- Documentation/testing-with-ryujit.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Documentation/testing-with-ryujit.md b/Documentation/testing-with-ryujit.md index 7144b0ce2..8e584404f 100644 --- a/Documentation/testing-with-ryujit.md +++ b/Documentation/testing-with-ryujit.md @@ -38,6 +38,8 @@ Add the following text to the `.exe.config` file. Create This method is preferable as it is scoped to just one application. + The string "useLegacyJit" is case-sensitive. + ### Method 2: environment variable Set the following environment variable: @@ -47,6 +49,8 @@ Set the following environment variable: This method affects any environment that inherits this environment variable. This might be just a single console session, or it might affect the entire machine, if you set the environment variable globally. + The environment variable name is not case-sensitive. + ### Method 3: registry Using Registry Editor (regedit.exe), find either of the following subkeys: @@ -66,6 +70,8 @@ Using Registry Editor (regedit.exe), find either of the following subkeys: In this case, `HKLM` is used instead of `HKEY_LOCAL_MACHINE`. Use `reg add /?` to see help on this syntax. + The registry value name is not case-sensitive. + Disable loading NGEN Images ===========================