I copied one of my friend's MVC WebAPI application and using the same for my purpose.
When I run the application, I see his company name as Site Name
when IIS Express starts in tray(taskbar bottom right corner).
I have removed his company name from entire application. All project files, etc. But still I see the company name when the application runs.
so I checked in the applicationhost.config
file in .vs
folder. There I could see the company name under Sites tag.
<sites>
<site name="GoaPeeep.WebAPI" id="2">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="C:\Projects\WnSFramework\WebAPI\WebAPI" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:61843:localhost" />
</bindings>
</site>
</sites>
If I remove/change GoaPeep
to anything else, my application does not run. It says, "Process with ID #### is not running."
I would like to know, how this site name
is related with the application. Now that I have removed GoaPeep from everywhere in application, where it is referring to?
How can I change this site name now?