.net 5.0使用TopShelf部署服务一直报1053错误,附解决方案
var _SetBasePath = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location); var Configuration = new ConfigurationBuilder() .SetBasePath(_SetBasePath) .AddJsonFile("appsettings.json", optional: true) .Build();
我有读取根目录的配置文件,服务的根目录文件是读取的system32,但我的配置文件需要读取exe所在的根目录,通过修改读取路径解决bug。
附上代码图片:
Path.GetDirectoryName(Assembly.GetEntryAssembly().Location) //exe所在的目录