summaryrefslogtreecommitdiff
path: root/xmake/rules/csharp/install.lua
diff options
context:
space:
mode:
authorJassJam <[email protected]>2026-02-24 18:04:11 +0000
committerruki <[email protected]>2026-03-14 00:10:13 +0800
commit454997b0d4e7775ea70f81986528e7fc21dc50f9 (patch)
tree7e3de8d1eb422980927527887f964d15359aba79 /xmake/rules/csharp/install.lua
parentbe2de5598c80f9b9960909aa876d4a4e533b9710 (diff)
feat: split C# rule into multiple modules
Diffstat (limited to 'xmake/rules/csharp/install.lua')
-rw-r--r--xmake/rules/csharp/install.lua95
1 files changed, 95 insertions, 0 deletions
diff --git a/xmake/rules/csharp/install.lua b/xmake/rules/csharp/install.lua
new file mode 100644
index 000000000..97b3b1ee8
--- /dev/null
+++ b/xmake/rules/csharp/install.lua
@@ -0,0 +1,95 @@
+--!A cross-platform build utility based on Lua
+--
+-- Licensed under the Apache License, Version 2.0 (the "License");
+-- you may not use this file except in compliance with the License.
+-- You may obtain a copy of the License at
+--
+-- http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing, software
+-- distributed under the License is distributed on an "AS IS" BASIS,
+-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+-- See the License for the specific language governing permissions and
+-- limitations under the License.
+--
+-- Copyright (C) 2015-present, Xmake Open Source Community.
+--
+-- @author JassJam
+-- @file install.lua
+--
+
+local csharp_common = import("csharp_common", {anonymous = true})
+
+function main(target, opt)
+ local function _q(arg)
+ arg = tostring(arg)
+ if arg:find("[%s\"]") then
+ arg = "\"" .. arg:gsub("\"", "\\\"") .. "\""
+ end
+ return arg
+ end
+
+ 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 install_path = target:installdir()
+ if target:is_binary() then
+ install_path = target:installdir("bin")
+ elseif target:is_static() or target:is_shared() then
+ install_path = target:installdir("lib")
+ end
+ if not install_path or #install_path == 0 then
+ return
+ end
+
+ local install_abs = path.is_absolute(install_path) and install_path or path.absolute(install_path, os.projectdir())
+ os.mkdir(install_abs)
+
+ local rid = csharp_common.get_runtime_identifier(target)
+ local argv = {
+ "publish", csprojfile,
+ "--nologo",
+ "--configuration", configuration,
+ "--verbosity", verbosity,
+ "--output", install_abs
+ }
+ if rid and target:is_binary() then
+ table.join2(argv, {"--runtime", rid})
+ end
+ csharp_common.append_target_flags(target, argv)
+
+ local runopt = csharp_common.get_dotnet_runopt(csprojfile)
+ if os.vrunv then
+ os.vrunv(dotnet, argv, runopt)
+ elseif os.runv then
+ os.runv(dotnet, argv, runopt)
+ elseif os.execv then
+ os.execv(dotnet, argv, runopt)
+ elseif os.vrun then
+ local cmd = _q(dotnet)
+ for _, arg in ipairs(argv) do
+ cmd = cmd .. " " .. _q(arg)
+ end
+ os.vrun(cmd, runopt)
+ elseif os.run then
+ local cmd = _q(dotnet)
+ for _, arg in ipairs(argv) do
+ cmd = cmd .. " " .. _q(arg)
+ end
+ os.run(cmd, runopt)
+ else
+ local targetdir = target:targetdir()
+ if targetdir and os.isdir(targetdir) then
+ os.cp(path.join(targetdir, "**"), install_abs, {rootdir = targetdir})
+ end
+ end
+
+ if target:is_binary() then
+ local targetdir = target:targetdir()
+ if targetdir and os.isdir(targetdir) then
+ os.cp(path.join(targetdir, "**"), install_abs, {rootdir = targetdir})
+ end
+ end
+end