C++20 in MSVC enables standard conformance. I would like to disable it for now. CMake properly converts /permissive flag into false in .vcxproj. And MSBuild adds /permissive flag to compilation. The problem is that order of /permissive and /std:c++20 affects the result.
Is there any way to not convert flag into ConformanceMode and just add it to end of AdditionalOptions? I’ve tried target_compile_options and add_compile_options without any success.