From 0f22c796d88325884e568fbe5a559323ba862fe9 Mon Sep 17 00:00:00 2001 From: ruki Date: Mon, 16 Mar 2026 23:56:29 +0800 Subject: fix some csproj refs again --- xmake/rules/csharp/modules/csharp_utils.lua | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'xmake/rules/csharp/modules/csharp_utils.lua') diff --git a/xmake/rules/csharp/modules/csharp_utils.lua b/xmake/rules/csharp/modules/csharp_utils.lua index 6d19b39b7..404be965d 100644 --- a/xmake/rules/csharp/modules/csharp_utils.lua +++ b/xmake/rules/csharp/modules/csharp_utils.lua @@ -59,15 +59,12 @@ function _map_rid_arch(arch) return nil end -function generate_csproj_file(target, opt) +function generate_csproj_file(target) if not _is_csharp_target(target) then return nil end local csprojfile = _generated_csproj_path(target) - generate_csproj(target, csprojfile, table.join(opt or {}, { - is_csharp_target = _is_csharp_target, - generate_csproj_file = generate_csproj_file - })) + generate_csproj(target, csprojfile) target:data_set("csharp.csproj", csprojfile) return csprojfile end -- cgit v1.3.1