dotnet / aspnetcore

ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.
https://asp.net
MIT License
34.59k stars 9.79k forks source link

Visual Basic .NET (VB.NET) support in ASP.NET Core #2738

Closed reduckted closed 5 years ago

reduckted commented 6 years ago

There have been many questions asked about VB.NET support in ASP.NET Core over the past few years. If you follow them, they all lead to dead-ends - either closed with no real response, or they're moved to other repositories that are unrelated to ASP.NET Core (such as somewhere in the dotnet organization).

Over that time, there's been talk of supporting VB. It's completely understandable that ASP.NET Core didn't support VB from the outset. The project was going through a lot of rapid change, so it made sense to focus on C# initially and add support for other languages later. But the idea of supporting VB seemed to get lost along the way.

Here's a brief timeline:

Dec 16, 2014:

We plan to have extensibility points so other languages like VB, F#, etc can be added via the form of a support package or such. https://github.com/aspnet/Home/issues/236#issuecomment-67046039

Apr 25, 2015:

Hey everyone, good news! We've announced plans to support VB in ASP.NET 5 / DNX! https://github.com/aspnet/Home/issues/236#issuecomment-96003847

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). https://blogs.msdn.microsoft.com/webdev/2015/04/24/making-it-better-asp-net-with-visual-basic-14/

Nov 19, 2016: VB Support disappears from the roadmap:

 |1.0.4|Feb 2017|
 |1.2|Q2 2017|

-## Future Work
-
-Visual Basic support.
-
 <em><sup>*</sup> References to yearly quarters (Q1, Q2, Q3, Q4) are calendar-based</em>

https://github.com/aspnet/Home/wiki/Roadmap/_compare/2138fe4ff8a437e8edefc333189aaa8d9b5afb6a...b49bda1f8f40975b39d14d199a9ddac0a2beb45e

Dec 12, 2017:

there are no plans to add a VB template for ASP.NET Core https://github.com/aspnet/Home/issues/2305#issuecomment-351501913

VB support seems to have gone from

"It doesn't work yet, but we plan to allow VB"

to

"There will be full support for VB!"

to

"VB is not supported, but shhh, don't tell anyone".

So my first question is:

What happened and why was there no announcement or discussion with the community about this?

It seems strange to go from announcing support for VB.NET in ASP.NET Core in an official blog post, to not supporting it at all without any feedback. Was there any announcement about this? If there was, it certainly wasn't widely published.

My next, and more important question is:

What can the VB community do to help add support for VB.NET to ASP.NET Core?

Are there project templates that we can write? Are there code generators that we can implement? What can we do make ASP.NET Core as awesome for VB developers as it is for C# developers?


I've thrown together a simple ASP.NET Core app (link deleted because the repo is out of date) in VB by creating a .NET Core console application, editing the project file and copying the classes generated from the ASP.NET Core C# template. It works fine, and even though it's only very basic, I can't see any reason why VB.NET cannot be supported.

muratg commented 6 years ago

cc @DamianEdwards

hishamco commented 6 years ago

I logged an issue long time back to use VB alongside with .cshtml in Razor repo, since then I didn't see any action 😟. Few weeks ago I saw a great example from @DamianEdwards that demonstrate a hyprid VB ASP.NET Core application here

tb-mtg commented 6 years ago

In addition to @reduckted excellent summation, Microsoft's documentation for Razor syntax for ASP.NET Core (as at 2017-10-18) still has numerous references to Visual Basic and using .vbhtml files:

This restriction doesn't apply to .vbhtml Razor files because Visual Basic syntax places parentheses around generic type parameters instead of brackets.

However ScottAddie@MSFT had posted a comment on 2017-07-21:

ASP.NET Core doesn't yet support VB.NET. You'll need to stick with ASP.NET proper for now.

So is Visual Basic/vb.net/.vbhtml files going to be included in .Net Core? And If so when??

brunojuliao commented 6 years ago

How can we help to make this support happen? I would love to see VB.Net and F# support!

Eilon commented 6 years ago

I sent a PR to remove the VBHTML references from the ASP.NET Core docs: https://github.com/aspnet/Docs/pull/5201

There are currently no plans to introduce VBHTML support to ASP.NET Core.

We do have F# templates for ASP.NET Core, which are installed as part of the .NET Core SDK.

reduckted commented 6 years ago

@Eilon There are currently no plans to introduce VBHTML support to ASP.NET Core.

Personally, I'm not concerned about VBHTML support because I don't use Razor pages, and don't intend to. As mentioned by @AnthonyDGreen (https://github.com/dotnet/vblang/issues/238#issuecomment-354927626), it doesn't make sense to add VB support to it because it was rarely used in MVC 5, and, I imagine, would take a very large amount of work for not a lot of gain.

