I can't use ASP.NET Core Web App. Where can I download it?

이형진 1 Reputation point
2021-03-11T04:03:01.11+00:00

I'm using Visual Studio Professional 2019 version and I can't use ASP.NET Core Web App even though I have downloaded after selecting ASP.NET MVC 4 to use ASP.NET Core Web App. How can I solve this?

Visual Studio Professional 2019 버전을 사용중이고 ASP.NET Core Web App을 사용하기 위해 ASP.NET MVC 4까지 선택 후 다운로드를 했는데도 ASP.NET Core Web App을이용할 수가 없습니다. 어떻게 해결해야 하나요?

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,139 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Michael Wang-MSFT 1,051 Reputation points
    2021-03-11T07:17:07.733+00:00

    Hi, @이형진

    Here is a Quickstart: Use Visual Studio to create your first ASP.NET Core web app.

    76633-image.png

    ------
    If the answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    Best Regards,
    Michael Wang

    1 person found this answer helpful.

  2. Duane Arnold 3,211 Reputation points
    2021-03-11T20:17:28.28+00:00

    I'm using Visual Studio Professional 2019 version and I can't use ASP.NET Core Web App even though I have downloaded after selecting ASP.NET MVC 4 to use ASP.NET Core Web App. How can I solve this?

    ASP.NET MVC Core is not going to work for a ASP.NET MVC 4 solution using the .NET framework.

    At best, you have to do the migration of ASP.NET non Core program to a ASP.NET Core program.

    OR, you create a new ASP.NET Core MVC project, and you copy classes and whatnot from the MVC 4 project over to MVC Core project.

    0 comments No comments