views:

129

answers:

1

What is UseCustomServer and UseCustomServerUrl in a ASP.NET Web Application Project?

Some background: I got the latest version of a Solution from a vendor. I added a few 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 am hesitent to check the project file back in with these added tags. But I don't want to have to meddle with the project file with a text editor to remove the tags each time I add files to the project. Could these tags hurt the vendor's build in some way? Why is my build adding the tags? I am using ASP.NET 3.5 SP1. Thanks.

+1  A: 

Hello,

I'm setup to use IIS; these tags are in my project. Because they are blank, it should be OK. The UseIIS tag has a true value, so that's how it knows to use this option. The Custom Server URL is a project setting (web project settings > web tab) that you can set.

HTH.

Brian