I'm looking for a way to export the test output from a .NET Core application, to TeamCity via a Cake build script.
Currently, I'm simply running:
DotNetCoreTest("./src/MyTestProject");
But I can't see anything within the documentation of ITeamCityProvider or DotNetCoreTest
The above code block works from the command line, but I can't find a way to publish the test results to the build server.
Hope someone can help