summaryrefslogtreecommitdiff
path: root/tests/projects/csharp/console/test.lua
blob: 5ab8adc69e105ae2bd597197430582329997e9d2 (plain)
1
2
3
4
5
6
7
8
9
10
import("lib.detect.find_tool")

function test_build(t)
    local dotnet = find_tool("dotnet")
    if dotnet then
        t:build()
    else
        return t:skip("dotnet not found")
    end
end