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,24 @@
# dotnet run
> 运行一个 .NET 应用程序,无需显式的编译或启动命令。
> 更多信息:<https://learn.microsoft.com/dotnet/core/tools/dotnet-run>。
- 在当前目录中运行项目:
`dotnet run`
- 运行特定项目:
`dotnet run --project {{path/to/file.csproj}}`
- 使用特定参数运行项目:
`dotnet run -- {{arg1=foo arg2=bar ...}}`
- 使用目标框架标识符运行项目:
`dotnet run --framework {{net7.0}}`
- 指定架构和操作系统,自 .NET 6 起可用(不要与这些选项一起使用 `--runtime`
`dotnet run --arch {{x86|x64|arm|arm64}} --os {{win|win7|osx|linux|ios|android}}`