Friends,
I have project that was running under VS2012 with Virtual Path property as "EmployeePP" , So when i run the project in local it will launch the browser
http://localhost:49980/EmployeePP/Home.aspx
Physical Path : D:\Projects\Employee
Under the Employee Folder i have all ASPX files , Bin , App_Code etc
Now i have installed VS2013, When i launch my project the browser shows the URL as
http://localhost:49980/Home.aspx
I want to setup Virtual Path in VS 2013 itself but i could not find the option, But whereas we can see the virtual path property on the VS2012.
Few forums suggested that use appcmd.exe for setting up virtual path, I tried but it was not working as expected
AppCmd.exe ADD vdir /app.name:"Employee/" /path:/EmployeePP /physicalPath:D:\Projects\Employee
After setting up in AppCmd also browser launches the application as
http://localhost:49980/Home.aspx but i want it should be
http://localhost:49980/EmployeePP/Home.aspx
Am i missing anything ? please provide your suggestion
Thanks.