We can create solutions and project using dotnet core command line. But I want to run this commands in my web application and create a project automatically and download it.
[HttpPost("create")]
public async Task<IActionResult> Create([FromBody] string projectName)
{
// dotnet dotnet new sln --name projectName
return created solution zip file
}
Is this possible?