Hi,
ContextI have solution with many test projects, and a "test helpers" project. The test projects all target netcoreapp2.2, but the test helpers project is targetting netstandard2.0. This was working fine, but now I added the
UseCultureAttribute from xunit.samples to the test helpers project, and that caused NCrunch to fail the build of the test helpers project, with a
reference to the documentation, since I had to reference the xunit.extensibility.core NuGet package.
Steps to reproduce:
- Create new unit test project
- Add test helpers netstandard project, and reference that from the unit test project
- Reference xunit.extensibility.core NuGet package in the test helpers project
The reproduction can be found here:
https://github.com/tiesmaster/ReproduceNCrunchBug
Expected result:Building the test helpers project emits a NCrunch warning.
Actual result:NCrunch fails the build of the test helpers project.
@remco
I hope this is enough to reproduce the bug. Let me know if you need more for this.