Can c# , visualstudio define a conditional compilation variable in another project?
For example, there are 2 assemblies: ProjectA , ProjectB , and ProjectA refers to ProjectB .
ProjectB has this code:
#if ABC Console.WriteLine("если отобразилось значит ABC определена"); #endif Can ABC be defined in ProjectA to display a line?