如何使用 dotnet core CLI 创建解决方案文件

问题描述 投票:0回答:3

我无法找到使用 https://learn.microsoft.com/en-us/dotnet/articles/core/tools/dotnet-sln中描述的 dotnet core CLI 命令创建新解决方案文件的方法。

我运行了命令:

  • dotnet new  web -n webtrain
  • dotnet new  classlib -n core

之后,项目已正确创建,但现在我想创建一个解决方案文件将它们全部分组,但我找不到正确的命令来执行此操作。有人知道该怎么做吗?

asp.net-core command-line-interface
3个回答
69
投票

看起来你用过

dotnet new sln --name mysolution

https://learn.microsoft.com/en-us/dotnet/articles/core/tools/dotnet-new


4
投票

据我所知,这是一个两步操作,其中包括: 1 - 在您需要的文件夹中使用“dotnet new sln --name mysolution.sln”命令创建解决方案文件 2 - 使用命令“dotnet sln yourSlnFileYouCreated.sln add PathToTheCsProjFile”将您的 csproj 文件添加到此解决方案

如果需要,您可以删除更多项目并将其添加到同一解决方案文件中。

https://learn.microsoft.com/en-us/dotnet/articles/core/tools/dotnet-new https://learn.microsoft.com/en-us/dotnet/articles/core/tools/dotnet-sln


3
投票

首先,您必须创建文件夹。这将是解决方案名称。然后在该文件夹中运行此命令:

dotnet new sln

这将在该文件夹中创建一个

.sln
文件。

© www.soinside.com 2019 - 2024. All rights reserved.