blob: 62e950cb8a9434f118d4e2ffefb5578bda6e4f22 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
set -e
source dev-container-features-test-lib
pushd example_project
check "dotnet restore" dotnet restore
check "dotnet build" dotnet build
reportResults
|