@Eilon We do have F# templates for ASP.NET Core, which are installed as part of the .NET Core SDK.

OK, but I'm not really sure what your point is here. If anything, doesn't this just reinforce the fact that there should be VB templates as well?

Weren't the F# templates created by the F# community? If the team at Microsoft won't create VB templates, then why can't the VB templates be created by the VB community?

Eilon commented 6 years ago

@reduckted the question comes down to the demand for it and the cost of it - both the initial cost and the ongoing cost. The demand has been very low, as noted earlier. The cost to create an initial set of templates might not be much, but someone has to maintain them. With F# we have people at Microsoft who are committed to maintaining them. We don't have any such people for VB at this time.

Also, one limitation with the F# templates is that they focus more on the API side of things; that is, no Razor or CSHTML (because there's no FSHTML). With VB users my guess is that most users using VB would be expecting a VBHTML experience for MVC, and the cost of producing that is enormous - months and months of work. So, it isn't clear to me that adding limited VB templates would be particularly valuable.

reduckted commented 6 years ago

@Eilon With VB users my guess is that most users using VB would be expecting a VBHTML experience for MVC...

You may want to speak to @AnthonyDGreen, because that's exactly the opposite of what he has said in the comment that I previously linked to (https://github.com/dotnet/vblang/issues/238#issuecomment-354927626). I'll quote it this time (emphasis is mine):

The .vbhtml razor engine from MVC 5 wasn't ported to Core primarily because less than 1% of all VB web projects used it after 5 versions.

Eilon commented 6 years ago

@reduckted - interesting, that is news to me. I'm thinking back to Web Forms days, which was initially designed with concepts that were familiar to VB developers (VB6, specifically), and Web Forms was very HTML-centric (sorta), so that led me to think that VBHTML would be most interesting to that group of people. Then again, that's ~15 year old anec-data 😄

BTW to be clear, we haven't said that we're never going to do it - just that it isn't currently in any plans.

hishamco commented 6 years ago

I'm a VB fan 😄, which I expect .vbhtml to be out-of-the-box, the hybrid approach that I mentioned before is not enough for all the VB guys, but It's fine is some cases. My question is some re-implement the Razor to emit VB instead of C# is that gonna work, or the MVC is tightly coupled on the cshtml C#?

KathleenDollard commented 6 years ago

@hishamco Unfortunately Razor was implemented so that VB and C# were separate paths. I've talked to a few people involved and it's quite a large project.

tb-mtg commented 6 years ago

@KathleenDollard There are other .NET Core projects that support custom ViewEngines for .pug & .md file types.

Surely we can make it work for .vbhtml razorpages files using a .vbproj with <Project Sdk="Microsoft.NET.Sdk.Web">.

KathleenDollard commented 6 years ago

@tb-mtg It's all open source if you want to explore it and see what those projects did. The folks that wrote it told me it was a big effort. The size of the effort and the exceedingly low adoption of vbhtml in earlier versions of MVC make it a hard sell.

hishamco commented 6 years ago

@KathleenDollard I will repeat my question again, If I re-implement the Razor to emit VB instead of C# is that gonna work, or the MVC is tightly coupled on the cshtml C#?

Eilon commented 6 years ago

@hishamco that would be a good question for @rynowak . Ryan?

rynowak commented 6 years ago

MVC's runtime compilation engine uses the Roslyn infrastructure for compiling C#, and expects/requires the C# project system's settings to be passed through .deps.json. MVC doesn't have any tight coupling to the code that is generated, but rather it provides infrastructure for compiling C# views at runtime using settings generated by a C# project.

Anyone who wants to compile VB at runtime will need to implement a view engine that does that.

hishamco commented 6 years ago

Thanks @rynowak for you clarification

uses the Roslyn infrastructure for compiling C#, and expects/requires the C# project system's settings to be passed through .deps.json

If I implement a VB view engine - or clone C# one with modification -, what settings that I need to pass into .deps.json to make this happen?

neonleo commented 6 years ago

+1 Visual Basic always the most important language in .NET world. VB still many fans and use today! Although many peoples work in C# project on their work place, but I believe many peoples like me, love to use VB on own project.

tb-mtg commented 6 years ago

@AnthonyDGreen @KathleenDollard

The .vbhtml razor engine from MVC 5 wasn't ported to Core primarily because less than 1% of all VB web projects used it after 5 versions.

What do the other 99% use then?

reduckted commented 6 years ago

Angular, or other similar front-end libraries, I would presume. That's what I use.

