this post was submitted on 20 Jun 2023
8 points (100.0% liked)

.NET

1454 readers
33 users here now

Getting started

Useful resources

IDEs and code editors

Tools

Rules

Related communities

Wikipedia pages

founded 1 year ago
MODERATORS
top 3 comments
sorted by: hot top controversial new old
[โ€“] DinosaurSr 2 points 1 year ago (2 children)

Any tips on how to migrate ~40 vb.net webforms apps with a 6 person team? ๐Ÿ˜ญ๐Ÿ˜ญ

[โ€“] starman 3 points 1 year ago* (last edited 1 year ago)

Unfortunately ASP.NET Core doesn't support web forms (iirc), but if you have clean separation between backend and frontend, you could change frontend to mvc/razor pages/blazor.

Tim Corey has a good video about migrations: link

[โ€“] Lmaydev 1 points 1 year ago

One at a time essentially.

If they all communicate use something like YARP to sort your routing out.