How to specify path in .config file relative to the file?

前端 未结 3 888
别跟我提以往
别跟我提以往 2021-02-19 18:49

An app I use interprets a .NET .config file. I added a line specifying the path to a certificate it needs



        
3条回答
  •  无人共我
    2021-02-19 19:06

    In visual studio 2015, the "~" keyword has no longer worked. You can now use :

    value="folder\subfoler"
    

    "folder" has the same level with .exe file

提交回复
热议问题