Command Line to open ReadMe file when opening project in Visual Studio -
i want open readme.html file located in project/solution visual studio opened. there command line switch open readme.html file of project?
for example, devenv myproj.csproj /f:readme.html
note: want automate through program, not looking manual solution open visual studio , click on readme file :)
please help!
found it!!!
i able open readme html file in browser window inside vs solution/project opened. below command:
devenv.exe webapplication1.sln /command "navigate [filepath]\project_readme.html"
fyi, visual studio has number of command line switches, 1 useful here "/command" switch. starts vs ide , executes command specified after /command switch.
the commands in question not dos commands, visual studio commands can execute inside vs. here reference visual studio commands arguments.
hope helps else too!
Comments
Post a Comment