✅ Can no longer run console app after adding unit tests
I made a little test project that I've slowly been building onto. It's gotten big enough now that I've added NUnit unit tests to make it easier, but I seem to have done it wrong and now the app won't open. When I hit run it brings up a configuration window with the error on the bottom
Here's what the csproj file looks like
I added in the
Error: Project has no runnable target frameworks defined. The Target framework parameter shows net6.0 though, so I'm not sure what the problem is.Here's what the csproj file looks like
I added in the
Microsoft.NET.Test.Sdk to get the unit tests to appear in the test runner, but it also causes this error running it normally. Comparing it to a freshly made unit test project, the csproj looks about the same. I've definitely done something wrong in adding the nunit packages, but I have no idea what.