I have a project that I upgraded to Visual Studio 2012. It was a web application and everything worked fairly well converting it to VS 2012 and deploying it. My main question is now that I am debugging the code in VS 2012, the variables are not accessible through the debugger (IE: I cannot SHIFT/F9 or Add Watch).
Private Sub FooBar(ByVal mystring as String)
Dim anotherString as String
If anotherString.Equals(mystring) Then
'// Do something really spectacular...
anotherString = mystring
End If
End Sub
The variables mystring and anotherString in this instance are not accessible.
I thought it might have been due to the Private accessor of the method but it is not.
Does anyone know if there is a setting or a reason that these may not be accessible?
The code is set to compile and deploy to an IIS web application location and not using the debugger postini for the projects. I do build and publish before I attempt to debug.