summaryrefslogtreecommitdiff
path: root/xmake/core
diff options
context:
space:
mode:
authorJassJam <[email protected]>2026-02-24 10:48:41 +0000
committerruki <[email protected]>2026-03-14 00:10:12 +0800
commit6fdb4e159d23995e01a676ee9bf754ad171f5afd (patch)
treedcc19c68eb88a300b663fdaa0a69d409988e8572 /xmake/core
parent426746d3e909887b55918508b7ee3f2024466257 (diff)
feat: add dotnet verbosity option for csharp rule
Diffstat (limited to 'xmake/core')
-rw-r--r--xmake/core/project/policy.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/xmake/core/project/policy.lua b/xmake/core/project/policy.lua
index 0cf184d91..09751ba72 100644
--- a/xmake/core/project/policy.lua
+++ b/xmake/core/project/policy.lua
@@ -125,6 +125,8 @@ function policy.policies()
["build.progress_style"] = {description = "Set the build progress output style.", type = "string", values = {"scroll", "singlerow", "multirow"}},
-- Show target name in build progress output
["build.progress_show_target"] = {description = "Show target name in build progress output.", default = true, type = "boolean"},
+ -- Set dotnet verbosity for csharp rule, e.g. quiet|minimal|normal|detailed|diagnostic
+ ["build.csharp.dotnet_verbosity"] = {description = "Set dotnet verbosity for csharp rule.", type = "string", values = {"quiet", "minimal", "normal", "detailed", "diagnostic"}},
-- Enable windows UAC and set level, e.g. invoker, admin, highest
["windows.manifest.uac"] = {description = "Enable windows manifest UAC.", type = "string"},
-- Enable ui access for windows UAC