If I in my asp.net solution have defined a compilerOption in the web.config
file, as in my example 'web', Resharper isn't aware of it. So I have to
define it again in every .cs file that needs conditional compiling.
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs"
type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089"
compilerOptions="/d:DEBUG,web"/>
</compilers>
</system.codedom>
Any chance of a fix for this ?