blob: 5954876e7cb1bab8c11cc89c92f4497f4448c76f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
set -e
source dev-container-features-test-lib
./test.sh
check "some major version of dotnet 3 is installed" bash -c "dotnet --list-sdks | grep '3\.[0-9]*\.[0-9]*'"
reportResults
|