diff options
| author | JassJam <[email protected]> | 2026-02-23 12:28:50 +0000 |
|---|---|---|
| committer | ruki <[email protected]> | 2026-03-14 00:08:40 +0800 |
| commit | 9946d1814f4af9ef67e5accd9404e0fc69290f6f (patch) | |
| tree | f669ea003ab4947aabb7732696aefa4e62f5793c /tests/projects/csharp/multiple_library/test.lua | |
| parent | 95fa1f158a4044b9851ce6c0f4ff21f3427ce83e (diff) | |
feat: add initial test files
Diffstat (limited to 'tests/projects/csharp/multiple_library/test.lua')
| -rw-r--r-- | tests/projects/csharp/multiple_library/test.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/projects/csharp/multiple_library/test.lua b/tests/projects/csharp/multiple_library/test.lua new file mode 100644 index 000000000..5ab8adc69 --- /dev/null +++ b/tests/projects/csharp/multiple_library/test.lua @@ -0,0 +1,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 |
