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")

2. Target kinds

Installs
3
GitHub Stars
16
First Seen
May 8, 2026
xmake-csharp — xmake-io/xmake-skills