当我将文件路径放到类库项目上时,我遇到了问题。
我的类库项目中有一个log4net.config
文件,我需要获取并阅读log4net.config
。我测试了很多解决方案:
1
var buildDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); var filePath = buildDir + @"\log4net.config";
2
var dirPath = Assembly.GetExecutingAssembly().Location; dirPath = Path.GetDirectoryName(dirPath); return Path.GetFullPath(Path.Combine(dirPath, "\log4net.config"));
但我没有得到任何结果。请提出解决方案。