When using .Net Framework we had the following lines in app.config
:
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.1" />
</startup>
I'm wondering what should we do with these lines when porting to .NET Core?
Should we remove them or replace them with something else?