Background / Disclaimer
First of all, please feel free to skip this entirely if you can understand the questions below.
I'm still very fresh new to .NET, but an elder monkey on bad old ASP in regular VB.
I just got into a company with some legacy .NET VB files and now I have a couple of huge projects, with over 50mb of files and about 1gb the whole project and debugging them haven't been easy. I've read through w3schools tutorial and did many google researchs to get to this point in which I just can't make this work. And unlike in another very similar question I don't think this is a simple issue.
I don't know if those projects are MVC or regular Web Application, but I was told to use "Other Project Types > Visual Studio Solution > Blank Solution" and then "Add Existing Web Site" to that. With no further instructions or orientation, I see they all have DLLs and makes me believe they are not MVC.
Anyway, whichever this or many other ways I've tried to add the files into Visual Studio, I could never use the Debug properly with one of them. One works fine enough, I can at least see it running locally very alike from the webserver. But the other gives me many random errors and warnings to "compile" the debug and run on Visual Studio's own server (I think it's called "ASP.NET Development Server"). Some errors shouldn't even exist like "The file XXX doesn't exist" while I can easily verify it does exist!
I don't really expect to have much help here, but I still hope to find some. Sorry if this is too much.
Questions
- What options do I have to debug a big Visual Studio project that already works online in a server that have debugging and even error options turned off?
- How can I know how to properly "import" an existing project into Visual Studio to begin with?
- Is this a homework question?
- (new) Given I have 3 places to sync many files (local, shared production network and live) what's the best approach to work on and debug existing errors? Out of the box thinking is always welcome (converting project, not using Visual Studio, older version, whatever)