summaryrefslogtreecommitdiff
path: root/xmake/rules/csharp/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2026-03-17 00:03:55 +0800
committerruki <[email protected]>2026-03-17 00:03:55 +0800
commit9ad1383808d20fbb5ffcfd69dfb507f87c28c3ac (patch)
treee4592ae9e32de3fce57a273b26824caa5a098615 /xmake/rules/csharp/xmake.lua
parentb4a1c11be9dac3472299aba9165b4b182dcdc8c1 (diff)
move generate csproj to prepare.lua
Diffstat (limited to 'xmake/rules/csharp/xmake.lua')
-rw-r--r--xmake/rules/csharp/xmake.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/rules/csharp/xmake.lua b/xmake/rules/csharp/xmake.lua
index 30611d68a..1d5818337 100644
--- a/xmake/rules/csharp/xmake.lua
+++ b/xmake/rules/csharp/xmake.lua
@@ -20,7 +20,8 @@
rule("csharp.build")
set_sourcekinds("cs")
- on_build("build.target")
+ on_prepare("prepare")
+ on_build("build")
rule("csharp")
add_deps("csharp.build")