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
my package using .net core self contain. when i publish to server:
System.IO.FileNotFoundException: Could not load file or assembly 'System.Threading.Thread, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. 系统找不到指定的文件。
at InQuant.OpenApi.Market.MarketWrapper..ctor(StrategyService strategySvr)
at InQuant.OpenApi.StrategyService..ctor()
import sys
import clr
import System
clr.AddReference('InQuant.OpenApi')
import InQuant.OpenApi
class StrategyTemplate(object):
def init(self):
self.__strategyService = InQuant.OpenApi.StrategyService()
the .net dll "InQuant.OpenApi" depend on System.Threading. i think i should to redirect assembly version. What should I do?
The text was updated successfully, but these errors were encountered:
@sunliusi there is partial support for .net core in the master branch, but for extending use case it is required to use npython.exe instead of import clr at the moment.
my package using .net core self contain. when i publish to server:
System.IO.FileNotFoundException: Could not load file or assembly 'System.Threading.Thread, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. 系统找不到指定的文件。
at InQuant.OpenApi.Market.MarketWrapper..ctor(StrategyService strategySvr)
at InQuant.OpenApi.StrategyService..ctor()
import sys
import clr
import System
clr.AddReference('InQuant.OpenApi')
import InQuant.OpenApi
class StrategyTemplate(object):
def init(self):
self.__strategyService = InQuant.OpenApi.StrategyService()
the .net dll "InQuant.OpenApi" depend on System.Threading. i think i should to redirect assembly version. What should I do?
The text was updated successfully, but these errors were encountered: