Nlog.config 的採坑紀錄
直接下結論
Linux
NLog的設定檔的檔名只會吃以下兩種
- NLog.config
- nlog.config
所以要注意檔名不能是以下兩種
- nLog.config
- Nlog.config
Windows
因為 OS 本身無視大小寫
所以以上四種都是可以吃得到的
然後放到正式環境如果是 linux
Log 就會難產
Git
如果在 Windows
因為改檔案名稱大小寫預設 Git 會無視
有兩種方法可以改完並commit
- 改 git config
git config --local core.ignorecase false
- 下 git mv 指令
git mv Nlog.config nlog.config