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

.NET

1504 readers
2 users here now

Getting started

Useful resources

IDEs and code editors

Tools

Rules

Related communities

Wikipedia pages

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

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

[โ€“] starman 3 points 2 years ago* (last edited 2 years 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 2 years ago

One at a time essentially.

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