visual studio - Howto add and link to existing WebSite project from ASP.NET project -


i have existing website project; 1 .html , bunch of .js files (all client-side stuff). project has .sln file, no *.*proj files. it's directory structure basically:

web_project_root/apps/foo/index.html web_project_root/lib/*.js 

now i'm working on new asp.net forms application, , need link index.html page above, i'd keep separate project (and not copy new asp.net project). it's structure basically:

app_project_root/pages/*.aspx 

i've done add -> existing project , chosen .sln above, , shows in asp.net solution, can't figure out how link index.html because it's outside of asp.net project's ~/ directory. there way symlink somehow? or else?


Comments

Popular posts from this blog

java - nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet Hibernate+SpringMVC -

sql - Postgresql tables exists, but getting "relation does not exist" when querying -

asp.net mvc - breakpoint on javascript in CSHTML? -