xmake-csharp
Installation
SKILL.md
Building C# with Xmake
Xmake drives the C# compiler (Mono mcs or modern .NET csc/dotnet) through a target model similar to C++.
1. Minimal project
add_rules("mode.debug", "mode.release")
target("hello")
set_kind("binary")
add_files("src/*.cs")