diff options
| author | JassJam <[email protected]> | 2026-02-25 09:55:53 +0000 |
|---|---|---|
| committer | ruki <[email protected]> | 2026-03-14 00:10:58 +0800 |
| commit | a35ec2dcea9ca5c639ca9d1332a46ede16b959c0 (patch) | |
| tree | 83c653a47a82343cabf8f8b94c88ed57426bdefc /xmake/rules/csharp/install.lua | |
| parent | 3cf64d9220b3c581becd99a8f6cb316462f1bad5 (diff) | |
refactor: update dotnet verbosity handling in C# rules, dont add a new policy
Diffstat (limited to 'xmake/rules/csharp/install.lua')
| -rw-r--r-- | xmake/rules/csharp/install.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/csharp/install.lua b/xmake/rules/csharp/install.lua index 05d48e2c5..34109a054 100644 --- a/xmake/rules/csharp/install.lua +++ b/xmake/rules/csharp/install.lua @@ -32,7 +32,7 @@ function main(target, opt) local csprojfile = assert(csharp_common.find_csproj(target), "target(%s): missing csharp .csproj file!", target:name()) local dotnet = csharp_common.get_dotnet_program(target) local configuration = csharp_common.build_mode_to_configuration() - local verbosity = csharp_common.get_dotnet_verbosity(target) + local verbosity = csharp_common.get_dotnet_verbosity() local install_path = target:installdir() if target:is_binary() then |
