I have a .net core console app in VS19 for a browser extension.
The project includes a couple of .manifest and .reg files which have different values for each target configuration (Dev, Test, Prod).
I'd like to have one template file for each .manifest, .reg file having tokens instead of those values and replace them with the real values (stored e.g. in appsettings.json) after building the solution (keeping my template file untouched).
What is the simples way to achieve this?