MPCoreDeveloper commented 6 years ago

Actually that is also exactly what I plan to do with our new web projects move to Angular from ASP.Net MVC Razor , I have to do 4 new web projects this year , so if someone keeps count .. LOL

simonmilne80 commented 6 years ago

VB has been a popular language for many years! As a company we certainly have many code snippets that we would not want to have to re-write in C# Im sure there are many old school web form apps that are due to be re-written especially with the new EU rules coming into play, this would mean that VB would be very much wanted! I find it amazing that microsoft blow so hot and cold on VB one minute its being developed on par, next its the poor relative! Yes new languages and frameworks are coming out but dont just ditch the popular old ones!

tb-mtg commented 6 years ago

Glad it's being tracked here, hopefully might see some action then.

NatShaw commented 5 years ago

All signs (weasel words) from MS are that they plan to dumb-down VB.NET, and/or do nothing and wait for others to write the missing bits. I’m over their weasel words, I’m exiting VB.NET development now.

tb-mtg commented 5 years ago

I just hope when Microsoft acquires GitHub it doesn't get the same treatment that VB.Net did (being left for dead with empty promises of full support).

KathleenDollard commented 5 years ago

@NatShaw I'm the PM for Visual Basic.Net.

I'm not sure what you mean about planning to dumb-down VB.NET, but there are no plans to do that. The Visual Basic language strategy remains unchanged.

Razor for VB is problematic. For the main development workflow, WebAPI is a fine workflow for VB as shown here. (aside from templates)

KathleenDollard commented 5 years ago

@tb-mtg VB.Net isn't left for dead. There are constant improvements - small improvements in the language and work like IOperation to make support for Visual Basic in Roslyn analyzers easy to support VB across the ecosystem. It is true that VB focuses on scenarios where it is already good, and appropriate new scenarios rather than all new scenarios. For example, Scott Hunter has already announced VB.Net will work with .NET Core 3.

NatShaw commented 5 years ago

@KathleenDollard Pieces are already missing - .Net Core 2.x - where are all the VB templates? Nullable reference types? C# only. Future plans are great for the future but VB is already missing stuff now.

SrqComputerguy commented 5 years ago

This is a theme for Microsoft create a great technology and abandon it. They are abandoning VB, the language that built the company and becoming a C# only shop. When a new technology is introduced I expect all languages to be supported. Sadly this new Microsoft does not do as good a job as they did 15 years ago at keeping all languages equal partners. Its too bad, I have 10s of thousands of lines of VB and was hoping to go cross platform with it using asp.net core. Now with abandoned web forms in asp.net core and no VB I am stuck. I can change language or ??. If I do put in the effort change language It will be to something other than Microsoft, it will be to a language that was built to support all platforms. I am tired of being discounted and discharged for being a very good VB developer. It may be time to take my company and code and leave microsoft after 30 years of using and selling microsoft platforms and languages. The condescending attitude from the .net management toward VB is getting to be too much. There are still so many of us VBers out here that are so very disappointed in microsoft these days. It would be better if VB was made open source so the community can advance it on all platforms.

reduckted commented 5 years ago

@SrqComputerguy They are abandoning VB

Wrong. @KathleenDollard said literally one day ago in this very thread, that "the The Visual Basic language strategy remains unchanged." (comment)

@SrqComputerguy Its too bad, I have 10s of thousands of lines of VB and was hoping to go cross platform with it using asp.net core. Now with abandoned web forms in asp.net core and no VB I am stuck.

