i'm moving my project from .net framework to .Net core 3.1 web api. .Net doesn't seem to include app.config file and I need to add it. I added one but it's doesn't recognized. Is there a way to add app.config file to .Net core app ? or is there any alternative of app.config .net core ?
App.config:
<configSections>
<section name="corememorycache" type="NHibernate.Caches.CoreMemoryCache.CoreMemoryCacheSectionHandler,NHibernate.Caches.CoreMemoryCache" />
<section name="hibernate-configuration"
type="NHibernate.Cfg.ConfigurationSectionHandler, NHibernate" />
</configSections>
<corememorycache expiration-scan-frequency="00:05:00">
<cache region="foo" expiration="500" sliding="true" />
<cache region="noExplicitExpiration" sliding="true" />
</corememorycache>