From 930be83656eb0e6dc968f672e889d43aaa166550 Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 19 Mar 2026 23:15:48 +0800 Subject: add native aot --- tests/projects/csharp/native_aot/test.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tests/projects/csharp/native_aot/test.lua (limited to 'tests/projects/csharp/native_aot/test.lua') diff --git a/tests/projects/csharp/native_aot/test.lua b/tests/projects/csharp/native_aot/test.lua new file mode 100644 index 000000000..d909316b7 --- /dev/null +++ b/tests/projects/csharp/native_aot/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 -- cgit v1.3.1