The ! operator priority should be highest, the recent commit(https://github.com/sdcb/sdmap/commit/fabbf06b17842c2cd6ce67a3a8be26099fecc239) fixed it, but not deploy to nuget. if you write `#if(!A || B)`, you will mean `#if(!(A || B)` To achieve `#if(!A || B)`, you need to write `#if((!A) || B)` for the moment.
The ! operator priority should be highest, the recent commit(fabbf06) fixed it, but not deploy to nuget.
if you write
#if(!A || B), you will mean#if(!(A || B)To achieve
#if(!A || B), you need to write#if((!A) || B)for the moment.