Web forms is old technology (practically ancient by software standards), so it's unsurprising that it's not supported in .NET Core (with either VB.NET or C#). See this blog post from earlier this week about using VB.NET with ASP.NET Core.

@SrqComputerguy If I do put in the effort change language It will be to something other than Microsoft, it will be to a language that was built to support all platforms.

VB.NET is cross-platform, just not with web forms.

@SrqComputerguy It would be better if VB was made open source so the community can advance it on all platforms.

😕 It is. https://github.com/dotnet/vblang

NatShaw commented 5 years ago

@reduckted C# has 'ASP.NET Core Web Application' template - VB does not. Is that correct? Non-nullable reference types - not for VB.

The strategy already is that VB is no longer a 1st-class citizen - no change! The article @KathleenDollard links is rather insulting, telling us these shiny new features are not good for us because they'd make our VB code too untidy. What a load of weasel-word nonsense. Examples:

It's over. They're dumbing it down.

SrqComputerguy commented 5 years ago

Old technology does not mean it is not useful. WebFroms work great for line of business applications where we do not need SEO, but we do need cross platform. WebForm make the look and feel of the winform version look and act similar. That also has many business scenarios that it works well. Not everything needs to be a C# MVC angular.js application nor should it be. Yet that is the only tools that MS is improving at the moment.

Why do razor pages (which are updated asp pages for .net) get C# love in core and not VB?

MS even bought the Mono project so now that supports C# first and only if they get the ok does VB get some love there.

MS is giving Python more love than VB. Python is more of a cross platform language than C# or VB which is where this VBer will probably go in the future.

Its sad the MS is relying on a language that still does not know how to tell the end of a line without a ;

Does MS even have a VB team anymore? They dont have a web presence. For advancements we will have have to look elsewhere.

It was good while it lasted. VB RIP.

mcurros commented 5 years ago

Hi,

Can someone at Microsoft reconsider the effort to compile vb in razor views (.net core)? I think that project blazor enables a new way to share a lot of existing code in vb to create new web applications.

VB .NET was once more popular because you can do the same things that you can witn C#. I think that if vb is left behind, you will effectively end it's popularity.

We are porting a very large VB winforms app to a web app. We are 50% in the way rewriting our framework in JS, but with blazor it would be faster, cleaner and we can share a lot of existing code. It would be awesome if we can also code the views with VB instead of C#. Not everything is MVC and razor.

So, maybe focusing in blazor would make the effort smaller?

jgalentine007 commented 5 years ago

After having to work with modern and legacy VB code for several years now, I cannot wait for the verbosity to die. I think it's smart for Microsoft to focus on one style of languages (C).

KathleenDollard commented 5 years ago

@mcurros

Razor support has been considered and reconsidered.

While it's very exciting, right now Blazor is an experimental effort, without product plans. I agree that if Blazor becomes a product it's worth reconsidering VB's story and I expect that will happen. Whether that results in a change in strategy regarding VB support, I don't know.

Three questions for you:

SrqComputerguy commented 5 years ago

There is nothing that is being done in C# exclusively that cannot be done in VB. MS makes the IL converters. It is a matter of will.

Here is a question for you. If you have a large number of line of business apps that have a web version .net 4.5.2 that look and act like the desktop version how would MS suggest they go cross platform.

sreenathGanga1988 commented 5 years ago

So is it official that MS is dumbing the Idea of including VB developers in Asp.net Core wave and is not interested in spending resource for it?

KathleenDollard commented 5 years ago

@sreenathGanga1988 We'e announced that there are no current plans to support Razor in .NET Core on Visual Basic.NET. WebAPI which is in ASP.NET Core as part of MVC is supported. It's only Razor that is not supported. The Razor engine is complex, and was created for single language.

hishamco commented 5 years ago

@KathleenDollard you could create VBHTML.Contrib to allow the VB fans to contribute to build a razor engine using the current Razor Engine to support VB

KathleenDollard commented 5 years ago

The folks that wrote the new version of Razor believe that it is very complicated to include Visual Basic, because it was not designed for multiple languages. I haven't looked at the code, but will trust those folks opinion. Based on that, I'm not going to create a fork.

However, ASP.NET is open source for a reason. If a group of VB devs were to create a fork anywhere and prove them wrong, that would be a rather cool. I'm happy to have this issue or another issue in this repo point to the project, and if I'll tweet it's existence and progress if desired.

I've laid the groundwork with the .NET Foundation for a Visual Basic space (possibly contrib, possibly something else) so that there is a way to manage ownership and such admin things for projects in a Visual Basic community. However, they need evidence that there is a community that will have repos providing things people want (the Foundation works to avoid dead projects). I had hoped the Entity Framework templates would be that seed, but that has not gone well. This is not specific to VB, and is why you see things in personal repositories: VB EF templates in @bricelam, the global tools catalog at @natemcmaster, and a forked version of a command line parser @natemcmaster while we work on a new one.

So, while a project and prototype isn't enough to get Foundation interest, if a successful project emerges, it can be moved to the .NET Foundation.

hishamco commented 5 years ago

Thanks for your clarification, but still i'm not sure why the Razor built to target C# only while the Roslyn can support both of them!!

KathleenDollard commented 5 years ago

I haven't looked at the Razor code to know whether it directly builds a syntax tree, but assuming it does...

Roslyn works with specific, explicit, raw syntax trees that are different for C# and VB. For example, sei-colon and curly braces exist in C#, not VB. End Sub and Handles exist in VB and not the C# syntax tree.

mcurros commented 5 years ago

@KathleenDollard

Yes I understand project blazor is experimental, but it compiles to web assembly and it's an easier way to do cross-platform apps (sharing existing code on server and clients, I happen to like windows server and ASP .NET so I prefer running a server that supports the full .NET framework to reuse our existing code base).

As for your questions:

  1. .NET core 3 does not make WinForms apps cross platform, so it doesn't add too much.

  2. I'm rewriting for the web because it makes our apps cross-platform. We are using an ASP .NET controller to share the existing code, so on the server we have no problems. As I said, we are using our own framework, which is starting to provide the same functionality in JS, but we need to re-write the client code again, and test it, and the UI is still taking at least 80% of development time.

  3. We started to port our framework to JS before project blazor. Rewriting in C# will not make our client app cross-platform, it will require to target the browser anyway or convert to Xamarin or something else, so the effort is the same.

I program in C, C++, C#, VB, JS and know how to use several stacks, but we have several members in our team that will struggle to convert to another language. Anyway, the point is to reuse our tested code base, not to rewrite it. If blazor could compile VB in views it would save us a lot of time, that's all.

Also it's weird for users to understand that they could compile razor views before in VB .NET with the full framework. It just looks like you left behind VB. And all started with .NET core, wasn't first an experimental project?

To add a little more context we are porting three mission critical ERPs, for different line of business.

Regards.

KathleenDollard commented 5 years ago

@mcurros

Thanks for sharing more about your scenario.

The Razor engine was rewritten for ASP.NET Core and that is where the effort for multiple languages was not made. Low usage of the VB version of the Razor engine was one of the driving factors. And yes, the existence of Blazor makes that decision quite painful.

mcurros commented 5 years ago

@KathleenDollard

Thank you Kathleen for sharing the insights. I hope languages in .NET don't start competing against each other, one of the most appealing things with .NET was the languages and interoperability between them, now it seems that would no longer be the case. Now it's not enough to choose .NET as a development stack, I guess we will need to be careful about the languages we choose, too. Pity, it feels like a step backward.

On e last question, though, I think razor was written well before .NET core, with ASP .NET webpages and webmatrix, so I think you mean that the razor engine was re-written in .NET core targeting C#. Am I right?

Best of luck.

filippobottega commented 5 years ago

Hello, I have found this post: Why not Razor?. What do you think about avoiding completely the use of Razor syntax in ASP .NET Core and Blazor projects in favor of a pure C# and VB.NET development? Are we sure that we need Razor syntax to develop web applications that need to emit HTML5 and CSS files?

Regards, Filippo.

mcurros commented 5 years ago

@filippobottega

Oh well that was before blazor. The problem is that you need a templating engine at the client, and in the case of blazor is just that. In blazor razor is executing in the browser not the server (but it could execute at the server if needed). So, people are trying to share code between client and server in the browser for ages. Sharing validation code will be a simple case, but in our case we share metadata describing models so components can configure themselves using that metadata.

Node.JS has become popular because you can share code between the browser and the server. So why not share .NET code between browser and server? Razor gets compiled to a webassembly with your shared code, and that's it. Yes, you could compile and run and distribute your app, but the browser has better crossplatform capability and you will target more platforms with the same code. I have also seen WPF compiled to webassembly if you wish to go that way.

We prefer to take advantage of the existing JS components and mix them with our .NET base, but we prefer .NET and razor as a replacement for other JS frameworks, like angular. It's 10x more productive if you know what your are doing, at least for us.

Regards.

KathleenDollard commented 5 years ago

@mcurros Yes, a great deal was reworked/rewritten in ASP.NET Core (look at the pipeline model as an example), including Razor.

filippobottega commented 5 years ago

@mcurros Ok, it's true that we need a template engine but the problem is that the Razor syntax is not supported by a solid WYSIWYG designer. For example Blazor uses Bootstrap as CSS library. There is a interesting designer for Boostrap named Bootstrap Studio but it doesn't support Razor syntax. For WinForms desktop applications, there is a good WYSIWYG designer to quickly design interfaces, for XAML the same. There is a designer we may use to quickly create HTML5-CSS with Razor syntax views (.cshtml/.vbhtml) ?

mcurros commented 5 years ago

@filippobottega As the devices that can run browsers are in the 10K order, I think that making an accurate WYSIWYG tool does probably not worth the effort. The trend these days is to run it in the browser and let the browser make the rendering. Blazor samples use Bootstrap, but razor is a templating engine, you can emit what you want and the CSS/HTML framework you like. The interesting parts are, the compilation to webassembly, and the modified razor to provide SPA routing, and all the things you need to build an SPA client. Plus if needed you can render that at the server (for public websites and search engine indexing). I think it's pretty cool.

So blazor provides real time webassembly compilation and run in browser hitting F5. It's fast, try it.