We are using Unity 2018.4, and we have a few play mode tests in our project.
I would like them to be excluded from the builds we are releasing to the mobile app stores.
Using .asmdef (Assembly definition files) i saw there’s an option to mark the assembly as a “test assembly”:
Unfortunately, this does not work, since some of our tests reference a .DLL that is included in the project (getting a compiler error).
What are the options for solving this? assembly definitions cannot reference DLLs, only other assembly definitions. Is the only option to define other .asmdefs and link them to my test assembly ?