add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,32 @@
# msbuild
> 微软的构建工具,用于 Visual Studio 项目解决方案。
> 更多信息:<https://learn.microsoft.com/visualstudio/msbuild>。
- 构建当前目录中的第一个项目文件:
`msbuild`
- 构建特定的项目文件:
`msbuild {{path/to/project_file}}`
- 指定一个或多个以分号分隔的目标进行构建:
`msbuild {{path/to/project_file}} /target:{{targets}}`
- 指定一个或多个以分号分隔的属性:
`msbuild {{path/to/project_file}} /property:{{name=value}}`
- 指定要使用的构建工具版本:
`msbuild {{path/to/project_file}} /toolsversion:{{version}}`
- 在日志末尾显示有关项目配置的详细信息:
`msbuild {{path/to/project_file}} /detailedsummary`
- 显示帮助:
`msbuild /help`