Reputation: 2680
Starting with Visual Studio 2019, the syntax highlighter now colors functions in a goldish color (actually called Olive I guess). Since yesterday, somehow this no longer works.
I went to Tools -> Options -> Fonts & Color
, changed the Identifier
to Olive but it actually switched most of the code to Olive.
For example, previously, AddGlobalServices
, AddMvc
, SetCompatibilityVersion
and AddMemoryCache
where Olive colored.
How can I fix this?
Upvotes: 0
Views: 960
Reputation: 62
Instead, go to Options -> Text Editor -> Basic -> Advanced -> Editor Color Scheme
and set it to Visual Studio 2019
This way, the highlighting of functions and methods will change to Gold.
Upvotes: 1