This project is a demo to showcase how Gen AI can speed up legacy code migrations with an example of .NET Framework application migrated to .NET 8.
src/net48/LegacyBankAppDemo/- Original .NET Framework 4.8 Web APIsrc/net8/Net8BankAppDemo/- Modernized .NET 8 Web API
cd src/net48/LegacyBankAppDemo
# Open in Visual Studio and run with IIS Expresscd src/net8/Net8BankAppDemo
dotnet restore
dotnet run --environment DevelopmentAccess the .NET 8 API at https://localhost:5001 with Swagger UI at /swagger.
MIT License