Right now in my code suddenly some part of the code is not color-coded to Visual Studio classic theme colors. I am not sure if there is some error in my code but when I define some property for example:
public class VideoEncodeTest : AndroidPowerTest
{
[CptfConfigAcceptedParametersClass]
public VideoEncodeTestParameters VideoEncodeTestParameters { get; set; }
[CptfConfigAcceptedParametersClass]
public IBundleStrategy Strategy { get; set; }
}
I expect Type of the properties, Name of the base class and name of the attribute to be in color-coded in blue at least. However, it is not and it is plain black. This is only happening with this particular class and not happening with other classes. I am not sure why and what can be the reason.
Any ideas? prior experience?