I have a NuGet package that I am trying to write some integration tests around. I am using NUnit to run these tests.
I would like to stand up a basic Web API service using .Net 6.0. Most of the examples I see require a full project dedicated to running the service.
Is there a way I can standup a simple Web API service in the [setup] of my test?
It can just run on localhost and only need a single GET operation.