Using the library from .Net Core
gabrielkotev opened this issue · 3 comments
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 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.
Thanks
Zhongkai Fu
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.