From da84c90696627913535d356c05e76a78e1281883 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Tue, 7 Dec 2021 02:00:00 +0100 Subject: [PATCH] feat: set COMPLUS_ForceENC, enables edit & continue for Dalamud & plugins --- lib/CoreCLR/boot.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/CoreCLR/boot.cpp b/lib/CoreCLR/boot.cpp index 2d00c1aa6..d6fc0f604 100644 --- a/lib/CoreCLR/boot.cpp +++ b/lib/CoreCLR/boot.cpp @@ -36,6 +36,7 @@ int InitializeClrAndGetEntryPoint( SetEnvironmentVariable(L"DOTNET_MULTILEVEL_LOOKUP", L"0"); //SetEnvironmentVariable(L"COMPlus_legacyCorruptedStateExceptionsPolicy", L"1"); SetEnvironmentVariable(L"DOTNET_legacyCorruptedStateExceptionsPolicy", L"1"); + SetEnvironmentVariable(L"COMPLUS_ForceENC", L"1"); wchar_t* dotnet_path; wchar_t* _appdata;