What is a dll.refresh file in ASP.Net?

前端 未结 3 776
無奈伤痛
無奈伤痛 2020-12-13 03:25

In our ASP.Net web project we seem to have some .refresh files associated with some of the 3rd party Dlls we\'re using. Any idea what they are and how/when they are created?

3条回答
  •  既然无缘
    2020-12-13 03:55

    These files give the path to the DLL in question to tell Visual Studio where to find it (you can check this if you open them in a text editor). They will be created each time you add a new reference to the project.

    They normally appear when you are using a project type that does not create a standard Visual Studio project file, as normally paths to referenced DLLs would go in there.

提交回复
热议问题