I have cake file that I want to run in Windows and Ubuntu.
In Windows we need Cake.EntityFramework addin
and in Ubuntu we do not need it.
So I want to write some platform specific addin
like below
#if WINDOWS
#addin nuget:?package=Cake.EntityFramework&version=0.3.0
#endif
But I do not know how to do it?