testenvironments.json 625 B

12345678910111213141516171819
  1. {
  2. // Remote Testing (experimental preview).
  3. // Here is some documentation https://learn.microsoft.com/en-us/visualstudio/test/remote-testing?view=vs-2022.
  4. // Here a screen shot of the VS2022 where are the Test Explorer https://user-images.githubusercontent.com/13117724/196798350-5a6f94d3-b6cd-424e-b4e8-a9b507dc057a.png.
  5. // Ignore "Could not find 'mono' host" error because unit tests don't use the .NET Framework.
  6. "version": "1",
  7. "environments": [
  8. {
  9. "name": "WSL-Ubuntu",
  10. "type": "wsl",
  11. "wslDistribution": "Ubuntu"
  12. },
  13. {
  14. "name": "WSL-Debian",
  15. "type": "wsl",
  16. "wslDistribution": "Debian"
  17. }
  18. ]
  19. }