summaryrefslogtreecommitdiff
path: root/tests/projects/csharp/multiple_library/test.lua
blob: e67becab3716b0808bd1040630df955579e5c3bd (plain)
1
2
3
4
5
6
7
8
9
10
import("detect.sdks.find_dotnet")

function test_build(t)
    local dotnet = find_dotnet()
    if dotnet and dotnet.sdkver then
        t:build()
    else
        return t:skip("dotnet sdk not found")
    end
end