ASP NET Core 2 with full structure

I cannot find any documentation or examples of an ASP.NET MVC Core application running under a full map. It is assumed that it will be supported, but, as I said, I can’t find the documentation on how to configure the project for this, and I myself could not process it.

Has anyone got this job and can provide advice / sample of what needs to be done?

+6
source share
1 answer

I can create / run an ASP.NET Core 2.0 project with the full .NET framework 4.6.1, I have completed the following steps -

  • A new project was created using the ASP.NET Core web application in the Web category -

Step1

  1. - (Model-View-Controller)

Step2

  1. csproj : <TargetFramework>net461</TargetFramework>

Step3

-

  • Visual Studio 2017 Community 15.3.3

  • .NET Core 2.0 SDK

+3

All Articles