What are UseCustomServer and UseCustomServerUrl in an ASP.NET Web Application project?
Some prerequisites: I received the latest version of the solution from the supplier. I have added several files to the WebSite project file. When I built the solution, the following tags were added to the WebSite.csproj file.
<UseCustomServer>False</UseCustomServer> <CustomServerUrl> </CustomServerUrl>
I hesitate to check the project file with these added tags. But I donβt want to interfere with the project file using a text editor to remove tags every time I add files to the project. Can these tags damage the supplierβs design in some way? Why is my assembly adding tags? I am using ASP.NET 3.5 SP1. Thank you
source share