其他分享
首页 > 其他分享> > .net 5.0使用TopShelf部署服务一直报1053错误,附解决方案

.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所在的目录

标签:5.0,1053,Assembly,读取,配置文件,SetBasePath,Location,TopShelf,根目录
来源: https://www.cnblogs.com/netcs/p/16312966.html