You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am struggling porting the library to .Net core.
Is there something to keep in mind while doing so (adding some dependencies, etc )?
Thanks for the help!
The text was updated successfully, but these errors were encountered:
The only external dependency is System.Vectors for SIMD instruction. Actually, this lib is a part of .Net core, so it won't be a problem for your migration.
But I know some APIs maybe different between .Net framework and .Net Core, such as Stream classes, you may modify some code for it, but I think it's very easy to deal with them.
Hi @zhongkaifu
Thanks for the quick answer!
I have an compile issue inside the AdvUtils, the reason is the class ParallelOptions.
Do you have any suggestions how to overcome it ?
Thanks for your help!
AdvUtils is an open source project as well, you can modify it as your needs.
For ParallelOptions, currently, I set its value explicitly, but you can delete it and let it use default value.
I am struggling porting the library to .Net core.
Is there something to keep in mind while doing so (adding some dependencies, etc )?
Thanks for the help!
The text was updated successfully, but these errors were encountered: