Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VB.NET support for ASP.NET 5 (MVC6)

I've heard rummors that ASP.NET 5 does not support VB.net. Is this correct? Or does this apply only on some particular scenarios?

like image 533
Toni Wenzel Avatar asked Jan 20 '15 08:01

Toni Wenzel


People also ask

Is VB.Net still supported?

Visual Basic (VB.NET) will continue to be supported by Microsoft. (It's not dead.) The language will no longer have new features added to it.

What is ASP.NET mvc6?

ASP.NET MVC is a web application framework developed by Microsoft that implements the model–view–controller (MVC) pattern. It is no longer in active development. It is open-source software, apart from the ASP.NET Web Forms component, which is proprietary. ASP.NET MVC. Developer(s)

What is the difference between .NET 5 and .NET 6?

. NET 6.0 has more advantages than working with the . NET 5.0 as . NET 6.0 has more improvement on the performance which also includes some major advantage as it has intelligent code editing and also it is called the fastest full-stack web framework.


2 Answers

Update 5/1/2015

On April 23rd, the ASP.NET team announced that support for Visual Basic will be coming to ASP.NET 5.

More information is on the .NET Web Development and Tools Blog: http://blogs.msdn.com/b/webdev/archive/2015/04/23/making-it-better-asp-net-with-visual-basic-14.aspx


Original Answer

Though it was mentioned in a comment, it's worth having a full answer.

There are no plans to support VB in ASP.NET 5 in terms of compilation, project templates, and other tools. This is discussed in the following GitHub issue on the ASP.NET 5 project: https://github.com/aspnet/Home/issues/236

As that issues also mentions, ASP.NET 5 has some in-progress support to enable non-C# compilers to be used, but there is still no official plans to support VB (you'd have to roll your own).

like image 143
Eilon Avatar answered Sep 21 '22 05:09

Eilon


"We are excited today to announce that ASP.NET 5 will have full support with Visual Basic (both tooling and runtime – including cross platform runtime support). As always, we will continue this development of ASP.NET 5 in the open, and you can track our progress or even contribute on GitHub at http://github.com/aspnet/home."

Taken from: http://blogs.msdn.com/b/webdev/archive/2015/04/23/making-it-better-asp-net-with-visual-basic-14.aspx

like image 43
Mike Casas Avatar answered Sep 20 '22 05:09

Mike Casas