I have created one py script which imports my .netStandard classLibrary and runs its execution
The issue is, when my class library .netStandard version is 2.0 or less it runs properly, But if the version is .netStandard 2.1 it asks for netStandard.dll as not found.
Now i have copied the .netStandard file from 'C:\Program Files (x86)\dotnet\shared\Microsoft.NETCore.App\3.1.5' location and pasted with the Py script location and now it ran successfully.
I don't understand why specifically with .netStandard v2.1 the DLR with Iron python does not detect the netStandards dll. or are there are any steps i am missing?