i have a question about post-build events in visual studio 2010. I have an MVC3 project and i want a post-build event that make a refresh on the current chrome tab. It's that possible? What i have is a vb file with this code:
set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.AppActivate "Google Chrome"
WScript.Sleep 150
WshShell.SendKeys "{f5}"
And in the post-build event command line of vs2010 i have:
cscript c:\test.vbs
But this doesn't refresh the page, only put on focus the chrome, but even so, if i hit f5 on my keyboard after the focus, the chrome doesn't refresh at all. I hope you can help me, thanks!