I am trying to figure out how to access an authenticated windows file share from .net core (supplying domain / username / password) from Linux.
I have a .NET framework based sample project that does this in Windows operating system just fine. https://github.com/nddipiazza/SambaFetcher (in particular https://github.com/nddipiazza/SambaFetcher/blob/master/SmbFetcher/UNCAccess.cs )
But it relies on the NetApi32.dll directly so it will not work from Linux.
Is there some way from .NET core to do this authentication?