Good afternoon,
I needed to change my VS2013 C# project name, so I changed the project name, all namespaces, and Solution and .csproj name inside VS2013. So far everythign was good and the project was able to debug.
Next, I wanted to change the name of the project folder where the source files are located. I changed this in Windows explorer. And I opened newproject.sln with notepad and changed the line
Project("{********-****-****-****-********}") = "newproject", "oldproject\newproject.csproj", "{********-****-****-****-********}"
to
Project("{********-****-****-****-********}") = "newproject", "newproject\newproject.csproj", "{********-****-****-****-********}"
The solution could now be opened in VS2013, but I can no longer see a "Debug" option, In it's place there is an option to "Attach"
What else is there that I need to change in order to be able to debug my project.
Thank you,
-D