Salmon King Seafood (SKS) is a reference App create to show some of the migration capabilities of the Visual Basic Upgrade Companion VBUC from Mobilize.Net
This repo shows this VBUC sample upgraded to .NET Core 3.1
The VBUC tool starting from version 8.2 supports upgrading your application to .NET Core 3.1.
NOTE: This application uses OLEDB to access MSACCESS. You can use OleDB on .NETCore 3.1 but some of the drivers are architecture specific. You can download the Microsoft Access Database Engine 2010 Redistributable for 32 or 64. If for example you install the 32 bit version then add:
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Prefer32Bit>true</Prefer32Bit>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
You can see some of the migrated screens here and read about some VBUC Features used by this migration