I’m doing the SprialMatrix problem and my tests pass locally. However, I’ve added 3 new classes in separate .cs files and this causes the tests to fail when submitted to exercism because they are not included in the compilation at exercism.
The only thing I can do to fix this I suppose is to put all the classes into the same SpiralMatrix.cs file but I’d rather keep them as separate distinct files.
Anything not listed in the .files.solution array in ./.exercism/config.json has to be listed separately for exercism submit, and if you do that you need to include every file to submit:
Hi, yes I added the new files to config.json and re-submitted but it still didn’t work. I eventually just added the classes in those new files to the SpiralMatrix.cs and that did the trick.