I have Visual Studio Web projects inside folders that i have not made adjustments to changing automatically. After closing these projects and then coming back to them at later dates, i find that they cannot be run due to errors of different types. Is this
default behavior of Visual studio or something else. Is there a general explanation? Markus33
A sample of the error you have could likely help to better understand what happens. Do you have on e error that seems to be the most frequent in your error list ? Striclly speaking I don't see why a project that was running wouldn't run the next time (unless
maybe opening projects done a long ago with a previous version ?)
Yeah putting things in a folder is called namespace seperation. The calles in the folder should be using the folder name as part of the namespace name. And then you'll have to start doing using namespace; to address a class in the namespace that creating
a folder in the project soes..
If you find the post has answered your issue, then please mark post as 'answered'.
Member
251 Points
423 Posts
Errors in project solution."
May 30, 2018 02:29 PM|Markus33|LINK
I have Visual Studio Web projects inside folders that i have not made adjustments to changing automatically. After closing these projects and then coming back to them at later dates, i find that they cannot be run due to errors of different types. Is this default behavior of Visual studio or something else. Is there a general explanation? Markus33
All-Star
48300 Points
18003 Posts
Re: Errors in project solution."
May 30, 2018 02:56 PM|PatriceSc|LINK
Hi,
A sample of the error you have could likely help to better understand what happens. Do you have on e error that seems to be the most frequent in your error list ? Striclly speaking I don't see why a project that was running wouldn't run the next time (unless maybe opening projects done a long ago with a previous version ?)
Contributor
4873 Points
4123 Posts
Re: Errors in project solution."
May 30, 2018 03:41 PM|DA924|LINK
Yeah putting things in a folder is called namespace seperation. The calles in the folder should be using the folder name as part of the namespace name. And then you'll have to start doing using namespace; to address a class in the namespace that creating a folder in the project soes..