I have three test projects in a solution. In one I create my feature files with scenarios and I add them as links in the other two (so the scenarios are completely identical but with different step implementation within the three projects). I use Visual Studio 2019 and Specflow 3 with MsTest as test runner. The packages that I've included are:
<package id="Gherkin" version="6.0.0" targetFramework="net472" />
<package id="SpecFlow" version="3.0.225" targetFramework="net472" />
<package id="SpecFlow.MsTest" version="3.0.225" targetFramework="net472" />
<package id="SpecFlow.Tools.MsBuild.Generation" version="3.0.225" targetFramework="net472" />
When I build the solution I only see the tests from the first project in Test Explorer. Tests for the project with linked feature files are not generated. Is this even possible with Specflow 3?