appveyor.yml 527 B

1234567891011121314151617
  1. os: Visual Studio 2022
  2. before_build:
  3. - nuget restore Renci.SshNet.sln
  4. install:
  5. - cinst dotnet-sdk --version=7.0.403 --limit-output
  6. build:
  7. project: Renci.SshNet.sln
  8. verbosity: minimal
  9. test_script:
  10. - cmd: >-
  11. vstest.console /logger:Appveyor test\Renci.SshNet.Tests\bin\Debug\net462\Renci.SshNet.Tests.dll /TestCaseFilter:"TestCategory!=integration" --blame
  12. vstest.console /logger:Appveyor test\Renci.SshNet.Tests\bin\Debug\net7.0\Renci.SshNet.Tests.dll /TestCaseFilter:"TestCategory!=integration" --blame