c# - What are the differences between these project types, and how can I fix the difference? -
we in process of migrating vs2012 vs2015, , i'm running issue hosting 1 of web projects of different "web project" icon.
example project types:
1 hosted web site
2, 4, , 5 c# class libraries
3 test project
6 website... different #1. have not hosted project @ virtual directory in vs2015, in vs2012. how #1 different #6? see #1 has csproj file, #6 not. "property" windows different project types.
1 vs2012
1 vs2015
6 vs2012
6 2015
as can see property pages of 2 vses , 2 different project types differ pretty significantly.
my #6 project in vs2012 hosted @ http://localhost:9999/virtualdirectory/
services can accessed (example):
http://localhost:9999/virtualdirectory/service1.svc
however in vs2015, can't hosted under http://localhost:9999/virtualdirectory/service1.svc
rather http://localhost:9999/service1.svc
i've tried changing radio button "use default server" "use custom server" , specifying base url, services not resolve when attempting host in manner.
what difference between #1 , #6 project type? options fixing hosting differences between vs2012 , vs2015?
right can change end point connections in web config rather point http://localhost:9999/virtualdirectory/service1.svc
instead point http://localhost:9999/service1.svc
, breaks endpoints vs2012. ideally i'd have project configured in such way works seamlessly , without config changes between running solution in vs2012 , vs2015.
i believe 1 web application , 6 website.
Comments
Post a Comment