Difference between Asp.Net Core 1.0 and .Net Core 1.0?

First of all, sorry for my weak English. I have almost no idea about the differences between asp.net , asp.net core and .net core , etc. I searched on google for what they represent almost all day. As I found out, Asp.Net 5 changed its name to Asp.Net Core 1.0. In addition, a new .NET Core 1.0 platform is provided for developing cross-platform applications.

Now I have some questions, hopefully not meaningless.

I want to know the difference between Asp.Net Core 1.0 and .Net Core 1.0 . If I want to develop a project, what are the advantages and disadvantages of each of them?

Finally, if I want to use one of them for a cross-platform application , which is preferable?

Thanks in advance.

+5
asp.net-core .net-core
Jun 30 '16 at 14:49
source share
4 answers

ASP.Net specifically for web development .Net is a common infrastructure. Therefore, if you are creating a website, REST API, etc., you must use ASP.Net, otherwise just .Net.

And .Net Core 1.0 was released a couple of days ago , so don't worry about RC2 (candidate for release).

Your link to 2.0 is a random Nuget package with version 2.0 that has nothing to do with .Net Core.

+7
Jun 30 '16 at 14:52
source share

.NET Core 1.0 is not the next version of .NET 4.6.2 (Full .NET Framework). If this is the next version, it should have more features than the previous one. But according to Microsoft.NET Core 1.0, some of the features of .NET 4.6 are not implemented. That is why they called it .NET Core 1.0 instead of .NET 5.

In ASP.NET Core 1.0, they use .NET Core 1.0 as a reference . This means that we do not need to install the .NET framework to run our ASP.NET Core 1.0 application.

If you intend to develop a cross-platform web application, you need to use ASP.NET Core 1.0.

+1
Jul 15 '16 at 8:49
source share

.NET Core is a platform for creating cross-platform applications using C # or other .NET tools. It is based on .NET.

ASP.NET Core is basically when you use .NET Core to build web applications. Technically, it is made from .NET Core libraries.

If you want to learn more about why and when you can use ASP.NET Core, you can read more from my book here: https://leanpub.com/netcore/read_sample (select the "Why ASP.NET Core" section) .

0
Jun 13 '17 at 9:46 on
source share

.Net Core 1.0 is the new name for the latest version of the .NET Framework. It has been rewritten from scratch.

ASP.Net Core 1.0 is essentially the new version of ASP.Net MVC and Web.API, combined with one product that uses the new .Net Core 1.0. Like .Net Core 1.0, ASP.Net Core 1.0 has also been rewritten from scratch.

Both .Net Core 1.0 and ASP.Net Core 1.0 have received full release status over the past few weeks.

The link to .Net Core 2.0 that you published is valid for .Net Core 1.0, but the package version 2.0.7

-2
Jun 30 '16 at 2:56
source share



All Articles