diff options
| author | ruki <[email protected]> | 2026-03-17 23:54:05 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2026-03-17 23:54:05 +0800 |
| commit | 3874b16f91e29868a4350b20d2c091af08284d44 (patch) | |
| tree | 2a6c064e36f79e94a05a50417e436ab8264386ba /tests/projects/csharp/shared_library/test.lua | |
| parent | c1e59483fabb0daef020f11964964e3686ea7a7e (diff) | |
rename test files
Diffstat (limited to 'tests/projects/csharp/shared_library/test.lua')
| -rw-r--r-- | tests/projects/csharp/shared_library/test.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/projects/csharp/shared_library/test.lua b/tests/projects/csharp/shared_library/test.lua new file mode 100644 index 000000000..d909316b7 --- /dev/null +++ b/tests/projects/csharp/shared_library/test.lua @@ -0,0 +1,13 @@ +import("detect.sdks.find_dotnet") + +function test_build(t) + if is_subhost("msys") then + return t:skip("csharp not supported on msys") + end + local dotnet = find_dotnet() + if dotnet and dotnet.sdkver then + t:build() + else + return t:skip("dotnet sdk not found") + end +end |
