Hi, I am currently having some issues building my unit tests.
This is my Qaction100 .csproj file with nullable enabled
However, if i were to disable nullable, I get other errors.
I'm not sure what is the fix for this, could someone help me out?
In the project file, you'll have to disable both nullable and implicit usings. QActions use C# 7.3 but these features are not supported in that language version. (the reason that these configurations are by default added when adding a test project is because it's an SDK-style project.)
Hi Pedro, thanks! It’s working now.