summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2023-05-07 10:31:10 +0800
committerruki <[email protected]>2023-05-07 10:31:10 +0800
commit96bdd53a23f297a635b945482802582d760216b2 (patch)
tree7225a6d7a04a4596a87d5e2e1737bcd15e9535ba
parent45829dab6f83494b1101fd5da3771cdca2400aad (diff)
fix msbuild
-rw-r--r--xmake/modules/package/tools/msbuild.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/xmake/modules/package/tools/msbuild.lua b/xmake/modules/package/tools/msbuild.lua
index 2de6ff91c..e3194322e 100644
--- a/xmake/modules/package/tools/msbuild.lua
+++ b/xmake/modules/package/tools/msbuild.lua
@@ -57,7 +57,6 @@ function _get_configs(package, configs, opt)
configs = configs or {}
local configs_str = string.serialize(configs, {indent = false, strip = true})
table.insert(configs, "-nologo")
- table.insert(configs, "-t:Rebuild")
table.insert(configs, (jobs ~= nil and format("-m:%d", jobs) or "-m"))
if not configs_str:find("p:Configuration=", 1, true) then
table.insert(configs, "-p:Configuration=" .. (package:is_debug() and "Debug" or "Release"))